Version Description
*
Download this release
Release Info
Developer | hannanstd |
Plugin | گرویتی فرم فارسی |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- includes/class-jalali-date.php +0 -1
- includes/class-live-preview.php +1 -1
- includes/class-post-content-merge-tags.php +7 -6
- includes/class-snippets.php +0 -3
- includes/class-wp-session.php +0 -284
- index.php +2 -2
- languages/GF_FA-fa_IR.mo +0 -0
- languages/GF_FA-fa_IR.po +103 -73
- languages/gravityforms/fa_IR.mo +0 -0
- languages/gravityforms/fa_IR.po +12805 -0
- languages/gravityforms1.8/fa_IR.mo +0 -0
- languages/gravityforms1.9/fa_IR.mo +0 -0
- persian-gravity.php +895 -703
- readme.txt +18 -14
includes/class-jalali-date.php
CHANGED
@@ -16,7 +16,6 @@ class GFParsi_JalaliDate {
|
|
16 |
|
17 |
// add_action('admin_enqueue_scripts' , array( $this, 'admin_scripts' ));
|
18 |
// add_action('admin_head' , array( $this, 'admin_head' ));
|
19 |
-
|
20 |
}
|
21 |
|
22 |
public function tooltips( $tooltips ) {
|
16 |
|
17 |
// add_action('admin_enqueue_scripts' , array( $this, 'admin_scripts' ));
|
18 |
// add_action('admin_head' , array( $this, 'admin_head' ));
|
|
|
19 |
}
|
20 |
|
21 |
public function tooltips( $tooltips ) {
|
includes/class-live-preview.php
CHANGED
@@ -125,7 +125,7 @@ class GFParsi_LivePreview {
|
|
125 |
<script type="text/javascript">
|
126 |
(function($){
|
127 |
$( '<li class="gf_form_toolbar_preview">'+
|
128 |
-
'<a style="position:relative" id="gf-live-preview"
|
129 |
'<i class="fa fa-eye" style="position: absolute; text-shadow: 0px 0px 5px rgb(255, 255, 255); z-index: 99; line-height: 7px; left: 0px font-size: 9px; top: 6px; background-color: rgb(243, 243, 243);"></i>' +
|
130 |
'<i class="fa fa-file-o" style="margin-left: 5px; line-height: 12px; font-size: 18px; position: relative; top: 2px;"></i>' +
|
131 |
'<?php _e( 'Live Preview', 'GF_FA' ); ?>' +
|
125 |
<script type="text/javascript">
|
126 |
(function($){
|
127 |
$( '<li class="gf_form_toolbar_preview">'+
|
128 |
+
'<a style="position:relative" id="gf-live-preview" target="_blank" href="<?php echo $ajax_true_url; ?>" class="" >' +
|
129 |
'<i class="fa fa-eye" style="position: absolute; text-shadow: 0px 0px 5px rgb(255, 255, 255); z-index: 99; line-height: 7px; left: 0px font-size: 9px; top: 6px; background-color: rgb(243, 243, 243);"></i>' +
|
130 |
'<i class="fa fa-file-o" style="margin-left: 5px; line-height: 12px; font-size: 18px; position: relative; top: 2px;"></i>' +
|
131 |
'<?php _e( 'Live Preview', 'GF_FA' ); ?>' +
|
includes/class-post-content-merge-tags.php
CHANGED
@@ -5,7 +5,7 @@ class GFParsi_Post_Content_Merge_Tags {
|
|
5 |
public static $_entry = null;
|
6 |
|
7 |
private static $instance = null;
|
8 |
-
|
9 |
public static function get_instance( $args = array() ) {
|
10 |
|
11 |
if( self::$instance == null )
|
@@ -39,13 +39,14 @@ class GFParsi_Post_Content_Merge_Tags {
|
|
39 |
if( ! $entry )
|
40 |
return $this->replace_field_label_merge_tags( $post_content, '' );
|
41 |
|
42 |
-
if ( !empty($entry["transaction_id"]) ) {
|
43 |
|
44 |
-
|
45 |
-
return $this->replace_field_label_merge_tags( $post_content, '' );
|
46 |
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
49 |
|
50 |
$form = GFFormsModel::get_form_meta( $entry['form_id'] );
|
51 |
|
5 |
public static $_entry = null;
|
6 |
|
7 |
private static $instance = null;
|
8 |
+
|
9 |
public static function get_instance( $args = array() ) {
|
10 |
|
11 |
if( self::$instance == null )
|
39 |
if( ! $entry )
|
40 |
return $this->replace_field_label_merge_tags( $post_content, '' );
|
41 |
|
|
|
42 |
|
43 |
+
$confirm_time = gform_get_meta( rgar($entry,'id') , 'gform_page_confirm_time');
|
|
|
44 |
|
45 |
+
if ( !empty($confirm_time) && $confirm_time + 90 < time() )
|
46 |
+
return $this->replace_field_label_merge_tags( $post_content, '' );
|
47 |
+
|
48 |
+
if (empty($confirm_time))
|
49 |
+
gform_update_meta($entry['id'], 'gform_page_confirm_time', time() );
|
50 |
|
51 |
$form = GFFormsModel::get_form_meta( $entry['form_id'] );
|
52 |
|
includes/class-snippets.php
CHANGED
@@ -1,8 +1,5 @@
|
|
1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit;
|
2 |
|
3 |
-
//for user old plugin
|
4 |
-
class GravityFormsPersian extends GFParsi{}
|
5 |
-
|
6 |
class GFParsi_PostPermalink {
|
7 |
|
8 |
function __construct() {
|
1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit;
|
2 |
|
|
|
|
|
|
|
3 |
class GFParsi_PostPermalink {
|
4 |
|
5 |
function __construct() {
|
includes/class-wp-session.php
DELETED
@@ -1,284 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
if( !defined( 'WP_SESSION_COOKIE' ) )
|
3 |
-
define( 'WP_SESSION_COOKIE', '_wp_session' );
|
4 |
-
|
5 |
-
if ( !class_exists( 'Recursive_ArrayAccess' ) ) {
|
6 |
-
|
7 |
-
class Recursive_ArrayAccess implements ArrayAccess {
|
8 |
-
|
9 |
-
protected $container = array();
|
10 |
-
protected $dirty = false;
|
11 |
-
|
12 |
-
protected function __construct( $data = array() ) {
|
13 |
-
foreach ( $data as $key => $value ) {
|
14 |
-
$this[ $key ] = $value;
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
public function __clone() {
|
19 |
-
|
20 |
-
foreach ( $this->container as $key => $value ) {
|
21 |
-
if ( $value instanceof self ) {
|
22 |
-
$this[ $key ] = clone $value;
|
23 |
-
}
|
24 |
-
}
|
25 |
-
}
|
26 |
-
|
27 |
-
public function toArray() {
|
28 |
-
$data = $this->container;
|
29 |
-
foreach ( $data as $key => $value ) {
|
30 |
-
if ( $value instanceof self ) {
|
31 |
-
$data[ $key ] = $value->toArray();
|
32 |
-
}
|
33 |
-
}
|
34 |
-
return $data;
|
35 |
-
}
|
36 |
-
|
37 |
-
public function offsetExists( $offset ) {
|
38 |
-
return isset( $this->container[ $offset ]) ;
|
39 |
-
}
|
40 |
-
|
41 |
-
public function offsetGet( $offset ) {
|
42 |
-
return isset( $this->container[ $offset ] ) ? $this->container[ $offset ] : null;
|
43 |
-
}
|
44 |
-
|
45 |
-
public function offsetSet( $offset, $data ) {
|
46 |
-
if ( is_array( $data ) ) {
|
47 |
-
$data = new self( $data );
|
48 |
-
}
|
49 |
-
|
50 |
-
if ( $offset === null ) {
|
51 |
-
$this->container[] = $data;
|
52 |
-
} else {
|
53 |
-
$this->container[ $offset ] = $data;
|
54 |
-
}
|
55 |
-
$this->dirty = true;
|
56 |
-
}
|
57 |
-
|
58 |
-
public function offsetUnset( $offset ) {
|
59 |
-
unset( $this->container[ $offset ] );
|
60 |
-
$this->dirty = true;
|
61 |
-
}
|
62 |
-
}
|
63 |
-
}
|
64 |
-
|
65 |
-
if ( !class_exists( 'WP_Session' ) ) {
|
66 |
-
|
67 |
-
final class WP_Session extends Recursive_ArrayAccess implements Iterator, Countable {
|
68 |
-
|
69 |
-
protected $session_id;
|
70 |
-
protected $expires;
|
71 |
-
protected $exp_variant;
|
72 |
-
private static $instance = false;
|
73 |
-
|
74 |
-
public static function get_instance() {
|
75 |
-
|
76 |
-
if ( !self::$instance ) {
|
77 |
-
self::$instance = new self();
|
78 |
-
}
|
79 |
-
return self::$instance;
|
80 |
-
}
|
81 |
-
|
82 |
-
protected function __construct() {
|
83 |
-
|
84 |
-
if ( isset( $_COOKIE[WP_SESSION_COOKIE] ) ) {
|
85 |
-
|
86 |
-
$cookie = stripslashes( $_COOKIE[WP_SESSION_COOKIE] );
|
87 |
-
$cookie_crumbs = explode( '||', $cookie );
|
88 |
-
$this->session_id = $cookie_crumbs[0];
|
89 |
-
$this->expires = $cookie_crumbs[1];
|
90 |
-
$this->exp_variant = $cookie_crumbs[2];
|
91 |
-
if ( time() > $this->exp_variant ) {
|
92 |
-
$this->set_expiration();
|
93 |
-
delete_option( "_wp_session_expires_{$this->session_id}" );
|
94 |
-
add_option( "_wp_session_expires_{$this->session_id}", $this->expires, '', 'no' );
|
95 |
-
}
|
96 |
-
|
97 |
-
} else {
|
98 |
-
$this->session_id = $this->generate_id();
|
99 |
-
$this->set_expiration();
|
100 |
-
}
|
101 |
-
$this->read_data();
|
102 |
-
$this->set_cookie();
|
103 |
-
}
|
104 |
-
|
105 |
-
protected function set_expiration() {
|
106 |
-
$this->exp_variant = time() + (int) apply_filters( 'wp_session_expiration_variant', 24 * 60 );
|
107 |
-
$this->expires = time() + (int) apply_filters( 'wp_session_expiration', 30 * 60 );
|
108 |
-
}
|
109 |
-
|
110 |
-
protected function set_cookie(){
|
111 |
-
if( !headers_sent() )
|
112 |
-
setcookie(WP_SESSION_COOKIE,$this->session_id.'||'.$this->expires.'||'.$this->exp_variant,$this->expires,COOKIEPATH,COOKIE_DOMAIN );
|
113 |
-
}
|
114 |
-
|
115 |
-
protected function generate_id() {
|
116 |
-
require_once( ABSPATH . 'wp-includes/class-phpass.php');
|
117 |
-
$hasher = new PasswordHash( 8, false );
|
118 |
-
return md5( $hasher->get_random_bytes( 32 ) );
|
119 |
-
}
|
120 |
-
|
121 |
-
protected function read_data() {
|
122 |
-
$this->container = get_option( "_wp_session_{$this->session_id}", array() );
|
123 |
-
return $this->container;
|
124 |
-
}
|
125 |
-
|
126 |
-
public function write_data() {
|
127 |
-
$option_key = "_wp_session_{$this->session_id}";
|
128 |
-
if ( $this->dirty ) {
|
129 |
-
if ( false === get_option( $option_key ) ) {
|
130 |
-
add_option( "_wp_session_{$this->session_id}", $this->container, '', 'no' );
|
131 |
-
add_option( "_wp_session_expires_{$this->session_id}", $this->expires, '', 'no' );
|
132 |
-
} else {
|
133 |
-
delete_option( "_wp_session_{$this->session_id}" );
|
134 |
-
add_option( "_wp_session_{$this->session_id}", $this->container, '', 'no' );
|
135 |
-
}
|
136 |
-
}
|
137 |
-
}
|
138 |
-
|
139 |
-
public function json_out() {
|
140 |
-
return json_encode( $this->container );
|
141 |
-
}
|
142 |
-
|
143 |
-
public function json_in( $data ) {
|
144 |
-
$array = json_decode( $data );
|
145 |
-
if ( is_array( $array ) ) {
|
146 |
-
$this->container = $array;
|
147 |
-
return true;
|
148 |
-
}
|
149 |
-
return false;
|
150 |
-
}
|
151 |
-
|
152 |
-
public function regenerate_id( $delete_old = false ) {
|
153 |
-
|
154 |
-
if ( $delete_old ) {
|
155 |
-
delete_option( "_wp_session_{$this->session_id}" );
|
156 |
-
}
|
157 |
-
$this->session_id = $this->generate_id();
|
158 |
-
$this->set_cookie();
|
159 |
-
}
|
160 |
-
|
161 |
-
public function session_started() {
|
162 |
-
return !!self::$instance;
|
163 |
-
}
|
164 |
-
|
165 |
-
public function cache_expiration() {
|
166 |
-
return $this->expires;
|
167 |
-
}
|
168 |
-
|
169 |
-
public function reset() {
|
170 |
-
$this->container = array();
|
171 |
-
}
|
172 |
-
|
173 |
-
public function current() {
|
174 |
-
return current( $this->container );
|
175 |
-
}
|
176 |
-
|
177 |
-
public function key() {
|
178 |
-
return key( $this->container );
|
179 |
-
}
|
180 |
-
|
181 |
-
public function next() {
|
182 |
-
next( $this->container );
|
183 |
-
}
|
184 |
-
|
185 |
-
public function rewind() {
|
186 |
-
reset( $this->container );
|
187 |
-
}
|
188 |
-
|
189 |
-
public function valid() {
|
190 |
-
return $this->offsetExists( $this->key() );
|
191 |
-
}
|
192 |
-
|
193 |
-
public function count() {
|
194 |
-
return count( $this->container );
|
195 |
-
}
|
196 |
-
}
|
197 |
-
|
198 |
-
function wp_session_cache_expire() {
|
199 |
-
$wp_session = WP_Session::get_instance();
|
200 |
-
return $wp_session->cache_expiration();
|
201 |
-
}
|
202 |
-
|
203 |
-
function wp_session_commit() {
|
204 |
-
wp_session_write_close();
|
205 |
-
}
|
206 |
-
|
207 |
-
function wp_session_decode( $data ) {
|
208 |
-
$wp_session = WP_Session::get_instance();
|
209 |
-
return $wp_session->json_in( $data );
|
210 |
-
}
|
211 |
-
|
212 |
-
function wp_session_encode() {
|
213 |
-
$wp_session = WP_Session::get_instance();
|
214 |
-
return $wp_session->json_out();
|
215 |
-
}
|
216 |
-
|
217 |
-
function wp_session_regenerate_id( $delete_old_session = false ) {
|
218 |
-
$wp_session = WP_Session::get_instance();
|
219 |
-
$wp_session->regenerate_id( $delete_old_session );
|
220 |
-
return true;
|
221 |
-
}
|
222 |
-
|
223 |
-
function wp_session_start() {
|
224 |
-
$wp_session = WP_Session::get_instance();
|
225 |
-
do_action( 'wp_session_start' );
|
226 |
-
return $wp_session->session_started();
|
227 |
-
}
|
228 |
-
add_action( 'plugins_loaded', 'wp_session_start' );
|
229 |
-
|
230 |
-
function wp_session_status() {
|
231 |
-
$wp_session = WP_Session::get_instance();
|
232 |
-
if ( $wp_session->session_started() ) {
|
233 |
-
return PHP_SESSION_ACTIVE;
|
234 |
-
}
|
235 |
-
return PHP_SESSION_NONE;
|
236 |
-
}
|
237 |
-
|
238 |
-
function wp_session_unset() {
|
239 |
-
$wp_session = WP_Session::get_instance();
|
240 |
-
$wp_session->reset();
|
241 |
-
}
|
242 |
-
|
243 |
-
function wp_session_write_close() {
|
244 |
-
$wp_session = WP_Session::get_instance();
|
245 |
-
$wp_session->write_data();
|
246 |
-
do_action( 'wp_session_commit' );
|
247 |
-
}
|
248 |
-
add_action( 'shutdown', 'wp_session_write_close' );
|
249 |
-
|
250 |
-
function wp_session_cleanup() {
|
251 |
-
global $wpdb;
|
252 |
-
if ( defined( 'WP_SETUP_CONFIG' ) ) {
|
253 |
-
return;
|
254 |
-
}
|
255 |
-
|
256 |
-
if ( ! defined( 'WP_INSTALLING' ) ) {
|
257 |
-
$expiration_keys = $wpdb->get_results( "SELECT option_name, option_value FROM $wpdb->options WHERE option_name LIKE '_wp_session_expires_%'" );
|
258 |
-
$now = time();
|
259 |
-
$expired_sessions = array();
|
260 |
-
foreach( $expiration_keys as $expiration ) {
|
261 |
-
if ( $now > intval( $expiration->option_value ) ) {
|
262 |
-
$session_id = substr( $expiration->option_name, 20 );
|
263 |
-
$expired_sessions[] = $expiration->option_name;
|
264 |
-
$expired_sessions[] = "_wp_session_$session_id";
|
265 |
-
}
|
266 |
-
}
|
267 |
-
|
268 |
-
if ( ! empty( $expired_sessions ) ) {
|
269 |
-
$option_names = implode( "','", $expired_sessions );
|
270 |
-
$wpdb->query( "DELETE FROM $wpdb->options WHERE option_name IN ('$option_names')" );
|
271 |
-
}
|
272 |
-
}
|
273 |
-
do_action( 'wp_session_cleanup' );
|
274 |
-
}
|
275 |
-
add_action( 'wp_session_garbage_collection', 'wp_session_cleanup' );
|
276 |
-
|
277 |
-
function wp_session_register_garbage_collection() {
|
278 |
-
if ( !wp_next_scheduled( 'wp_session_garbage_collection' ) ) {
|
279 |
-
wp_schedule_event( time(), 'hourly', 'wp_session_garbage_collection' );
|
280 |
-
}
|
281 |
-
}
|
282 |
-
add_action( 'wp', 'wp_session_register_garbage_collection' );
|
283 |
-
}
|
284 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Persian Gravity Forms
|
4 |
Plugin URI: https://wordpress.org/plugins/persian-gravity-forms/
|
5 |
Description: Gravity Forms for Iranian, This plugin extends the Gravity Forms and its addons with Persian language
|
6 |
-
Version: 2.0.
|
7 |
Requires at least: 4.0
|
8 |
Author: hannansoft
|
9 |
Author URI: http://www.gravityforms.ir/
|
@@ -15,7 +15,7 @@ License: GPL 2
|
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
16 |
|
17 |
if ( ! defined( 'GF_PARSI_VERSION' ) )
|
18 |
-
define('GF_PARSI_VERSION', '2.0.
|
19 |
|
20 |
if ( ! defined( 'GF_PARSI_URL' ) )
|
21 |
define('GF_PARSI_URL', plugins_url('', __FILE__) . '/' );
|
3 |
Plugin Name: Persian Gravity Forms
|
4 |
Plugin URI: https://wordpress.org/plugins/persian-gravity-forms/
|
5 |
Description: Gravity Forms for Iranian, This plugin extends the Gravity Forms and its addons with Persian language
|
6 |
+
Version: 2.0.4
|
7 |
Requires at least: 4.0
|
8 |
Author: hannansoft
|
9 |
Author URI: http://www.gravityforms.ir/
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
16 |
|
17 |
if ( ! defined( 'GF_PARSI_VERSION' ) )
|
18 |
+
define('GF_PARSI_VERSION', '2.0.4' );
|
19 |
|
20 |
if ( ! defined( 'GF_PARSI_URL' ) )
|
21 |
define('GF_PARSI_URL', plugins_url('', __FILE__) . '/' );
|
languages/GF_FA-fa_IR.mo
CHANGED
Binary file
|
languages/GF_FA-fa_IR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Persian Gravity Forms v2.0.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: hannanstd <hannanstd@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -195,18 +195,18 @@ msgstr "استان های ایران"
|
|
195 |
msgid "Activate Iran Cities"
|
196 |
msgstr "فعالسازی شهرهای ایران"
|
197 |
|
198 |
-
#: includes/class-jalali-date.php:
|
199 |
#@ GF_FA
|
200 |
msgid "Activate Jalali date"
|
201 |
msgstr "فعالسازی تاریخ شمسی"
|
202 |
|
203 |
-
#: includes/class-jalali-date.php:
|
204 |
#, php-format
|
205 |
#@ gravityforms
|
206 |
msgid "Please enter a valid date in the format (%s)."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/class-jalali-date.php:
|
210 |
#@ gravityforms
|
211 |
msgid "Please enter a valid date."
|
212 |
msgstr ""
|
@@ -222,31 +222,31 @@ msgstr "پیش نمایش فرم"
|
|
222 |
msgid "A post type created for previewing Gravity Forms forms on the frontend."
|
223 |
msgstr "یک پست تایپ موقتی و تستی جهت نمایش پیشنمایش فرم"
|
224 |
|
225 |
-
#: includes/class-live-preview.php:
|
226 |
-
#: includes/class-live-preview.php:
|
227 |
#@ GF_FA
|
228 |
msgid "Ajax option enabled"
|
229 |
msgstr "حالت فعال آیجکس"
|
230 |
|
231 |
-
#: includes/class-live-preview.php:
|
232 |
-
#: includes/class-live-preview.php:
|
233 |
#@ GF_FA
|
234 |
msgid "Ajax option disabled"
|
235 |
msgstr "حالت غیرفعال آیجکس"
|
236 |
|
237 |
-
#: includes/class-live-preview.php:
|
238 |
-
#: includes/class-live-preview.php:
|
239 |
-
#: includes/class-live-preview.php:
|
240 |
#@ GF_FA
|
241 |
msgid "Live Preview"
|
242 |
msgstr "پیش نمایش زنده"
|
243 |
|
244 |
-
#: includes/class-live-preview.php:
|
245 |
#@ GF_FA
|
246 |
msgid "You need to log in to preview forms."
|
247 |
msgstr "برای مشاهده فرم می بایست وارد سایت شوید!"
|
248 |
|
249 |
-
#: includes/class-live-preview.php:
|
250 |
#@ GF_FA
|
251 |
msgid "Oops! It doesn't look like you have the necessary permission to preview this form."
|
252 |
msgstr "شما مجوز کافی جهت مشاهده پیشنمایش فرم را ندارید!"
|
@@ -333,7 +333,7 @@ msgstr "خبرنامه"
|
|
333 |
msgid "Click to view"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/class-snippets.php:
|
337 |
#@ GF_FA
|
338 |
msgid "Post Permalink"
|
339 |
msgstr "لینک پست"
|
@@ -356,7 +356,7 @@ msgstr ""
|
|
356 |
#: includes/class-wpp-gravity-forms.php:96
|
357 |
#@ GF_FA
|
358 |
msgid "GravityForms"
|
359 |
-
msgstr "
|
360 |
|
361 |
#: includes/class-wpp-gravity-forms.php:101
|
362 |
#@ GF_FA
|
@@ -366,13 +366,13 @@ msgstr "استفاده از قلم \"دروید سنس\"برای مدیریت ب
|
|
366 |
#: includes/class-wpp-gravity-forms.php:105
|
367 |
#@ GF_FA
|
368 |
msgid "By GravityForms.ir"
|
369 |
-
msgstr "اضافه شده توسط
|
370 |
|
371 |
#. translators: plugin header field 'Name'
|
372 |
#: index.php:0
|
373 |
#@ GF_FA
|
374 |
msgid "Persian Gravity Forms"
|
375 |
-
msgstr "
|
376 |
|
377 |
#. translators: plugin header field 'PluginURI'
|
378 |
#: index.php:0
|
@@ -392,211 +392,205 @@ msgstr "حنان ابراهیمی ستوده"
|
|
392 |
msgid "http://www.gravityforms.ir/"
|
393 |
msgstr "http://www.gravityforms.ir/"
|
394 |
|
395 |
-
|
396 |
-
#: index.php:0
|
397 |
-
#@ GF_FA
|
398 |
-
msgid "2.0.0"
|
399 |
-
msgstr "2.0.0"
|
400 |
-
|
401 |
-
#: persian-gravity.php:95
|
402 |
#, php-format
|
403 |
#@ GF_FA
|
404 |
msgid "Persian Gravity Forms requires Gravityforms Core. Please install or activate it to continue. %sSee FAQ%s"
|
405 |
-
msgstr "شما تنها بسته فارسی ساز را نصب کرده اید! برای استفاده از
|
406 |
|
407 |
-
#: persian-gravity.php:
|
408 |
#, php-format
|
409 |
#@ GF_FA
|
410 |
msgid "Thanks for choosing %sPersian Gravity Forms%s"
|
411 |
-
msgstr "از اینکه %s
|
412 |
|
413 |
-
#: persian-gravity.php:
|
414 |
#@ GF_FA
|
415 |
msgid "Persian Gravity Forms Dashboard"
|
416 |
-
msgstr "آخرین مطالب
|
417 |
|
418 |
-
#: persian-gravity.php:
|
419 |
#@ GF_FA
|
420 |
msgid "<strong>RSS Error</strong>"
|
421 |
msgstr "<strong>خطای RSS</strong>"
|
422 |
|
423 |
-
#: persian-gravity.php:
|
424 |
#@ GF_FA
|
425 |
msgid "Apparently, There are no updates to show!"
|
426 |
msgstr "هیچ مطلبی وجود ندارد!"
|
427 |
|
428 |
-
#: persian-gravity.php:
|
429 |
#@ GF_FA
|
430 |
msgid "Private"
|
431 |
msgstr "Private"
|
432 |
|
433 |
-
#: persian-gravity.php:
|
434 |
#@ GF_FA
|
435 |
msgid "Iranian Rial"
|
436 |
msgstr "ریال"
|
437 |
|
438 |
-
#: persian-gravity.php:
|
439 |
-
#: persian-gravity.php:
|
440 |
#@ GF_FA
|
441 |
msgid "Rial"
|
442 |
msgstr "ریال"
|
443 |
|
444 |
-
#: persian-gravity.php:
|
445 |
#@ GF_FA
|
446 |
msgid "Iranian Toman"
|
447 |
msgstr "تومان"
|
448 |
|
449 |
-
#: persian-gravity.php:
|
450 |
-
#: persian-gravity.php:
|
451 |
#@ GF_FA
|
452 |
msgid "Toman"
|
453 |
msgstr "تومان"
|
454 |
|
455 |
-
#: persian-gravity.php:
|
456 |
#@ GF_FA
|
457 |
msgid "Iranian Months"
|
458 |
msgstr "ماه های ایران"
|
459 |
|
460 |
-
#: persian-gravity.php:
|
461 |
#@ GF_FA
|
462 |
msgid "Farvardin"
|
463 |
msgstr "فروردین"
|
464 |
|
465 |
-
#: persian-gravity.php:
|
466 |
#@ GF_FA
|
467 |
msgid "Ordibehesht"
|
468 |
msgstr "اردیبهشت"
|
469 |
|
470 |
-
#: persian-gravity.php:
|
471 |
#@ GF_FA
|
472 |
msgid "Khordad"
|
473 |
msgstr "خرداد"
|
474 |
|
475 |
-
#: persian-gravity.php:
|
476 |
#@ GF_FA
|
477 |
msgid "Tir"
|
478 |
msgstr "تیر"
|
479 |
|
480 |
-
#: persian-gravity.php:
|
481 |
#@ GF_FA
|
482 |
msgid "Mordad"
|
483 |
msgstr "مرداد"
|
484 |
|
485 |
-
#: persian-gravity.php:
|
486 |
#@ GF_FA
|
487 |
msgid "Shahrivar"
|
488 |
msgstr "شهریور"
|
489 |
|
490 |
-
#: persian-gravity.php:
|
491 |
#@ GF_FA
|
492 |
msgid "Mehr"
|
493 |
msgstr "مهر"
|
494 |
|
495 |
-
#: persian-gravity.php:
|
496 |
#@ GF_FA
|
497 |
msgid "Aban"
|
498 |
msgstr "آبان"
|
499 |
|
500 |
-
#: persian-gravity.php:
|
501 |
#@ GF_FA
|
502 |
msgid "Azar"
|
503 |
msgstr "آذر"
|
504 |
|
505 |
-
#: persian-gravity.php:
|
506 |
#@ GF_FA
|
507 |
msgid "Dey"
|
508 |
msgstr "دی"
|
509 |
|
510 |
-
#: persian-gravity.php:
|
511 |
#@ GF_FA
|
512 |
msgid "Bahman"
|
513 |
msgstr "بهمن"
|
514 |
|
515 |
-
#: persian-gravity.php:
|
516 |
#@ GF_FA
|
517 |
msgid "Esfand"
|
518 |
msgstr "اسفند"
|
519 |
|
520 |
-
#: persian-gravity.php:
|
521 |
#@ GF_FA
|
522 |
msgid "Simple Payment Gateway"
|
523 |
msgstr "عنوان درگاه پرداخت ساده"
|
524 |
|
525 |
-
#: persian-gravity.php:
|
526 |
#@ GF_FA
|
527 |
msgid "Simple Payment Status"
|
528 |
msgstr "وضعیت پرداخت ساده"
|
529 |
|
530 |
-
#: persian-gravity.php:
|
531 |
#@ GF_FA
|
532 |
msgid "Simple Transaction ID"
|
533 |
msgstr "شماره تراکنش ساده"
|
534 |
|
535 |
-
#: persian-gravity.php:
|
536 |
#@ GF_FA
|
537 |
msgid "Styled Payment Gateway"
|
538 |
msgstr "جدول نام درگاه پرداخت"
|
539 |
|
540 |
-
#: persian-gravity.php:
|
541 |
#@ GF_FA
|
542 |
msgid "Styled Payment Status"
|
543 |
msgstr "جدول وضعیت پرداخت"
|
544 |
|
545 |
-
#: persian-gravity.php:
|
546 |
#@ GF_FA
|
547 |
msgid "Styled Transaction ID"
|
548 |
msgstr "جدول شماره تراکنش"
|
549 |
|
550 |
-
#: persian-gravity.php:
|
551 |
#@ GF_FA
|
552 |
msgid "Styled Payment Pack"
|
553 |
msgstr "پک پرداخت"
|
554 |
|
555 |
-
#: persian-gravity.php:
|
556 |
#@ GF_FA
|
557 |
msgid "Start of RTL Div"
|
558 |
msgstr "ابتدای بلوک راستچین ساز"
|
559 |
|
560 |
-
#: persian-gravity.php:
|
561 |
#@ GF_FA
|
562 |
msgid "End of RTL Div"
|
563 |
msgstr "انتهای بلوک راستچین ساز"
|
564 |
|
565 |
-
#: persian-gravity.php:
|
566 |
-
#: persian-gravity.php:
|
567 |
#@ GF_FA
|
568 |
msgid "Approved"
|
569 |
msgstr "موفق"
|
570 |
|
571 |
-
#: persian-gravity.php:
|
572 |
-
#: persian-gravity.php:
|
573 |
#@ GF_FA
|
574 |
msgid "Failed"
|
575 |
msgstr "ناموفق"
|
576 |
|
577 |
-
#: persian-gravity.php:
|
578 |
-
#: persian-gravity.php:
|
579 |
#@ GF_FA
|
580 |
msgid "Cancelled"
|
581 |
msgstr "منصرف شده"
|
582 |
|
583 |
-
#: persian-gravity.php:
|
584 |
-
#: persian-gravity.php:
|
585 |
#@ GF_FA
|
586 |
msgid "Processing"
|
587 |
msgstr "در انتظار"
|
588 |
|
589 |
-
#: persian-gravity.php:
|
590 |
#@ GF_FA
|
591 |
msgid "Payment Gateway"
|
592 |
msgstr "عنوان درگاه پرداخت"
|
593 |
|
594 |
-
#: persian-gravity.php:
|
595 |
#@ GF_FA
|
596 |
msgid "Transaction ID"
|
597 |
msgstr "شماره تراکنش"
|
598 |
|
599 |
-
#: persian-gravity.php:
|
600 |
#@ GF_FA
|
601 |
msgid "Payment Status"
|
602 |
msgstr "وضعیت پرداخت"
|
@@ -612,7 +606,7 @@ msgstr ""
|
|
612 |
msgid "Iran"
|
613 |
msgstr "ایران"
|
614 |
|
615 |
-
#: includes/class-jalali-date.php:
|
616 |
#@ GF_FA
|
617 |
msgid "<h6>فعالسازی تاریخ شمسی</h6>در صورتی که از چند فیلد تاریخ استفاده میکنید ، فعالسازی تاریخ شمسی یکی از فیلدها کفایت میکند .<br/>تذکر : با توجه به آزمایشی بودن این قسمت ممکن است تداخل توابع سبب ناسازگاری با برخی قالب ها شود."
|
618 |
msgstr ""
|
@@ -645,3 +639,39 @@ msgstr ""
|
|
645 |
msgid "کد ملی می بایست 10 رقمی باشد . تنها در صورتی مجاز به استفاده از کد های 8 یا 9 رقمی هستید که ارقام سمت چپ 0 باشند ."
|
646 |
msgstr ""
|
647 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Persian Gravity Forms v2.0.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2016-10-26 22:03:14+0000\n"
|
7 |
"Last-Translator: hannanstd <hannanstd@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
195 |
msgid "Activate Iran Cities"
|
196 |
msgstr "فعالسازی شهرهای ایران"
|
197 |
|
198 |
+
#: includes/class-jalali-date.php:41
|
199 |
#@ GF_FA
|
200 |
msgid "Activate Jalali date"
|
201 |
msgstr "فعالسازی تاریخ شمسی"
|
202 |
|
203 |
+
#: includes/class-jalali-date.php:253
|
204 |
#, php-format
|
205 |
#@ gravityforms
|
206 |
msgid "Please enter a valid date in the format (%s)."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/class-jalali-date.php:253
|
210 |
#@ gravityforms
|
211 |
msgid "Please enter a valid date."
|
212 |
msgstr ""
|
222 |
msgid "A post type created for previewing Gravity Forms forms on the frontend."
|
223 |
msgstr "یک پست تایپ موقتی و تستی جهت نمایش پیشنمایش فرم"
|
224 |
|
225 |
+
#: includes/class-live-preview.php:90
|
226 |
+
#: includes/class-live-preview.php:134
|
227 |
#@ GF_FA
|
228 |
msgid "Ajax option enabled"
|
229 |
msgstr "حالت فعال آیجکس"
|
230 |
|
231 |
+
#: includes/class-live-preview.php:96
|
232 |
+
#: includes/class-live-preview.php:135
|
233 |
#@ GF_FA
|
234 |
msgid "Ajax option disabled"
|
235 |
msgstr "حالت غیرفعال آیجکس"
|
236 |
|
237 |
+
#: includes/class-live-preview.php:101
|
238 |
+
#: includes/class-live-preview.php:103
|
239 |
+
#: includes/class-live-preview.php:131
|
240 |
#@ GF_FA
|
241 |
msgid "Live Preview"
|
242 |
msgstr "پیش نمایش زنده"
|
243 |
|
244 |
+
#: includes/class-live-preview.php:159
|
245 |
#@ GF_FA
|
246 |
msgid "You need to log in to preview forms."
|
247 |
msgstr "برای مشاهده فرم می بایست وارد سایت شوید!"
|
248 |
|
249 |
+
#: includes/class-live-preview.php:162
|
250 |
#@ GF_FA
|
251 |
msgid "Oops! It doesn't look like you have the necessary permission to preview this form."
|
252 |
msgstr "شما مجوز کافی جهت مشاهده پیشنمایش فرم را ندارید!"
|
333 |
msgid "Click to view"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/class-snippets.php:13
|
337 |
#@ GF_FA
|
338 |
msgid "Post Permalink"
|
339 |
msgstr "لینک پست"
|
356 |
#: includes/class-wpp-gravity-forms.php:96
|
357 |
#@ GF_FA
|
358 |
msgid "GravityForms"
|
359 |
+
msgstr "گرویتی فرم"
|
360 |
|
361 |
#: includes/class-wpp-gravity-forms.php:101
|
362 |
#@ GF_FA
|
366 |
#: includes/class-wpp-gravity-forms.php:105
|
367 |
#@ GF_FA
|
368 |
msgid "By GravityForms.ir"
|
369 |
+
msgstr "اضافه شده توسط گرویتی فرم پارسی"
|
370 |
|
371 |
#. translators: plugin header field 'Name'
|
372 |
#: index.php:0
|
373 |
#@ GF_FA
|
374 |
msgid "Persian Gravity Forms"
|
375 |
+
msgstr "گرویتی فرم پارسی"
|
376 |
|
377 |
#. translators: plugin header field 'PluginURI'
|
378 |
#: index.php:0
|
392 |
msgid "http://www.gravityforms.ir/"
|
393 |
msgstr "http://www.gravityforms.ir/"
|
394 |
|
395 |
+
#: persian-gravity.php:107
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
#, php-format
|
397 |
#@ GF_FA
|
398 |
msgid "Persian Gravity Forms requires Gravityforms Core. Please install or activate it to continue. %sSee FAQ%s"
|
399 |
+
msgstr "شما تنها بسته فارسی ساز را نصب کرده اید! برای استفاده از گرویتی فرم باید هسته اصلی نیز نصب باشد. %sاطلاعات بیشتر%s"
|
400 |
|
401 |
+
#: persian-gravity.php:198
|
402 |
#, php-format
|
403 |
#@ GF_FA
|
404 |
msgid "Thanks for choosing %sPersian Gravity Forms%s"
|
405 |
+
msgstr "از اینکه %sگرویتی فرم پارسی%s را انتخاب کردید متشکریم!"
|
406 |
|
407 |
+
#: persian-gravity.php:268
|
408 |
#@ GF_FA
|
409 |
msgid "Persian Gravity Forms Dashboard"
|
410 |
+
msgstr "آخرین مطالب گرویتی فرم پارسی"
|
411 |
|
412 |
+
#: persian-gravity.php:278
|
413 |
#@ GF_FA
|
414 |
msgid "<strong>RSS Error</strong>"
|
415 |
msgstr "<strong>خطای RSS</strong>"
|
416 |
|
417 |
+
#: persian-gravity.php:283
|
418 |
#@ GF_FA
|
419 |
msgid "Apparently, There are no updates to show!"
|
420 |
msgstr "هیچ مطلبی وجود ندارد!"
|
421 |
|
422 |
+
#: persian-gravity.php:546
|
423 |
#@ GF_FA
|
424 |
msgid "Private"
|
425 |
msgstr "Private"
|
426 |
|
427 |
+
#: persian-gravity.php:555
|
428 |
#@ GF_FA
|
429 |
msgid "Iranian Rial"
|
430 |
msgstr "ریال"
|
431 |
|
432 |
+
#: persian-gravity.php:556
|
433 |
+
#: persian-gravity.php:557
|
434 |
#@ GF_FA
|
435 |
msgid "Rial"
|
436 |
msgstr "ریال"
|
437 |
|
438 |
+
#: persian-gravity.php:567
|
439 |
#@ GF_FA
|
440 |
msgid "Iranian Toman"
|
441 |
msgstr "تومان"
|
442 |
|
443 |
+
#: persian-gravity.php:568
|
444 |
+
#: persian-gravity.php:569
|
445 |
#@ GF_FA
|
446 |
msgid "Toman"
|
447 |
msgstr "تومان"
|
448 |
|
449 |
+
#: persian-gravity.php:583
|
450 |
#@ GF_FA
|
451 |
msgid "Iranian Months"
|
452 |
msgstr "ماه های ایران"
|
453 |
|
454 |
+
#: persian-gravity.php:584
|
455 |
#@ GF_FA
|
456 |
msgid "Farvardin"
|
457 |
msgstr "فروردین"
|
458 |
|
459 |
+
#: persian-gravity.php:585
|
460 |
#@ GF_FA
|
461 |
msgid "Ordibehesht"
|
462 |
msgstr "اردیبهشت"
|
463 |
|
464 |
+
#: persian-gravity.php:586
|
465 |
#@ GF_FA
|
466 |
msgid "Khordad"
|
467 |
msgstr "خرداد"
|
468 |
|
469 |
+
#: persian-gravity.php:587
|
470 |
#@ GF_FA
|
471 |
msgid "Tir"
|
472 |
msgstr "تیر"
|
473 |
|
474 |
+
#: persian-gravity.php:588
|
475 |
#@ GF_FA
|
476 |
msgid "Mordad"
|
477 |
msgstr "مرداد"
|
478 |
|
479 |
+
#: persian-gravity.php:589
|
480 |
#@ GF_FA
|
481 |
msgid "Shahrivar"
|
482 |
msgstr "شهریور"
|
483 |
|
484 |
+
#: persian-gravity.php:590
|
485 |
#@ GF_FA
|
486 |
msgid "Mehr"
|
487 |
msgstr "مهر"
|
488 |
|
489 |
+
#: persian-gravity.php:591
|
490 |
#@ GF_FA
|
491 |
msgid "Aban"
|
492 |
msgstr "آبان"
|
493 |
|
494 |
+
#: persian-gravity.php:592
|
495 |
#@ GF_FA
|
496 |
msgid "Azar"
|
497 |
msgstr "آذر"
|
498 |
|
499 |
+
#: persian-gravity.php:593
|
500 |
#@ GF_FA
|
501 |
msgid "Dey"
|
502 |
msgstr "دی"
|
503 |
|
504 |
+
#: persian-gravity.php:594
|
505 |
#@ GF_FA
|
506 |
msgid "Bahman"
|
507 |
msgstr "بهمن"
|
508 |
|
509 |
+
#: persian-gravity.php:595
|
510 |
#@ GF_FA
|
511 |
msgid "Esfand"
|
512 |
msgstr "اسفند"
|
513 |
|
514 |
+
#: persian-gravity.php:605
|
515 |
#@ GF_FA
|
516 |
msgid "Simple Payment Gateway"
|
517 |
msgstr "عنوان درگاه پرداخت ساده"
|
518 |
|
519 |
+
#: persian-gravity.php:606
|
520 |
#@ GF_FA
|
521 |
msgid "Simple Payment Status"
|
522 |
msgstr "وضعیت پرداخت ساده"
|
523 |
|
524 |
+
#: persian-gravity.php:607
|
525 |
#@ GF_FA
|
526 |
msgid "Simple Transaction ID"
|
527 |
msgstr "شماره تراکنش ساده"
|
528 |
|
529 |
+
#: persian-gravity.php:608
|
530 |
#@ GF_FA
|
531 |
msgid "Styled Payment Gateway"
|
532 |
msgstr "جدول نام درگاه پرداخت"
|
533 |
|
534 |
+
#: persian-gravity.php:609
|
535 |
#@ GF_FA
|
536 |
msgid "Styled Payment Status"
|
537 |
msgstr "جدول وضعیت پرداخت"
|
538 |
|
539 |
+
#: persian-gravity.php:610
|
540 |
#@ GF_FA
|
541 |
msgid "Styled Transaction ID"
|
542 |
msgstr "جدول شماره تراکنش"
|
543 |
|
544 |
+
#: persian-gravity.php:611
|
545 |
#@ GF_FA
|
546 |
msgid "Styled Payment Pack"
|
547 |
msgstr "پک پرداخت"
|
548 |
|
549 |
+
#: persian-gravity.php:612
|
550 |
#@ GF_FA
|
551 |
msgid "Start of RTL Div"
|
552 |
msgstr "ابتدای بلوک راستچین ساز"
|
553 |
|
554 |
+
#: persian-gravity.php:613
|
555 |
#@ GF_FA
|
556 |
msgid "End of RTL Div"
|
557 |
msgstr "انتهای بلوک راستچین ساز"
|
558 |
|
559 |
+
#: persian-gravity.php:670
|
560 |
+
#: persian-gravity.php:776
|
561 |
#@ GF_FA
|
562 |
msgid "Approved"
|
563 |
msgstr "موفق"
|
564 |
|
565 |
+
#: persian-gravity.php:673
|
566 |
+
#: persian-gravity.php:779
|
567 |
#@ GF_FA
|
568 |
msgid "Failed"
|
569 |
msgstr "ناموفق"
|
570 |
|
571 |
+
#: persian-gravity.php:676
|
572 |
+
#: persian-gravity.php:782
|
573 |
#@ GF_FA
|
574 |
msgid "Cancelled"
|
575 |
msgstr "منصرف شده"
|
576 |
|
577 |
+
#: persian-gravity.php:679
|
578 |
+
#: persian-gravity.php:785
|
579 |
#@ GF_FA
|
580 |
msgid "Processing"
|
581 |
msgstr "در انتظار"
|
582 |
|
583 |
+
#: persian-gravity.php:686
|
584 |
#@ GF_FA
|
585 |
msgid "Payment Gateway"
|
586 |
msgstr "عنوان درگاه پرداخت"
|
587 |
|
588 |
+
#: persian-gravity.php:699
|
589 |
#@ GF_FA
|
590 |
msgid "Transaction ID"
|
591 |
msgstr "شماره تراکنش"
|
592 |
|
593 |
+
#: persian-gravity.php:712
|
594 |
#@ GF_FA
|
595 |
msgid "Payment Status"
|
596 |
msgstr "وضعیت پرداخت"
|
606 |
msgid "Iran"
|
607 |
msgstr "ایران"
|
608 |
|
609 |
+
#: includes/class-jalali-date.php:22
|
610 |
#@ GF_FA
|
611 |
msgid "<h6>فعالسازی تاریخ شمسی</h6>در صورتی که از چند فیلد تاریخ استفاده میکنید ، فعالسازی تاریخ شمسی یکی از فیلدها کفایت میکند .<br/>تذکر : با توجه به آزمایشی بودن این قسمت ممکن است تداخل توابع سبب ناسازگاری با برخی قالب ها شود."
|
612 |
msgstr ""
|
639 |
msgid "کد ملی می بایست 10 رقمی باشد . تنها در صورتی مجاز به استفاده از کد های 8 یا 9 رقمی هستید که ارقام سمت چپ 0 باشند ."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#. translators: plugin header field 'Version'
|
643 |
+
#: index.php:0
|
644 |
+
#@ GF_FA
|
645 |
+
msgid "2.0.4"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: persian-gravity.php:115
|
649 |
+
#@ GF_FA
|
650 |
+
msgid "<strong>گرویتی فرم فارسی :</strong> توجه به موارد زیر الزامیست »"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: persian-gravity.php:116
|
654 |
+
#@ GF_FA
|
655 |
+
msgid "- به دلیل قرار گرفتن <a href=\"http://gravityforms.ir/11378/\" target=\"_blank\" style=\"text-decoration:none;\">آموزش تهیه آخرین نسخه گرویتی فرم در سایت</a> ، زین پس نسخه های زیر 1.9.15 پشتیبانی نخواهند شد."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: persian-gravity.php:117
|
659 |
+
#@ GF_FA
|
660 |
+
msgid "- کلیه درگاه های پرداخت گرویتی فرم به نسخه 2.2.1 بروز رسانی شدند و برای خریداران ارسال شدند. "
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: persian-gravity.php:118
|
664 |
+
#@ GF_FA
|
665 |
+
msgid "- در صورتی که تاکنون آپدیت 2.2.1 درگاه های پرداخت به دست شما نرسیده است با ارسال مشخصات خرید خود به ایمیل hannanstd@gmail.com درخواست دریافت آپدیت را نمایید. ولی قبل آن اسپم ایمیل خود را نیز چک نمایید."
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: persian-gravity.php:119
|
669 |
+
#@ GF_FA
|
670 |
+
msgid "- همچنین میتوانید نسخه 2.2.1 درگاه های رایگان را مجددا از سایت گرویتی فرم پارسی دانلود نمایید."
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: persian-gravity.php:120
|
674 |
+
#@ GF_FA
|
675 |
+
msgid "- در این آپدیت گرویتی فرم پارسی درگاه های نسخه 1.0.0 از کار افتاده اند و در آپدیت بعدی گرویتی فرم پارسی درگاه های زیر نسخه 2.2.1 از کار خواهند افتاد. پس حتما در بروز رسانی درگاه های پرداخت خود جدی باشید."
|
676 |
+
msgstr ""
|
677 |
+
|
languages/gravityforms/fa_IR.mo
ADDED
Binary file
|
languages/gravityforms/fa_IR.po
ADDED
@@ -0,0 +1,12805 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Gravity Forms v2.0.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2016-10-05 12:29:10+0000\n"
|
7 |
+
"Last-Translator: Mohammad Bagheri <mo.baagheri@gmail.com>\n"
|
8 |
+
"Language-Team: Hannanstd <h@nnan.ir>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: Poedit 1.8.8\n"
|
14 |
+
"X-Poedit-Language: \n"
|
15 |
+
"X-Poedit-Country: \n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: \n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: entry_detail.php:732
|
24 |
+
#@ gravityforms
|
25 |
+
msgid " Bulk action"
|
26 |
+
msgstr " اقدامات دسته جمعی"
|
27 |
+
|
28 |
+
#: entry_detail.php:734
|
29 |
+
#@ gravityforms
|
30 |
+
msgid " Bulk action "
|
31 |
+
msgstr " اقدامات دسته جمعی "
|
32 |
+
|
33 |
+
#: tooltips.php:115
|
34 |
+
#@ gravityforms
|
35 |
+
msgid "\"Other\" Choice"
|
36 |
+
msgstr "\"سایر\" انتخابات"
|
37 |
+
|
38 |
+
#: common.php:2243
|
39 |
+
#: common.php:2246
|
40 |
+
#, php-format
|
41 |
+
#@ gravityforms
|
42 |
+
msgid "%1$s at %2$s"
|
43 |
+
msgstr "%1$s در %2$s"
|
44 |
+
|
45 |
+
#: entry_list.php:1265
|
46 |
+
#, php-format
|
47 |
+
#@ gravityforms
|
48 |
+
msgid "%d entries"
|
49 |
+
msgstr "%d پیام ورودی"
|
50 |
+
|
51 |
+
#: includes/fields/class-gf-field-fileupload.php:409
|
52 |
+
#, php-format
|
53 |
+
#@ gravityforms
|
54 |
+
msgid "%d files"
|
55 |
+
msgstr "%d فایل"
|
56 |
+
|
57 |
+
#: includes/fields/class-gf-field-checkbox.php:269
|
58 |
+
#: includes/fields/class-gf-field-radio.php:152
|
59 |
+
#, php-format
|
60 |
+
#@ gravityforms
|
61 |
+
msgid "%d of %d items shown. Edit field to view all"
|
62 |
+
msgstr "%d از %d آیتم نمایش داده شده است . برای نمایش همه فیلد را ویرایش نمایید ."
|
63 |
+
|
64 |
+
#: includes/addon/class-gf-feed-addon.php:837
|
65 |
+
#: includes/addon/class-gf-feed-addon.php:941
|
66 |
+
#: includes/addon/class-gf-feed-addon.php:946
|
67 |
+
#, php-format
|
68 |
+
#@ gravityforms
|
69 |
+
msgid "%s Feeds"
|
70 |
+
msgstr "خوراک %s"
|
71 |
+
|
72 |
+
#: includes/addon/class-gf-addon.php:3889
|
73 |
+
#: includes/addon/class-gf-addon.php:4183
|
74 |
+
#: includes/addon/class-gf-feed-addon.php:1172
|
75 |
+
#, php-format
|
76 |
+
#@ gravityforms
|
77 |
+
msgid "%s Settings"
|
78 |
+
msgstr "تنظیمات %s"
|
79 |
+
|
80 |
+
#: common.php:2241
|
81 |
+
#, php-format
|
82 |
+
#@ gravityforms
|
83 |
+
msgid "%s ago"
|
84 |
+
msgstr "%s قبل"
|
85 |
+
|
86 |
+
#: entry_list.php:1271
|
87 |
+
#, php-format
|
88 |
+
#@ gravityforms
|
89 |
+
msgid "%s deleted."
|
90 |
+
msgstr "%s حذف شدند."
|
91 |
+
|
92 |
+
#: form_list.php:783
|
93 |
+
#, php-format
|
94 |
+
#@ gravityforms
|
95 |
+
msgid "%s form deleted."
|
96 |
+
msgid_plural "%s forms deleted."
|
97 |
+
msgstr[0] "%sفرم حذف شد."
|
98 |
+
msgstr[1] "%sفرم ها حذف شدند."
|
99 |
+
|
100 |
+
#: form_list.php:809
|
101 |
+
#, php-format
|
102 |
+
#@ gravityforms
|
103 |
+
msgid "%s form has been marked as active."
|
104 |
+
msgid_plural "%s forms have been marked as active."
|
105 |
+
msgstr[0] "%s فرم به عنوان فعال علامت گذاری شد."
|
106 |
+
msgstr[1] "%s فرم ها به عنوان فعال علامت گذاری شدند."
|
107 |
+
|
108 |
+
#: form_list.php:815
|
109 |
+
#, php-format
|
110 |
+
#@ gravityforms
|
111 |
+
msgid "%s form has been marked as inactive."
|
112 |
+
msgid_plural "%s forms have been marked as inactive."
|
113 |
+
msgstr[0] "%s فرم به عنوان غیرفعال علامت گذاری شد."
|
114 |
+
msgstr[1] "%sفرم ها به عنوان غیرفعال علامت گذاری شدند."
|
115 |
+
|
116 |
+
#: form_list.php:774
|
117 |
+
#, php-format
|
118 |
+
#@ gravityforms
|
119 |
+
msgid "%s form moved to the trash."
|
120 |
+
msgid_plural "%s forms moved to the trash."
|
121 |
+
msgstr[0] "%s فرم به زباله دان انتقال یافت."
|
122 |
+
msgstr[1] "%s فرم ها به زباله دادن انتقال یافتند."
|
123 |
+
|
124 |
+
#: form_list.php:778
|
125 |
+
#, php-format
|
126 |
+
#@ gravityforms
|
127 |
+
msgid "%s form restored."
|
128 |
+
msgid_plural "%s forms restored."
|
129 |
+
msgstr[0] "%sفرم بازگردانی شد."
|
130 |
+
msgstr[1] "%sفرم ها بازگردانی شدند."
|
131 |
+
|
132 |
+
#: includes/addon/class-gf-payment-addon.php:494
|
133 |
+
#, php-format
|
134 |
+
#@ gravityforms
|
135 |
+
msgid "%s has been captured successfully. Amount: %s. Transaction Id: %s"
|
136 |
+
msgstr "%s با موفق انجام شد. مبلغ : %s . کد رهگیری : %s"
|
137 |
+
|
138 |
+
#: includes/addon/class-gf-addon.php:3862
|
139 |
+
#: includes/addon/class-gf-addon.php:4027
|
140 |
+
#: includes/addon/class-gf-addon.php:4154
|
141 |
+
#, php-format
|
142 |
+
#@ gravityforms
|
143 |
+
msgid "%s has been successfully uninstalled. It can be re-activated from the %splugins page%s."
|
144 |
+
msgstr "%s با موفقیت غیر فعال شد. می توان دوباره آن را از %s صفحه پلاگین ها %s فعال کرد."
|
145 |
+
|
146 |
+
#: includes/locking/locking.php:110
|
147 |
+
#: includes/locking/locking.php:152
|
148 |
+
#, php-format
|
149 |
+
#@ gravityforms
|
150 |
+
msgid "%s has requested permission to take over control of these settings."
|
151 |
+
msgstr "\t%s درخواست به دست گرفتن کنترل این تنظیمات را دارد."
|
152 |
+
|
153 |
+
#: includes/locking/locking.php:64
|
154 |
+
#, php-format
|
155 |
+
#@ gravityforms
|
156 |
+
msgid "%s has requested permission to take over control of this entry."
|
157 |
+
msgstr "%s درخواست به دست گرفتن کنترل این پیام ورودی را دارد."
|
158 |
+
|
159 |
+
#: includes/locking/locking.php:24
|
160 |
+
#, php-format
|
161 |
+
#@ gravityforms
|
162 |
+
msgid "%s has requested permission to take over control of this form."
|
163 |
+
msgstr "%s درخواست به دست گرفتن کنترل این فرم را دارد."
|
164 |
+
|
165 |
+
#: includes/locking/class-gf-locking.php:204
|
166 |
+
#, php-format
|
167 |
+
#@ gravityforms
|
168 |
+
msgid "%s has requested permission to take over control."
|
169 |
+
msgstr "%s درخواست به دست گرفتن کنترل را دارد."
|
170 |
+
|
171 |
+
#: includes/locking/class-gf-locking.php:203
|
172 |
+
#, php-format
|
173 |
+
#@ gravityforms
|
174 |
+
msgid "%s has taken over and is currently editing."
|
175 |
+
msgstr "%s کنترل را به دست گرفته و در حال ویرایش اشت ."
|
176 |
+
|
177 |
+
#: includes/locking/class-gf-locking.php:202
|
178 |
+
#, php-format
|
179 |
+
#@ gravityforms
|
180 |
+
msgid "%s is currently editing"
|
181 |
+
msgstr "%s در حال ویرایش است"
|
182 |
+
|
183 |
+
#: entry_list.php:1299
|
184 |
+
#, php-format
|
185 |
+
#@ gravityforms
|
186 |
+
msgid "%s marked as read."
|
187 |
+
msgstr "%s به عنوان خوانده شده علامت گذاری شدند."
|
188 |
+
|
189 |
+
#: entry_list.php:1294
|
190 |
+
#, php-format
|
191 |
+
#@ gravityforms
|
192 |
+
msgid "%s marked as spam."
|
193 |
+
msgstr "%s به عنوان هرزنامه علامتگذاری شدند."
|
194 |
+
|
195 |
+
#: entry_list.php:1304
|
196 |
+
#, php-format
|
197 |
+
#@ gravityforms
|
198 |
+
msgid "%s marked as unread."
|
199 |
+
msgstr "%s به عنوان خوانده نشده علامت گذاری شدند."
|
200 |
+
|
201 |
+
#: entry_list.php:1279
|
202 |
+
#, php-format
|
203 |
+
#@ gravityforms
|
204 |
+
msgid "%s moved to Trash."
|
205 |
+
msgstr "%s به زبان دان منتقل شدند."
|
206 |
+
|
207 |
+
#: entry_list.php:1284
|
208 |
+
#, php-format
|
209 |
+
#@ gravityforms
|
210 |
+
msgid "%s restored from the Trash."
|
211 |
+
msgstr "%s از زباله دان بازگردانی شدند."
|
212 |
+
|
213 |
+
#: entry_list.php:1289
|
214 |
+
#, php-format
|
215 |
+
#@ gravityforms
|
216 |
+
msgid "%s restored from the spam."
|
217 |
+
msgstr "%s از حالت هرزنامه خارج شدند."
|
218 |
+
|
219 |
+
#: entry_list.php:1309
|
220 |
+
#, php-format
|
221 |
+
#@ gravityforms
|
222 |
+
msgid "%s starred."
|
223 |
+
msgstr "%s ستاره دار شدند."
|
224 |
+
|
225 |
+
#: entry_list.php:1314
|
226 |
+
#, php-format
|
227 |
+
#@ gravityforms
|
228 |
+
msgid "%s unstarred."
|
229 |
+
msgstr "%s بی ستاره شدند."
|
230 |
+
|
231 |
+
#: includes/addon/class-gf-auto-upgrade.php:227
|
232 |
+
#, php-format
|
233 |
+
#@ gravityforms
|
234 |
+
msgid "%sRegister%s your copy of Gravity Forms to receive access to automatic updates and support. Need a license key? %sPurchase one now%s."
|
235 |
+
msgstr "برای دریافت خودکار بروزرسانی و پشتیبانی نسخه کپی Gravity Forms را%s ثبت%s کنید..نیاز به کد لایسنس دارید؟ %s خرید %s"
|
236 |
+
|
237 |
+
#: gravityforms.php:2199
|
238 |
+
#: includes/addon/class-gf-auto-upgrade.php:66
|
239 |
+
#, php-format
|
240 |
+
#@ gravityforms
|
241 |
+
msgid "%sRegister%s your copy of Gravity Forms to receive access to automatic upgrades and support. Need a license key? %sPurchase one now%s."
|
242 |
+
msgstr "برای دریافت خودکار بروزرسانی و پشتیبانی نسخه کپی Gravity Forms را%s ثبت%s کنید..نیاز به کد لایسنس دارید؟ %s خرید %s"
|
243 |
+
|
244 |
+
#: includes/addon/class-gf-addon.php:4340
|
245 |
+
#, php-format
|
246 |
+
#@ gravityforms
|
247 |
+
msgid "%sThis operation deletes ALL %s settings%s. If you continue, you will NOT be able to retrieve these settings."
|
248 |
+
msgstr "%s این عمل همه %s تنظیمات %s را حذف می کند. اگر ادامه بدهید دیگر نمی توانید این تنظیمات را بازیابی کنید."
|
249 |
+
|
250 |
+
#: form_list.php:193
|
251 |
+
#: form_list.php:197
|
252 |
+
#: includes/addon/class-gf-feed-addon.php:1139
|
253 |
+
#: notification.php:1710
|
254 |
+
#@ gravityforms
|
255 |
+
msgid "'Cancel' to stop, 'OK' to delete."
|
256 |
+
msgstr "برای توقف 'Cancel' و برای حذف 'OK' را انتخاب کنید ."
|
257 |
+
|
258 |
+
#: form_list.php:195
|
259 |
+
#@ gravityforms
|
260 |
+
msgid "'Cancel' to stop, 'OK' to reset."
|
261 |
+
msgstr "برای توقف 'Cancel' و برای بازنشانی 'OK' را انتخاب کنید."
|
262 |
+
|
263 |
+
#: entry_list.php:1265
|
264 |
+
#@ gravityforms
|
265 |
+
msgid "1 entry"
|
266 |
+
msgstr "1 پیام ورودی"
|
267 |
+
|
268 |
+
#: includes/addon/class-gf-payment-addon.php:2906
|
269 |
+
#, php-format
|
270 |
+
#@ gravityforms
|
271 |
+
msgid "1 item"
|
272 |
+
msgid_plural "%s items"
|
273 |
+
msgstr[0] "1 آیتم"
|
274 |
+
msgstr[1] "%s آیتم"
|
275 |
+
|
276 |
+
#: form_detail.php:1461
|
277 |
+
#@ gravityforms
|
278 |
+
msgid "1-3 years"
|
279 |
+
msgstr "1-3 سال"
|
280 |
+
|
281 |
+
#: form_detail.php:1461
|
282 |
+
#@ gravityforms
|
283 |
+
msgid "1-6 months"
|
284 |
+
msgstr "1-6 ماه"
|
285 |
+
|
286 |
+
#: form_detail.php:1395
|
287 |
+
#@ gravityforms
|
288 |
+
msgid "12 hour"
|
289 |
+
msgstr "12 ساعته"
|
290 |
+
|
291 |
+
#: form_detail.php:1460
|
292 |
+
#@ gravityforms
|
293 |
+
msgid "2 to 3 times a week"
|
294 |
+
msgstr "2 الی 3 بار در هفته"
|
295 |
+
|
296 |
+
#: form_detail.php:1396
|
297 |
+
#@ gravityforms
|
298 |
+
msgid "24 hour"
|
299 |
+
msgstr "24 ساعته"
|
300 |
+
|
301 |
+
#: common.php:3773
|
302 |
+
#, php-format
|
303 |
+
#@ gravityforms
|
304 |
+
msgid "5 of %d items shown. Edit field to view all"
|
305 |
+
msgstr "5 از %d نمایش داده می شود. برای مشاهده همه فیلد را ویرایش نمایید ."
|
306 |
+
|
307 |
+
#: form_detail.php:1452
|
308 |
+
#@ gravityforms
|
309 |
+
msgid "65 or Above"
|
310 |
+
msgstr "بالای 65"
|
311 |
+
|
312 |
+
#: form_settings.php:1927
|
313 |
+
#@ gravityforms
|
314 |
+
msgid "<em>This page does not exist.</em>"
|
315 |
+
msgstr "<em>این برگه موجود نمی باشد.</em>"
|
316 |
+
|
317 |
+
#: includes/fields/class-gf-field-time.php:117
|
318 |
+
#@ gravityforms
|
319 |
+
msgid "AM"
|
320 |
+
msgstr "ق.ظ"
|
321 |
+
|
322 |
+
#: js.php:910
|
323 |
+
#@ gravityforms
|
324 |
+
msgid "AM/PM"
|
325 |
+
msgstr "قبل از ظهر / بعد از ظهر"
|
326 |
+
|
327 |
+
#: form_detail.php:1465
|
328 |
+
#@ gravityforms
|
329 |
+
msgid "About the Same"
|
330 |
+
msgstr "یکسان"
|
331 |
+
|
332 |
+
#: form_detail.php:1941
|
333 |
+
#: form_detail.php:1964
|
334 |
+
#: form_detail.php:1973
|
335 |
+
#: form_detail.php:1985
|
336 |
+
#: form_settings.php:408
|
337 |
+
#: form_settings.php:435
|
338 |
+
#@ gravityforms
|
339 |
+
msgid "Above inputs"
|
340 |
+
msgstr "بالای فیلدهای ورودی"
|
341 |
+
|
342 |
+
#: includes/locking/class-gf-locking.php:200
|
343 |
+
#@ gravityforms
|
344 |
+
msgid "Accept"
|
345 |
+
msgstr "پذیرفتن"
|
346 |
+
|
347 |
+
#: includes/fields/class-gf-field-fileupload.php:142
|
348 |
+
#, php-format
|
349 |
+
#@ gravityforms
|
350 |
+
msgid "Accepted file types: %s."
|
351 |
+
msgstr "انواع فایل های مجاز : %s."
|
352 |
+
|
353 |
+
#: form_detail.php:1456
|
354 |
+
#@ gravityforms
|
355 |
+
msgid "Accounting/Finance"
|
356 |
+
msgstr "حسابداری/امور مالی"
|
357 |
+
|
358 |
+
#: tooltips.php:103
|
359 |
+
#@ gravityforms
|
360 |
+
msgid "Activate this option to allow users to skip this field and submit the values entered in the associated field. For example, this is useful for shipping and billing address fields."
|
361 |
+
msgstr "فعال سازی این گزینه به کاربران اجازه می دهد که این فیلد را رد کنند و مقادیر وارد شده در فیلدهای مرتبط را ارسال کنند. برای مثال ، برای فیلدهای حمل ونقل و آدرس فاکتور می تواند مفید باشد."
|
362 |
+
|
363 |
+
#: tooltips.php:106
|
364 |
+
#@ gravityforms
|
365 |
+
msgid "Activated by Default"
|
366 |
+
msgstr "به صورت پیش فرض فعال"
|
367 |
+
|
368 |
+
#: form_detail.php:2151
|
369 |
+
#@ gravityforms
|
370 |
+
msgid "Activated by default"
|
371 |
+
msgstr "به صورت پیش فرض فعال"
|
372 |
+
|
373 |
+
#: common.php:3767
|
374 |
+
#: form_list.php:164
|
375 |
+
#: form_list.php:585
|
376 |
+
#: form_settings.php:1033
|
377 |
+
#: form_settings.php:1872
|
378 |
+
#: includes/addon/class-gf-feed-addon.php:1724
|
379 |
+
#: js.php:268
|
380 |
+
#: js.php:328
|
381 |
+
#: notification.php:574
|
382 |
+
#: notification.php:1690
|
383 |
+
#@ gravityforms
|
384 |
+
msgid "Active"
|
385 |
+
msgstr "فعال"
|
386 |
+
|
387 |
+
#: select_columns.php:192
|
388 |
+
#@ gravityforms
|
389 |
+
msgid "Active Columns"
|
390 |
+
msgstr "ستون های فعال"
|
391 |
+
|
392 |
+
#: tooltips.php:97
|
393 |
+
#@ gravityforms
|
394 |
+
msgid "Add Choices to this field. You can mark a choice as selected by default by using the radio buttons on the left."
|
395 |
+
msgstr "گزینه های این فیلد را اضافه کنید. شما می توانید با استفاده از دکمه های رادیویی در سمت راست یک گزینه را به صورت پیش فرض انتخاب شده قرار دهید."
|
396 |
+
|
397 |
+
#: tooltips.php:111
|
398 |
+
#@ gravityforms
|
399 |
+
msgid "Add Choices to this field. You can mark each choice as checked by default by using the radio/checkbox fields on the left."
|
400 |
+
msgstr "گزینه هایی به این فیلد اضافه کنید. می توانید هر گزینه را به وسیله فیلد ها رادیویی یا چک باکس به صورت پیش فرض انتخاب شده تعیین کنید."
|
401 |
+
|
402 |
+
#: includes/addon/class-gf-addon.php:1746
|
403 |
+
#@ gravityforms
|
404 |
+
msgid "Add Custom"
|
405 |
+
msgstr "افزودن دلخواه"
|
406 |
+
|
407 |
+
#: includes/addon/class-gf-addon.php:2135
|
408 |
+
#@ gravityforms
|
409 |
+
msgid "Add Custom Key"
|
410 |
+
msgstr "افزودن کلید سفارشی"
|
411 |
+
|
412 |
+
#: gravityforms.php:2110
|
413 |
+
#@ gravityforms
|
414 |
+
msgid "Add Form"
|
415 |
+
msgstr "افزودن فرم"
|
416 |
+
|
417 |
+
#: gravityforms.php:2110
|
418 |
+
#@ gravityforms
|
419 |
+
msgid "Add Gravity Form"
|
420 |
+
msgstr "افزودن Gravity Form"
|
421 |
+
|
422 |
+
#: form_detail.php:2234
|
423 |
+
#: tooltips.php:46
|
424 |
+
#@ gravityforms
|
425 |
+
msgid "Add Icon URL"
|
426 |
+
msgstr "افزودن URL آیکون"
|
427 |
+
|
428 |
+
#: form_list.php:209
|
429 |
+
#: form_settings.php:1017
|
430 |
+
#: includes/addon/class-gf-feed-addon.php:832
|
431 |
+
#: includes/addon/class-gf-feed-addon.php:946
|
432 |
+
#: notification.php:562
|
433 |
+
#@ gravityforms
|
434 |
+
msgid "Add New"
|
435 |
+
msgstr "افزودن جدید"
|
436 |
+
|
437 |
+
#: entry_detail.php:819
|
438 |
+
#@ gravityforms
|
439 |
+
msgid "Add Note"
|
440 |
+
msgstr "افزودن یادداشت"
|
441 |
+
|
442 |
+
#: entry_list.php:1177
|
443 |
+
#@ gravityforms
|
444 |
+
msgid "Add Star"
|
445 |
+
msgstr "افزودن ستاره"
|
446 |
+
|
447 |
+
#: common.php:3825
|
448 |
+
#@ gravityforms
|
449 |
+
msgid "Add a condition"
|
450 |
+
msgstr "افزودن یک شرط"
|
451 |
+
|
452 |
+
#: includes/fields/class-gf-field-list.php:167
|
453 |
+
#@ gravityforms
|
454 |
+
msgid "Add another row"
|
455 |
+
msgstr "افزودن ردیف دیگر"
|
456 |
+
|
457 |
+
#: entry_list.php:1958
|
458 |
+
#@ gravityforms
|
459 |
+
msgid "Add page break between entries"
|
460 |
+
msgstr "بین پیام های ورودی جداکننده صفحه اضافه نمایید."
|
461 |
+
|
462 |
+
#: gravityforms.php:2958
|
463 |
+
#@ gravityforms
|
464 |
+
msgid "Add-On browser is currently unavailable. Please try again later."
|
465 |
+
msgstr "در حال حاضر جستجوگر Add-On در دسترس نیست. بعداً دوباره سعی کنید."
|
466 |
+
|
467 |
+
#: gravityforms.php:1789
|
468 |
+
#@ gravityforms
|
469 |
+
msgid "Add-Ons"
|
470 |
+
msgstr "افزودنی ها"
|
471 |
+
|
472 |
+
#: includes/addon/class-gf-addon.php:2286
|
473 |
+
#: includes/addon/class-gf-payment-addon.php:1840
|
474 |
+
#: includes/fields/class-gf-field-address.php:36
|
475 |
+
#: js.php:625
|
476 |
+
#@ gravityforms
|
477 |
+
msgid "Address"
|
478 |
+
msgstr "آدرس"
|
479 |
+
|
480 |
+
#: includes/addon/class-gf-addon.php:2287
|
481 |
+
#: includes/addon/class-gf-payment-addon.php:1841
|
482 |
+
#@ gravityforms
|
483 |
+
msgid "Address 2"
|
484 |
+
msgstr "آدرس 2"
|
485 |
+
|
486 |
+
#: form_detail.php:1148
|
487 |
+
#: tooltips.php:98
|
488 |
+
#@ gravityforms
|
489 |
+
msgid "Address Fields"
|
490 |
+
msgstr "فیلدهای آدرس"
|
491 |
+
|
492 |
+
#: includes/fields/class-gf-field-address.php:153
|
493 |
+
#: js.php:627
|
494 |
+
#@ gravityforms
|
495 |
+
msgid "Address Line 2"
|
496 |
+
msgstr "اضافه آدرس"
|
497 |
+
|
498 |
+
#: form_detail.php:1133
|
499 |
+
#: tooltips.php:63
|
500 |
+
#@ gravityforms
|
501 |
+
msgid "Address Type"
|
502 |
+
msgstr "نوع آدرس"
|
503 |
+
|
504 |
+
#: form_detail.php:2060
|
505 |
+
#@ gravityforms
|
506 |
+
msgid "Admin Field Label"
|
507 |
+
msgstr "برچسب فیلد مدیریت"
|
508 |
+
|
509 |
+
#: tooltips.php:90
|
510 |
+
#@ gravityforms
|
511 |
+
msgid "Admin Label"
|
512 |
+
msgstr "برچسب مدیریت"
|
513 |
+
|
514 |
+
#: form_detail.php:2872
|
515 |
+
#: forms_model.php:872
|
516 |
+
#@ gravityforms
|
517 |
+
msgid "Admin Notification"
|
518 |
+
msgstr "اعلان مدیریت"
|
519 |
+
|
520 |
+
#: form_detail.php:2279
|
521 |
+
#@ gravityforms
|
522 |
+
msgid "Admin Only"
|
523 |
+
msgstr "فقط مدیر"
|
524 |
+
|
525 |
+
#: form_detail.php:511
|
526 |
+
#: form_detail.php:1212
|
527 |
+
#@ gravityforms
|
528 |
+
msgid "Advanced"
|
529 |
+
msgstr "پیشرفته"
|
530 |
+
|
531 |
+
#: form_detail.php:768
|
532 |
+
#: form_detail.php:2428
|
533 |
+
#: tooltips.php:145
|
534 |
+
#@ gravityforms
|
535 |
+
msgid "Advanced Fields"
|
536 |
+
msgstr "فیلدهای پیشرفته"
|
537 |
+
|
538 |
+
#: tooltips.php:145
|
539 |
+
#@ gravityforms
|
540 |
+
msgid "Advanced Fields are for specific uses. They enable advanced formatting of regularly used fields such as Name, Email, Address, etc."
|
541 |
+
msgstr "فیلدهای پیشرفته برای استفاده های خاص است .آنها قالب های پیشرفته را برای فیلد هایی مانند نام ، ایمیل ، آدرس و ... فعال می کنند."
|
542 |
+
|
543 |
+
#: includes/templates/edit-shortcode-form.tpl.php:14
|
544 |
+
#: widget.php:144
|
545 |
+
#@ gravityforms
|
546 |
+
msgid "Advanced Options"
|
547 |
+
msgstr "تنظیمات پیشرفته"
|
548 |
+
|
549 |
+
#: form_detail.php:1456
|
550 |
+
#@ gravityforms
|
551 |
+
msgid "Advertising/Public Relations"
|
552 |
+
msgstr "تبلیغات / روابط عمومی"
|
553 |
+
|
554 |
+
#: form_detail.php:1456
|
555 |
+
#@ gravityforms
|
556 |
+
msgid "Aerospace/Aviation"
|
557 |
+
msgstr "هوا و فضا / حمل و نقل هوایی"
|
558 |
+
|
559 |
+
#: form_detail.php:1450
|
560 |
+
#@ gravityforms
|
561 |
+
msgid "Africa"
|
562 |
+
msgstr "آفریقا"
|
563 |
+
|
564 |
+
#: form_detail.php:1452
|
565 |
+
#@ gravityforms
|
566 |
+
msgid "Age"
|
567 |
+
msgstr "سن"
|
568 |
+
|
569 |
+
#: includes/addon/class-gf-results.php:345
|
570 |
+
#: includes/addon/class-gf-results.php:654
|
571 |
+
#@ gravityforms
|
572 |
+
msgid "Aggregate Rank"
|
573 |
+
msgstr "رتبه های جمع شده"
|
574 |
+
|
575 |
+
#: form_detail.php:1464
|
576 |
+
#@ gravityforms
|
577 |
+
msgid "Agree"
|
578 |
+
msgstr "موافق"
|
579 |
+
|
580 |
+
#: form_detail.php:1464
|
581 |
+
#@ gravityforms
|
582 |
+
msgid "Agreement"
|
583 |
+
msgstr "توافق"
|
584 |
+
|
585 |
+
#: js.php:1058
|
586 |
+
#@ gravityforms
|
587 |
+
msgid "Ajax error while adding field"
|
588 |
+
msgstr "در هنگام اضافه کردن فیلد خطای Ajax رخ داده است"
|
589 |
+
|
590 |
+
#: js.php:1130
|
591 |
+
#@ gravityforms
|
592 |
+
msgid "Ajax error while changing input type"
|
593 |
+
msgstr "در هنگام تغییر نوع ورودی ها خطای Ajax رخ داده است"
|
594 |
+
|
595 |
+
#: entry_detail.php:402
|
596 |
+
#: js.php:525
|
597 |
+
#@ gravityforms
|
598 |
+
msgid "Ajax error while deleting field."
|
599 |
+
msgstr "خطای آیجکس در حین حذف فیلد رخ داده است"
|
600 |
+
|
601 |
+
#: js.php:504
|
602 |
+
#@ gravityforms
|
603 |
+
msgid "Ajax error while saving form"
|
604 |
+
msgstr "در هنگام ذخیره سازی فرم خطای Ajax رخ داده است"
|
605 |
+
|
606 |
+
#: export.php:388
|
607 |
+
#@ gravityforms
|
608 |
+
msgid "Ajax error while selecting a form"
|
609 |
+
msgstr "در حین انتخاب یک فرم خطای آیجکس رخ داده است"
|
610 |
+
|
611 |
+
#: entry_list.php:1459
|
612 |
+
#@ gravityforms
|
613 |
+
msgid "Ajax error while setting lead property"
|
614 |
+
msgstr "خطای آیجکس هنگام تنظیم کردن ویژگی ها رخ داده است ."
|
615 |
+
|
616 |
+
#: form_settings.php:1045
|
617 |
+
#@ gravityforms
|
618 |
+
msgid "Ajax error while updating confirmation"
|
619 |
+
msgstr "خطای آیجکس در حین بروزرسانی تاییدیه رخ داده است."
|
620 |
+
|
621 |
+
#: form_list.php:178
|
622 |
+
#@ gravityforms
|
623 |
+
msgid "Ajax error while updating form"
|
624 |
+
msgstr "خطای آیجکس در حین بروزرسانی فرم رخ داده است"
|
625 |
+
|
626 |
+
#: notification.php:586
|
627 |
+
#@ gravityforms
|
628 |
+
msgid "Ajax error while updating notification"
|
629 |
+
msgstr "خطای Ajax در هنگام بروز رسانی اعلان رخ داده است."
|
630 |
+
|
631 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:69
|
632 |
+
#: settings.php:344
|
633 |
+
#: tooltips.php:161
|
634 |
+
#@ gravityforms
|
635 |
+
msgid "Akismet Integration"
|
636 |
+
msgstr "یک پارچه سازی با Akismet"
|
637 |
+
|
638 |
+
#: entry_list.php:1696
|
639 |
+
#, php-format
|
640 |
+
#@ gravityforms
|
641 |
+
msgid "All %s{0}%s entries have been selected."
|
642 |
+
msgstr "همه %s{0}%s پیام ورودی انتخاب شدند."
|
643 |
+
|
644 |
+
#: entry_list.php:1694
|
645 |
+
#, php-format
|
646 |
+
#@ gravityforms
|
647 |
+
msgid "All %s{0}%s entries on this page are selected."
|
648 |
+
msgstr "همه %s{0}%s پیام ورودی این صفحه انتخاب شدند."
|
649 |
+
|
650 |
+
#: form_detail.php:1004
|
651 |
+
#@ gravityforms
|
652 |
+
msgid "All Categories"
|
653 |
+
msgstr "همه دسته بندی ها"
|
654 |
+
|
655 |
+
#: common.php:496
|
656 |
+
#@ gravityforms
|
657 |
+
msgid "All Pricing Fields"
|
658 |
+
msgstr "همه فیلدهای قیمت گذاری"
|
659 |
+
|
660 |
+
#: common.php:426
|
661 |
+
#: js.php:1234
|
662 |
+
#@ gravityforms
|
663 |
+
msgid "All Submitted Fields"
|
664 |
+
msgstr "همه فیلدهای ثبت شده"
|
665 |
+
|
666 |
+
#: form_detail.php:1691
|
667 |
+
#@ gravityforms
|
668 |
+
msgid "All other characters are literal values and will be displayed automatically."
|
669 |
+
msgstr "تمام کاراکترهای دیگر ارزش های تحت اللفظی هستند و به طور خودکار نمایش داده می شود."
|
670 |
+
|
671 |
+
#: form_detail.php:2298
|
672 |
+
#@ gravityforms
|
673 |
+
msgid "Allow field to be populated dynamically"
|
674 |
+
msgstr "اجازه دادن به فیلدها برای ارزیابی پویا"
|
675 |
+
|
676 |
+
#: common.php:677
|
677 |
+
#@ gravityforms
|
678 |
+
msgid "Allowable form fields"
|
679 |
+
msgstr "فیلدهای مجاز"
|
680 |
+
|
681 |
+
#: tooltips.php:78
|
682 |
+
#@ gravityforms
|
683 |
+
msgid "Allowed File Extensions"
|
684 |
+
msgstr "پسوندهای مجاز فایل"
|
685 |
+
|
686 |
+
#: includes/fields/class-gf-field-fileupload.php:175
|
687 |
+
#: includes/fields/class-gf-field-fileupload.php:198
|
688 |
+
#@ gravityforms
|
689 |
+
msgid "Allowed Files"
|
690 |
+
msgstr "فایل های مجاز"
|
691 |
+
|
692 |
+
#: form_detail.php:1307
|
693 |
+
#@ gravityforms
|
694 |
+
msgid "Allowed file extensions"
|
695 |
+
msgstr "پسوندهای مجاز فایل"
|
696 |
+
|
697 |
+
#: tooltips.php:28
|
698 |
+
#@ gravityforms
|
699 |
+
msgid "Allows notification to be sent to different email addresses depending on values selected in the form."
|
700 |
+
msgstr "این امکان را می دهد که اعلان ها بر اساس مقادیری که در فرم انتخاب شده اند به ایمیل ها مختلف ارسال شوند."
|
701 |
+
|
702 |
+
#: entry_detail.php:833
|
703 |
+
#@ gravityforms
|
704 |
+
msgid "Also email this note to"
|
705 |
+
msgstr "همچنین این یادداشت را ایمیل کن به"
|
706 |
+
|
707 |
+
#: entry_detail.php:1153
|
708 |
+
#: includes/addon/class-gf-payment-addon.php:1467
|
709 |
+
#@ gravityforms
|
710 |
+
msgid "Amount"
|
711 |
+
msgstr "مبلغ"
|
712 |
+
|
713 |
+
#: form_settings.php:856
|
714 |
+
#@ gravityforms
|
715 |
+
msgid "Animated transitions"
|
716 |
+
msgstr "انتقال به صورت متحرک سازی"
|
717 |
+
|
718 |
+
#: form_detail.php:1450
|
719 |
+
#@ gravityforms
|
720 |
+
msgid "Antarctica"
|
721 |
+
msgstr "قطب جنوب"
|
722 |
+
|
723 |
+
#: form_settings.php:840
|
724 |
+
#@ gravityforms
|
725 |
+
msgid "Anti-spam honeypot"
|
726 |
+
msgstr "ضد هرزنامه honeypot"
|
727 |
+
|
728 |
+
#: common.php:4093
|
729 |
+
#@ gravityforms
|
730 |
+
msgid "Any form field"
|
731 |
+
msgstr "همه فیلد فرم"
|
732 |
+
|
733 |
+
#: form_detail.php:226
|
734 |
+
#: form_detail.php:508
|
735 |
+
#@ gravityforms
|
736 |
+
msgid "Appearance"
|
737 |
+
msgstr "نمایش"
|
738 |
+
|
739 |
+
#: entry_detail.php:738
|
740 |
+
#: entry_list.php:148
|
741 |
+
#@ gravityforms
|
742 |
+
msgid "Apply"
|
743 |
+
msgstr "اعمال کردن"
|
744 |
+
|
745 |
+
#: includes/addon/class-gf-results.php:306
|
746 |
+
#@ gravityforms
|
747 |
+
msgid "Apply filters"
|
748 |
+
msgstr "اعمال فیلتر ها"
|
749 |
+
|
750 |
+
#: form_detail.php:1459
|
751 |
+
#@ gravityforms
|
752 |
+
msgid "April"
|
753 |
+
msgstr "آوریل"
|
754 |
+
|
755 |
+
#: common.php:3801
|
756 |
+
#@ gravityforms
|
757 |
+
msgid "Are you sure you wish to cancel these changes?"
|
758 |
+
msgstr "آیا از انصراف تغییرات مطمئنید ؟"
|
759 |
+
|
760 |
+
#: common.php:3803
|
761 |
+
#@ gravityforms
|
762 |
+
msgid "Are you sure you wish to delete this confirmation?"
|
763 |
+
msgstr "آیا از حذف این تاییدیه مطمئن هستید؟"
|
764 |
+
|
765 |
+
#: form_list.php:195
|
766 |
+
#@ gravityforms
|
767 |
+
msgid "Are you sure you would like to reset the Views for the selected forms? "
|
768 |
+
msgstr "آیا برای بازنشانی بازدید های این فرم مطمئن هستید؟ "
|
769 |
+
|
770 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:58
|
771 |
+
#@ gravityforms
|
772 |
+
msgid "Are you sure?"
|
773 |
+
msgstr "آیا مطمئن هستید ؟"
|
774 |
+
|
775 |
+
#: form_detail.php:1456
|
776 |
+
#@ gravityforms
|
777 |
+
msgid "Arts/Entertainment/Publishing"
|
778 |
+
msgstr "هنر / سرگرمی / انتشارات"
|
779 |
+
|
780 |
+
#: form_detail.php:1450
|
781 |
+
#@ gravityforms
|
782 |
+
msgid "Asia"
|
783 |
+
msgstr "آسیا"
|
784 |
+
|
785 |
+
#: form_detail.php:1457
|
786 |
+
#@ gravityforms
|
787 |
+
msgid "Associate Degree"
|
788 |
+
msgstr "فوق دیپلم"
|
789 |
+
|
790 |
+
#: form_display.php:1597
|
791 |
+
#@ gravityforms
|
792 |
+
msgid "At least one field must be filled out"
|
793 |
+
msgstr "حداقل یکی از فیلدها باید پر شود"
|
794 |
+
|
795 |
+
#: form_detail.php:1459
|
796 |
+
#@ gravityforms
|
797 |
+
msgid "August"
|
798 |
+
msgstr "اگوست"
|
799 |
+
|
800 |
+
#: includes/webapi/webapi.php:210
|
801 |
+
#@ gravityforms
|
802 |
+
msgid "Authentication"
|
803 |
+
msgstr "تایید هویت"
|
804 |
+
|
805 |
+
#: includes/addon/class-gf-payment-addon.php:1178
|
806 |
+
#, php-format
|
807 |
+
#@ gravityforms
|
808 |
+
msgid "Authorization has been voided. Transaction Id: %s"
|
809 |
+
msgstr "مجوز صادر شد . کد رهگیری : %s ."
|
810 |
+
|
811 |
+
#: notification.php:1057
|
812 |
+
#@ gravityforms
|
813 |
+
msgid "Auto-formatting"
|
814 |
+
msgstr "قالب خودکار"
|
815 |
+
|
816 |
+
#: form_detail.php:1456
|
817 |
+
#@ gravityforms
|
818 |
+
msgid "Automotive"
|
819 |
+
msgstr "خودرو"
|
820 |
+
|
821 |
+
#: includes/addon/class-gf-results.php:349
|
822 |
+
#@ gravityforms
|
823 |
+
msgid "Average Global Score"
|
824 |
+
msgstr "میانگین امتیاز کل"
|
825 |
+
|
826 |
+
#: includes/addon/class-gf-results.php:348
|
827 |
+
#@ gravityforms
|
828 |
+
msgid "Average Row Score"
|
829 |
+
msgstr "میانگین امتیازات سطر ها"
|
830 |
+
|
831 |
+
#: includes/addon/class-gf-results.php:350
|
832 |
+
#: includes/addon/class-gf-results.php:578
|
833 |
+
#@ gravityforms
|
834 |
+
msgid "Average Score"
|
835 |
+
msgstr "میانگین امتیاز"
|
836 |
+
|
837 |
+
#: includes/addon/class-gf-results.php:634
|
838 |
+
#@ gravityforms
|
839 |
+
msgid "Average global score"
|
840 |
+
msgstr "میانگین امتیاز کل"
|
841 |
+
|
842 |
+
#: includes/addon/class-gf-results.php:636
|
843 |
+
#@ gravityforms
|
844 |
+
msgid "Average score"
|
845 |
+
msgstr "میانگین امتیاز"
|
846 |
+
|
847 |
+
#: form_detail.php:1457
|
848 |
+
#@ gravityforms
|
849 |
+
msgid "Bachelor's Degree"
|
850 |
+
msgstr "کارشناسی ( لیسانس )"
|
851 |
+
|
852 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step.php:106
|
853 |
+
#@ gravityforms
|
854 |
+
msgid "Back"
|
855 |
+
msgstr "بازگشت"
|
856 |
+
|
857 |
+
#: form_detail.php:281
|
858 |
+
#: form_detail.php:839
|
859 |
+
#@ gravityforms
|
860 |
+
msgid "Background Color"
|
861 |
+
msgstr "رنگ پس زمینه"
|
862 |
+
|
863 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:94
|
864 |
+
#@ gravityforms
|
865 |
+
msgid "Background Updates"
|
866 |
+
msgstr "بروزرسانی خودکار"
|
867 |
+
|
868 |
+
#: settings.php:386
|
869 |
+
#@ gravityforms
|
870 |
+
msgid "Background updates"
|
871 |
+
msgstr "بروزرسانی خودکار"
|
872 |
+
|
873 |
+
#: form_detail.php:1573
|
874 |
+
#: form_display.php:2347
|
875 |
+
#@ gravityforms
|
876 |
+
msgid "Bad"
|
877 |
+
msgstr "بد"
|
878 |
+
|
879 |
+
#: includes/webapi/webapi.php:1794
|
880 |
+
#@ gravityforms
|
881 |
+
msgid "Bad request"
|
882 |
+
msgstr "درخواست نادرست"
|
883 |
+
|
884 |
+
#: form_detail.php:1456
|
885 |
+
#@ gravityforms
|
886 |
+
msgid "Banking/Mortgage"
|
887 |
+
msgstr "بانکداری / رهن"
|
888 |
+
|
889 |
+
#: tooltips.php:140
|
890 |
+
#@ gravityforms
|
891 |
+
msgid "Base Price"
|
892 |
+
msgstr "قیمت پایه"
|
893 |
+
|
894 |
+
#: form_detail.php:1941
|
895 |
+
#: form_detail.php:1963
|
896 |
+
#: form_detail.php:1973
|
897 |
+
#: form_detail.php:1984
|
898 |
+
#: form_settings.php:407
|
899 |
+
#: form_settings.php:434
|
900 |
+
#@ gravityforms
|
901 |
+
msgid "Below inputs"
|
902 |
+
msgstr "زیر فیلدهای ورودی"
|
903 |
+
|
904 |
+
#: includes/addon/class-gf-payment-addon.php:1571
|
905 |
+
#: includes/addon/class-gf-payment-addon.php:1573
|
906 |
+
#@ gravityforms
|
907 |
+
msgid "Billing Cycle"
|
908 |
+
msgstr "دوره صدور حسابداری"
|
909 |
+
|
910 |
+
#: includes/addon/class-gf-payment-addon.php:1635
|
911 |
+
#: includes/addon/class-gf-payment-addon.php:1638
|
912 |
+
#@ gravityforms
|
913 |
+
msgid "Billing Information"
|
914 |
+
msgstr "اطلاعات صورت حساب"
|
915 |
+
|
916 |
+
#: tooltips.php:32
|
917 |
+
#@ gravityforms
|
918 |
+
msgid "Blind Carbon Copy Addresses"
|
919 |
+
msgstr "BCC"
|
920 |
+
|
921 |
+
#: form_detail.php:263
|
922 |
+
#@ gravityforms
|
923 |
+
msgid "Blue"
|
924 |
+
msgstr "آبی"
|
925 |
+
|
926 |
+
#: includes/fields/class-gf-field-post-content.php:12
|
927 |
+
#@ gravityforms
|
928 |
+
msgid "Body"
|
929 |
+
msgstr "متن نوشته"
|
930 |
+
|
931 |
+
#: form_detail.php:1439
|
932 |
+
#@ gravityforms
|
933 |
+
msgid "Bulk Add / Predefined Choices"
|
934 |
+
msgstr "افزودن گروهی/ انتخاب ها پیش تعیین شده"
|
935 |
+
|
936 |
+
#: print-entry.php:127
|
937 |
+
#@ gravityforms
|
938 |
+
msgid "Bulk Print"
|
939 |
+
msgstr "چاپ دست جمعی"
|
940 |
+
|
941 |
+
#: form_detail.php:1456
|
942 |
+
#@ gravityforms
|
943 |
+
msgid "Business Development"
|
944 |
+
msgstr "توسعه کسب و کار"
|
945 |
+
|
946 |
+
#: form_detail.php:1456
|
947 |
+
#@ gravityforms
|
948 |
+
msgid "Business Opportunity"
|
949 |
+
msgstr "فرصت های تجاری"
|
950 |
+
|
951 |
+
#: form_settings.php:547
|
952 |
+
#@ gravityforms
|
953 |
+
msgid "Button conditional logic"
|
954 |
+
msgstr "منطق شرطی دکمه"
|
955 |
+
|
956 |
+
#: form_settings.php:529
|
957 |
+
#@ gravityforms
|
958 |
+
msgid "Button image path"
|
959 |
+
msgstr "مسیر تصویر عکس"
|
960 |
+
|
961 |
+
#: form_settings.php:515
|
962 |
+
#@ gravityforms
|
963 |
+
msgid "Button text"
|
964 |
+
msgstr "متن دکمه"
|
965 |
+
|
966 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:61
|
967 |
+
#@ gravityforms
|
968 |
+
msgid "By disabling background updates your site may not get critical bug fixes and security enhancements. We only recommend doing this if you are experienced at managing a WordPress site and accept the risks involved in manually keeping your WordPress site updated."
|
969 |
+
msgstr "با غیرفعال کردن بروزرسانی خودکار ممکن است سایت شما رفع باگ های اساسی و ارتقاهای امنیتی را دریافت نکند. توصیه می شود فقط در صورتی که تجربه مدیریت یک سایت وردپرسی را دارید و خطر بروزرسانی سایت به صورت دستی را می پذیرید این کار را انجام دهید."
|
970 |
+
|
971 |
+
#: tooltips.php:114
|
972 |
+
#@ gravityforms
|
973 |
+
msgid "By selecting this option, the <a href='http://harvesthq.github.com/chosen/' target='_blank'>Chosen</a> jQuery script will be applied to this field, enabling search capabilities to Drop Down fields and a more user-friendly interface for Multi Select fields."
|
974 |
+
msgstr "با انتخاب این گزینه <a href='http://harvesthq.github.com/chosen/' target='_blank'></a>اسکریپت جی کوئری بر روی این فیلد اعمال می شود و امکان فعال سازی جستجو در منوهای کشویی را اضافه می کند و در فیلدهای چند انتخابی رابط کاربر پسندتری را اضافه می کند. "
|
975 |
+
|
976 |
+
#: includes/fields/class-gf-field-captcha.php:13
|
977 |
+
#: js.php:736
|
978 |
+
#@ gravityforms
|
979 |
+
msgid "CAPTCHA"
|
980 |
+
msgstr "کد امنیتی"
|
981 |
+
|
982 |
+
#: tooltips.php:57
|
983 |
+
#@ gravityforms
|
984 |
+
msgid "CAPTCHA Type"
|
985 |
+
msgstr "نوع CAPTCHA"
|
986 |
+
|
987 |
+
#: form_detail.php:320
|
988 |
+
#: form_settings.php:463
|
989 |
+
#: tooltips.php:109
|
990 |
+
#@ gravityforms
|
991 |
+
msgid "CSS Class Name"
|
992 |
+
msgstr "نام کلاس CSS"
|
993 |
+
|
994 |
+
#: form_detail.php:571
|
995 |
+
#@ gravityforms
|
996 |
+
msgid "Calculation"
|
997 |
+
msgstr "محاسباتی"
|
998 |
+
|
999 |
+
#: form_detail.php:1254
|
1000 |
+
#@ gravityforms
|
1001 |
+
msgid "Calendar Icon"
|
1002 |
+
msgstr "آیکون تقویم"
|
1003 |
+
|
1004 |
+
#: gravityforms.php:4853
|
1005 |
+
#@ gravityforms
|
1006 |
+
msgid "Can't find your form? Make sure it is active."
|
1007 |
+
msgstr "نمی توانید فرمتان را پیدا کنید؟ آیا از فعال بودن آن اطمینان دارید؟"
|
1008 |
+
|
1009 |
+
#: includes/fields/class-gf-field-address.php:415
|
1010 |
+
#@ gravityforms
|
1011 |
+
msgid "Canadian"
|
1012 |
+
msgstr "کانادا"
|
1013 |
+
|
1014 |
+
#: form_detail.php:1449
|
1015 |
+
#@ gravityforms
|
1016 |
+
msgid "Canadian Province/Territory"
|
1017 |
+
msgstr "استان/منطقه کانادا"
|
1018 |
+
|
1019 |
+
#: common.php:4409
|
1020 |
+
#: entry_detail.php:1312
|
1021 |
+
#: form_detail.php:1498
|
1022 |
+
#: form_detail.php:1508
|
1023 |
+
#: includes/addon/class-gf-results.php:325
|
1024 |
+
#: includes/locking/class-gf-locking.php:201
|
1025 |
+
#: includes/templates/edit-shortcode-form.tpl.php:22
|
1026 |
+
#: select_columns.php:245
|
1027 |
+
#@ gravityforms
|
1028 |
+
msgid "Cancel"
|
1029 |
+
msgstr "انصراف"
|
1030 |
+
|
1031 |
+
#: includes/addon/class-gf-payment-addon.php:2746
|
1032 |
+
#@ gravityforms
|
1033 |
+
msgid "Cancel Subscription"
|
1034 |
+
msgstr "لغو کردن اشتراک"
|
1035 |
+
|
1036 |
+
#: common.php:4410
|
1037 |
+
#@ gravityforms
|
1038 |
+
msgid "Cancel this upload"
|
1039 |
+
msgstr "انصراف از بارگذاری"
|
1040 |
+
|
1041 |
+
#: form_list.php:140
|
1042 |
+
#@ gravityforms
|
1043 |
+
msgid "Cancel to stop, OK to delete."
|
1044 |
+
msgstr "برای توقف Cancel و برای حذف OK را انتخاب کنید."
|
1045 |
+
|
1046 |
+
#: includes/addon/class-gf-payment-addon.php:2493
|
1047 |
+
#@ gravityforms
|
1048 |
+
msgid "Canceled"
|
1049 |
+
msgstr "لغو شده "
|
1050 |
+
|
1051 |
+
#: common.php:4411
|
1052 |
+
#@ gravityforms
|
1053 |
+
msgid "Cancelled"
|
1054 |
+
msgstr "لغو شده"
|
1055 |
+
|
1056 |
+
#: form_detail.php:1105
|
1057 |
+
#: includes/fields/class-gf-field-post-image.php:79
|
1058 |
+
#: includes/fields/class-gf-field-post-image.php:125
|
1059 |
+
#@ gravityforms
|
1060 |
+
msgid "Caption"
|
1061 |
+
msgstr "شرح عکس"
|
1062 |
+
|
1063 |
+
#: form_detail.php:1637
|
1064 |
+
#@ gravityforms
|
1065 |
+
msgid "Card Icon Style"
|
1066 |
+
msgstr "استایل آیکون کارت"
|
1067 |
+
|
1068 |
+
#: includes/fields/class-gf-field-creditcard.php:176
|
1069 |
+
#: js.php:636
|
1070 |
+
#@ gravityforms
|
1071 |
+
msgid "Card Number"
|
1072 |
+
msgstr "شماره کارت"
|
1073 |
+
|
1074 |
+
#: js.php:641
|
1075 |
+
#@ gravityforms
|
1076 |
+
msgid "Card Type"
|
1077 |
+
msgstr "نوع کارت"
|
1078 |
+
|
1079 |
+
#: includes/fields/class-gf-field-creditcard.php:258
|
1080 |
+
#: js.php:642
|
1081 |
+
#: js.php:949
|
1082 |
+
#@ gravityforms
|
1083 |
+
msgid "Cardholder Name"
|
1084 |
+
msgstr "نام صاحب کارت"
|
1085 |
+
|
1086 |
+
#: form_detail.php:998
|
1087 |
+
#: includes/fields/class-gf-field-post-category.php:12
|
1088 |
+
#@ gravityforms
|
1089 |
+
msgid "Category"
|
1090 |
+
msgstr "دسته بندی"
|
1091 |
+
|
1092 |
+
#: includes/webapi/webapi.php:273
|
1093 |
+
#, php-format
|
1094 |
+
#@ gravityforms
|
1095 |
+
msgid "Change the %sWordPress Permalink Settings%s from default to any of the other options to get started."
|
1096 |
+
msgstr "برای شروع %s تنظیمات پیوندهای یکتا وردپرس %s را از حالت پیش فرض به حالت های دیگر تغییر دهید."
|
1097 |
+
|
1098 |
+
#: tooltips.php:165
|
1099 |
+
#@ gravityforms
|
1100 |
+
msgid "Check this box if you would like the progress bar to display with the confirmation text."
|
1101 |
+
msgstr "اگر می خواهید نوار پیشرفت همراه با نوشته تاییدیه نمایش داده شود این گزینه را انتخاب کنید."
|
1102 |
+
|
1103 |
+
#: tooltips.php:70
|
1104 |
+
#@ gravityforms
|
1105 |
+
msgid "Check this box to prevent Province field from being displayed in the form."
|
1106 |
+
msgstr "برای عدم نمایش فیلد شهر این گزینه را انتخاب کنید."
|
1107 |
+
|
1108 |
+
#: tooltips.php:69
|
1109 |
+
#@ gravityforms
|
1110 |
+
msgid "Check this box to prevent the State field from being displayed in the form."
|
1111 |
+
msgstr "برای عدم نمایش فیلد استان این گزینه را انتخاب کنید."
|
1112 |
+
|
1113 |
+
#: tooltips.php:71
|
1114 |
+
#@ gravityforms
|
1115 |
+
msgid "Check this box to prevent the State/Province/Region from being displayed in the form."
|
1116 |
+
msgstr "برای عدم نمایش استان / شهر / ناحیه این گزینه را انتخاب کنید."
|
1117 |
+
|
1118 |
+
#: tooltips.php:68
|
1119 |
+
#@ gravityforms
|
1120 |
+
msgid "Check this box to prevent the extra address input (Address Line 2) from being displayed in the form."
|
1121 |
+
msgstr "برای عدم نمایش فیلد اضافه آدرس این گزینه را انتخاب کنید."
|
1122 |
+
|
1123 |
+
#: tooltips.php:74
|
1124 |
+
#@ gravityforms
|
1125 |
+
msgid "Check this box to prevent this field from being displayed in a non-secure page (i.e. not https://). It will redirect the page to the same URL, but starting with https:// instead. This option requires a properly configured SSL certificate."
|
1126 |
+
msgstr "برای جلوگیری از نمایش حالت بدون امنیت ( یعنی بدون https://) این گزینه را فعال کنید. با این کار صفحاتی با آدرس مشابه با https:// شروع می شوند. این گزینه نیاز به گواهی نامه SSl دارد. "
|
1127 |
+
|
1128 |
+
#: tooltips.php:115
|
1129 |
+
#@ gravityforms
|
1130 |
+
msgid "Check this option to add a text input as the final choice of your radio button field. This allows the user to specify a value that is not a predefined choice."
|
1131 |
+
msgstr "برای اضافه کردن یک گزینه نوشتاری به فیلد دکمه های رادیویی این گزینه را انتخاب کنید. این کار به کاربران امکان می دهد اگر گزینه مورد نظر کاربر تعریف نشده باشد خودشان مقداری را وارد کنند. "
|
1132 |
+
|
1133 |
+
#: tooltips.php:37
|
1134 |
+
#@ gravityforms
|
1135 |
+
msgid "Check this option to enable a sliding animation when displaying/hiding conditional logic fields."
|
1136 |
+
msgstr "برای فعال سازی نمایش متحرک در هنگام نمایش یا عدم نمایش منطق شرطی این گزینه را انتخاب کنید."
|
1137 |
+
|
1138 |
+
#: tooltips.php:138
|
1139 |
+
#@ gravityforms
|
1140 |
+
msgid "Check this option to enable data to be passed to the form and pre-populate this field dynamically. Data can be passed via Query Strings, Shortcode and/or Hooks."
|
1141 |
+
msgstr "برای فعال کردن ارسال اطلاعات و قرار دادن اطلاعات از قبل به صورت داینامیک این گزینه را انتخاب کنید. اطلاعات می توانند با Query Strings, Shortcode وHooks ارسال شوند."
|
1142 |
+
|
1143 |
+
#: tooltips.php:132
|
1144 |
+
#@ gravityforms
|
1145 |
+
msgid "Check this option to format and insert merge tags into the Post Content."
|
1146 |
+
msgstr "برای قالب بندی و قرار دادن برچسب های ادغام در محتوای نوشته این گزینه را انتخاب کنید."
|
1147 |
+
|
1148 |
+
#: tooltips.php:133
|
1149 |
+
#@ gravityforms
|
1150 |
+
msgid "Check this option to format and insert merge tags into the Post Title."
|
1151 |
+
msgstr "برای قالب بندی و قرار دادن برچسب های ادغام در عنوان نوشته این گزینه را انتخاب کنید."
|
1152 |
+
|
1153 |
+
#: tooltips.php:116
|
1154 |
+
#@ gravityforms
|
1155 |
+
msgid "Check this option to require a user to be logged in to view this form."
|
1156 |
+
msgstr "برای اینکه فقط کاربران وارد شده بتوانند این فرم را ببینند این گزینه را انتخاب کنید."
|
1157 |
+
|
1158 |
+
#: tooltips.php:137
|
1159 |
+
#@ gravityforms
|
1160 |
+
msgid "Check this option to set this image as the post's Featured Image."
|
1161 |
+
msgstr "برای قرار دادن این تصویر به عنوان تصویر شاخص این گزینه را انتخاب کنید."
|
1162 |
+
|
1163 |
+
#: tooltips.php:112
|
1164 |
+
#@ gravityforms
|
1165 |
+
msgid "Check this option to specify a value for each choice. Choice values are not displayed to the user viewing the form, but are accessible to administrators when viewing the entry."
|
1166 |
+
msgstr "برای مشخص کردن مقدار هر انتخاب این این گزینه را انتخاب کنید.. مقادیر انتخاب ها به کاربرانی که فرم را می بینند نمایش داده نمی شود اما مدیران می تواننند این مقادیر را ببینند."
|
1167 |
+
|
1168 |
+
#: includes/addon/class-gf-feed-addon.php:1619
|
1169 |
+
#@ gravityforms
|
1170 |
+
msgid "Checkbox"
|
1171 |
+
msgstr "چک باکس"
|
1172 |
+
|
1173 |
+
#: form_detail.php:619
|
1174 |
+
#: form_detail.php:764
|
1175 |
+
#: form_detail.php:791
|
1176 |
+
#: form_detail.php:987
|
1177 |
+
#: includes/fields/class-gf-field-checkbox.php:13
|
1178 |
+
#@ gravityforms
|
1179 |
+
msgid "Checkboxes"
|
1180 |
+
msgstr "چک باکس"
|
1181 |
+
|
1182 |
+
#: includes/addon/class-gf-results.php:508
|
1183 |
+
#@ gravityforms
|
1184 |
+
msgid "Choice"
|
1185 |
+
msgstr "انتخاب"
|
1186 |
+
|
1187 |
+
#: form_detail.php:1431
|
1188 |
+
#@ gravityforms
|
1189 |
+
msgid "Choices"
|
1190 |
+
msgstr "انتخاب ها"
|
1191 |
+
|
1192 |
+
#: includes/addon/class-gf-addon.php:2288
|
1193 |
+
#: includes/addon/class-gf-payment-addon.php:1842
|
1194 |
+
#: includes/fields/class-gf-field-address.php:159
|
1195 |
+
#: js.php:627
|
1196 |
+
#@ gravityforms
|
1197 |
+
msgid "City"
|
1198 |
+
msgstr "شهر"
|
1199 |
+
|
1200 |
+
#: includes/addon/class-gf-results.php:309
|
1201 |
+
#@ gravityforms
|
1202 |
+
msgid "Clear"
|
1203 |
+
msgstr "پاک کردن"
|
1204 |
+
|
1205 |
+
#: entry_list.php:1697
|
1206 |
+
#@ gravityforms
|
1207 |
+
msgid "Clear selection"
|
1208 |
+
msgstr "پاک کردن انتخاب ها"
|
1209 |
+
|
1210 |
+
#: form_detail.php:1456
|
1211 |
+
#@ gravityforms
|
1212 |
+
msgid "Clerical/Administrative"
|
1213 |
+
msgstr "دفتری / اداری"
|
1214 |
+
|
1215 |
+
#: form_detail.php:372
|
1216 |
+
#@ gravityforms
|
1217 |
+
msgid "Click on the edit link to configure the various field options"
|
1218 |
+
msgstr "برای تنظیمات فیلدهای مختلف روی ویرایش کلیک کنید."
|
1219 |
+
|
1220 |
+
#: tooltips.php:153
|
1221 |
+
#@ gravityforms
|
1222 |
+
msgid "Click the Choose File button to upload a Gravity Forms export file from your computer."
|
1223 |
+
msgstr "برای بارگذاری فایل خروجی Gravity Forms از کامپیوترتان کلیک کنید."
|
1224 |
+
|
1225 |
+
#: form_detail.php:360
|
1226 |
+
#@ gravityforms
|
1227 |
+
msgid "Click to Add A Field"
|
1228 |
+
msgstr "برای افزودن فیلد کلیک کنید."
|
1229 |
+
|
1230 |
+
#: entry_detail.php:1233
|
1231 |
+
#@ gravityforms
|
1232 |
+
msgid "Click to edit post"
|
1233 |
+
msgstr "برای ویرایش نوشته کلیک نمایید"
|
1234 |
+
|
1235 |
+
#: includes/fields/class-gf-field-multiselect.php:89
|
1236 |
+
#@ gravityforms
|
1237 |
+
msgid "Click to select..."
|
1238 |
+
msgstr "برای انتخاب کلیک کنید..."
|
1239 |
+
|
1240 |
+
#: includes/fields/class-gf-field-fileupload.php:424
|
1241 |
+
#: includes/fields/class-gf-field-fileupload.php:445
|
1242 |
+
#: includes/fields/class-gf-field-post-image.php:106
|
1243 |
+
#: includes/fields/class-gf-field-post-image.php:130
|
1244 |
+
#@ gravityforms
|
1245 |
+
msgid "Click to view"
|
1246 |
+
msgstr "برای نمایش کلیک کنید"
|
1247 |
+
|
1248 |
+
#: entry_list.php:1934
|
1249 |
+
#@ gravityforms
|
1250 |
+
msgid "Close Window"
|
1251 |
+
msgstr "بستن پنجره"
|
1252 |
+
|
1253 |
+
#: js.php:411
|
1254 |
+
#@ gravityforms
|
1255 |
+
msgid "Column 1"
|
1256 |
+
msgstr "ستون 1"
|
1257 |
+
|
1258 |
+
#: js.php:411
|
1259 |
+
#@ gravityforms
|
1260 |
+
msgid "Column 2"
|
1261 |
+
msgstr "ستون 2"
|
1262 |
+
|
1263 |
+
#: js.php:411
|
1264 |
+
#@ gravityforms
|
1265 |
+
msgid "Column 3"
|
1266 |
+
msgstr "ستون 3"
|
1267 |
+
|
1268 |
+
#: form_detail.php:1465
|
1269 |
+
#@ gravityforms
|
1270 |
+
msgid "Comparison"
|
1271 |
+
msgstr "مقایسه"
|
1272 |
+
|
1273 |
+
#: js.php:119
|
1274 |
+
#@ gravityforms
|
1275 |
+
msgid "Completed"
|
1276 |
+
msgstr "تکمیل شد"
|
1277 |
+
|
1278 |
+
#: form_detail.php:308
|
1279 |
+
#@ gravityforms
|
1280 |
+
msgid "Completion Text"
|
1281 |
+
msgstr "متن تکمیل"
|
1282 |
+
|
1283 |
+
#: export.php:512
|
1284 |
+
#: form_settings.php:1366
|
1285 |
+
#: includes/addon/class-gf-payment-addon.php:1654
|
1286 |
+
#: includes/addon/class-gf-payment-addon.php:1656
|
1287 |
+
#: notification.php:1077
|
1288 |
+
#: tooltips.php:113
|
1289 |
+
#: tooltips.php:127
|
1290 |
+
#: tooltips.php:150
|
1291 |
+
#@ gravityforms
|
1292 |
+
msgid "Conditional Logic"
|
1293 |
+
msgstr "منطق شرطی"
|
1294 |
+
|
1295 |
+
#: common.php:3786
|
1296 |
+
#@ gravityforms
|
1297 |
+
msgctxt "Conditional Logic"
|
1298 |
+
msgid "All"
|
1299 |
+
msgstr "همه"
|
1300 |
+
|
1301 |
+
#: common.php:3787
|
1302 |
+
#@ gravityforms
|
1303 |
+
msgctxt "Conditional Logic"
|
1304 |
+
msgid "Any"
|
1305 |
+
msgstr "حداقل یکی"
|
1306 |
+
|
1307 |
+
#: entry_detail.php:1342
|
1308 |
+
#: entry_list.php:1898
|
1309 |
+
#@ gravityforms
|
1310 |
+
msgid "Configure Notifications"
|
1311 |
+
msgstr "پیکربندی ایمیل اعلان"
|
1312 |
+
|
1313 |
+
#: notification.php:795
|
1314 |
+
#@ gravityforms
|
1315 |
+
msgid "Configure Routing"
|
1316 |
+
msgstr "روش پیکربندی"
|
1317 |
+
|
1318 |
+
#: includes/fields/class-gf-field-email.php:94
|
1319 |
+
#: js.php:924
|
1320 |
+
#@ gravityforms
|
1321 |
+
msgid "Confirm Email"
|
1322 |
+
msgstr "تایید ایمیل"
|
1323 |
+
|
1324 |
+
#: includes/fields/class-gf-field-password.php:108
|
1325 |
+
#: js.php:934
|
1326 |
+
#@ gravityforms
|
1327 |
+
msgid "Confirm Password"
|
1328 |
+
msgstr "تایید کلمه عبور"
|
1329 |
+
|
1330 |
+
#: tooltips.php:48
|
1331 |
+
#@ gravityforms
|
1332 |
+
msgid "Confirmation Message Text"
|
1333 |
+
msgstr "متن پیام تاییدیه"
|
1334 |
+
|
1335 |
+
#: form_settings.php:1241
|
1336 |
+
#@ gravityforms
|
1337 |
+
msgid "Confirmation Name"
|
1338 |
+
msgstr "نام تاییدیه"
|
1339 |
+
|
1340 |
+
#: form_settings.php:1251
|
1341 |
+
#@ gravityforms
|
1342 |
+
msgid "Confirmation Type"
|
1343 |
+
msgstr "نوع تاییدیه"
|
1344 |
+
|
1345 |
+
#: form_settings.php:1583
|
1346 |
+
#@ gravityforms
|
1347 |
+
msgid "Confirmation deleted."
|
1348 |
+
msgstr "تاییدیه حذف شد."
|
1349 |
+
|
1350 |
+
#: form_settings.php:1563
|
1351 |
+
#, php-format
|
1352 |
+
#@ gravityforms
|
1353 |
+
msgid "Confirmation saved successfully. %sBack to confirmations.%s"
|
1354 |
+
msgstr "تاییدیه به خوبی ذخیره شد . %sبازگشت به تاییدیه ها%s"
|
1355 |
+
|
1356 |
+
#: form_settings.php:1011
|
1357 |
+
#: form_settings.php:1016
|
1358 |
+
#: form_settings.php:1115
|
1359 |
+
#: form_settings.php:1476
|
1360 |
+
#@ gravityforms
|
1361 |
+
msgid "Confirmations"
|
1362 |
+
msgstr "تاییدیه ها"
|
1363 |
+
|
1364 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-complete.php:12
|
1365 |
+
#@ gravityforms
|
1366 |
+
msgid "Congratulations! Click the 'Create A Form' button to get started."
|
1367 |
+
msgstr "تبریک! برای شروع بر روی دکمه ' ایجاد فرم ' کلیک کنید."
|
1368 |
+
|
1369 |
+
#: form_detail.php:1456
|
1370 |
+
#@ gravityforms
|
1371 |
+
msgid "Construction/Facilities"
|
1372 |
+
msgstr "ساخت و ساز / تسهیلات"
|
1373 |
+
|
1374 |
+
#: form_detail.php:1456
|
1375 |
+
#@ gravityforms
|
1376 |
+
msgid "Consumer Goods"
|
1377 |
+
msgstr "محصولات قابل فروش"
|
1378 |
+
|
1379 |
+
#: widget.php:116
|
1380 |
+
#@ gravityforms
|
1381 |
+
msgid "Contact Us"
|
1382 |
+
msgstr "تماس با ما"
|
1383 |
+
|
1384 |
+
#: form_detail.php:657
|
1385 |
+
#: form_settings.php:1800
|
1386 |
+
#: tooltips.php:139
|
1387 |
+
#@ gravityforms
|
1388 |
+
msgid "Content"
|
1389 |
+
msgstr "محتوا"
|
1390 |
+
|
1391 |
+
#: form_detail.php:1450
|
1392 |
+
#@ gravityforms
|
1393 |
+
msgid "Continents"
|
1394 |
+
msgstr "قاره ها"
|
1395 |
+
|
1396 |
+
#: form_detail.php:491
|
1397 |
+
#@ gravityforms
|
1398 |
+
msgid "Continue Editing this Form"
|
1399 |
+
msgstr "ادامه ویرایش این فرم"
|
1400 |
+
|
1401 |
+
#: form_detail.php:491
|
1402 |
+
#@ gravityforms
|
1403 |
+
msgid "Continue editing this form"
|
1404 |
+
msgstr "ادامه ویرایش این فرم"
|
1405 |
+
|
1406 |
+
#: form_detail.php:1455
|
1407 |
+
#@ gravityforms
|
1408 |
+
msgid "Contract"
|
1409 |
+
msgstr "قراردادی"
|
1410 |
+
|
1411 |
+
#: form_list.php:518
|
1412 |
+
#@ gravityforms
|
1413 |
+
msgid "Conversion"
|
1414 |
+
msgstr "درصد تبدیل"
|
1415 |
+
|
1416 |
+
#: tooltips.php:162
|
1417 |
+
#@ gravityforms
|
1418 |
+
msgid "Conversion is the percentage of form views that generated an entry. If a form was viewed twice, and one entry was generated, the conversion will be 50%."
|
1419 |
+
msgstr "درصد تبدیل تعداد نمایش هایی است که ورودی ایجاد می کند. اگر یک فرم دوبار نمایش داده شود و یک ورودی ایجاد شود درصد تبدیل 50% خواهد بود "
|
1420 |
+
|
1421 |
+
#: forms_model.php:1407
|
1422 |
+
#: includes/addon/class-gf-feed-addon.php:703
|
1423 |
+
#, php-format
|
1424 |
+
#@ gravityforms
|
1425 |
+
msgid "Copy %d"
|
1426 |
+
msgstr "کپی %d"
|
1427 |
+
|
1428 |
+
#: forms_model.php:1405
|
1429 |
+
#: includes/addon/class-gf-feed-addon.php:701
|
1430 |
+
#@ gravityforms
|
1431 |
+
msgid "Copy 1"
|
1432 |
+
msgstr "کپی 1"
|
1433 |
+
|
1434 |
+
#: form_detail.php:1447
|
1435 |
+
#@ gravityforms
|
1436 |
+
msgid "Countries"
|
1437 |
+
msgstr "کشورها"
|
1438 |
+
|
1439 |
+
#: includes/addon/class-gf-addon.php:2291
|
1440 |
+
#: includes/addon/class-gf-payment-addon.php:1845
|
1441 |
+
#: includes/fields/class-gf-field-address.php:165
|
1442 |
+
#: js.php:628
|
1443 |
+
#@ gravityforms
|
1444 |
+
msgid "Country"
|
1445 |
+
msgstr "کشور"
|
1446 |
+
|
1447 |
+
#: form_detail.php:1710
|
1448 |
+
#@ gravityforms
|
1449 |
+
msgid "Course Code"
|
1450 |
+
msgstr "کد دوره"
|
1451 |
+
|
1452 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-complete.php:23
|
1453 |
+
#@ gravityforms
|
1454 |
+
msgid "Create A Form"
|
1455 |
+
msgstr "ایجاد فرم"
|
1456 |
+
|
1457 |
+
#: form_list.php:111
|
1458 |
+
#@ gravityforms
|
1459 |
+
msgid "Create Form"
|
1460 |
+
msgstr "ایجاد فرم"
|
1461 |
+
|
1462 |
+
#: form_list.php:306
|
1463 |
+
#@ gravityforms
|
1464 |
+
msgid "Create a New Form"
|
1465 |
+
msgstr "یک فرم جدید بسازید"
|
1466 |
+
|
1467 |
+
#: form_detail.php:1050
|
1468 |
+
#: form_detail.php:1068
|
1469 |
+
#: form_detail.php:1082
|
1470 |
+
#@ gravityforms
|
1471 |
+
msgid "Create content template"
|
1472 |
+
msgstr "ایجاد قالب محتوا"
|
1473 |
+
|
1474 |
+
#: tooltips.php:126
|
1475 |
+
#@ gravityforms
|
1476 |
+
msgid "Create rules to dynamically display or hide the page's Next Button based on values from another field."
|
1477 |
+
msgstr "برای نمایش یا عدم نمایش دکمه بعدی صفحه براساس مقادیر یک فیلد دیگر، قوانین را ایجاد کنید."
|
1478 |
+
|
1479 |
+
#: tooltips.php:127
|
1480 |
+
#@ gravityforms
|
1481 |
+
msgid "Create rules to dynamically display or hide the submit button based on values from another field."
|
1482 |
+
msgstr "برای نمایش یا عدم نمایش دکمه ارسال براساس مقادیر یک فیلد دیگر، قوانین را ایجاد کنید."
|
1483 |
+
|
1484 |
+
#: tooltips.php:113
|
1485 |
+
#@ gravityforms
|
1486 |
+
msgid "Create rules to dynamically display or hide this field based on values from another field."
|
1487 |
+
msgstr "برای نمایش یا عدم نمایش این فیلد براساس مقادیر یک فیلد دیگر قوانین را ایجاد کنید."
|
1488 |
+
|
1489 |
+
#: tooltips.php:118
|
1490 |
+
#@ gravityforms
|
1491 |
+
msgid "Create rules to dynamically display or hide this page based on values from another field."
|
1492 |
+
msgstr "برای نمایش یا عدم نمایش این فیلد براساس مقادیر یک فیلد دیگر قوانین را ایجاد کنید."
|
1493 |
+
|
1494 |
+
#: export.php:850
|
1495 |
+
#@ gravityforms
|
1496 |
+
msgid "Created By (User Id)"
|
1497 |
+
msgstr "ایجاد شده بوسیله (User Id)"
|
1498 |
+
|
1499 |
+
#: form_list.php:327
|
1500 |
+
#@ gravityforms
|
1501 |
+
msgid "Creating Form..."
|
1502 |
+
msgstr "در حال ایجاد فرم ..."
|
1503 |
+
|
1504 |
+
#: includes/fields/class-gf-field-creditcard.php:13
|
1505 |
+
#: js.php:633
|
1506 |
+
#@ gravityforms
|
1507 |
+
msgid "Credit Card"
|
1508 |
+
msgstr "کارت اعتباری"
|
1509 |
+
|
1510 |
+
#: tooltips.php:75
|
1511 |
+
#@ gravityforms
|
1512 |
+
msgid "Credit Card Icon Style"
|
1513 |
+
msgstr "استایل آیکون کارت اعتباری"
|
1514 |
+
|
1515 |
+
#: form_detail.php:1591
|
1516 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:20
|
1517 |
+
#: settings.php:361
|
1518 |
+
#: tooltips.php:160
|
1519 |
+
#@ gravityforms
|
1520 |
+
msgid "Currency"
|
1521 |
+
msgstr "واحد پول"
|
1522 |
+
|
1523 |
+
#: common.php:552
|
1524 |
+
#: common.php:707
|
1525 |
+
#: form_detail.php:268
|
1526 |
+
#: form_detail.php:1669
|
1527 |
+
#@ gravityforms
|
1528 |
+
msgid "Custom"
|
1529 |
+
msgstr "سفارشی"
|
1530 |
+
|
1531 |
+
#: form_detail.php:2009
|
1532 |
+
#@ gravityforms
|
1533 |
+
msgid "Custom CSS Class"
|
1534 |
+
msgstr "کلاس CSS سفارشی"
|
1535 |
+
|
1536 |
+
#: common.php:3829
|
1537 |
+
#@ gravityforms
|
1538 |
+
msgid "Custom Choices"
|
1539 |
+
msgstr "گزینه های سفارشی"
|
1540 |
+
|
1541 |
+
#: includes/fields/class-gf-field-post-custom-field.php:12
|
1542 |
+
#@ gravityforms
|
1543 |
+
msgid "Custom Field"
|
1544 |
+
msgstr "زمینه دلخواه"
|
1545 |
+
|
1546 |
+
#: form_detail.php:863
|
1547 |
+
#: tooltips.php:58
|
1548 |
+
#@ gravityforms
|
1549 |
+
msgid "Custom Field Name"
|
1550 |
+
msgstr "نام زمینه دلخواه"
|
1551 |
+
|
1552 |
+
#: form_detail.php:1259
|
1553 |
+
#@ gravityforms
|
1554 |
+
msgid "Custom Icon"
|
1555 |
+
msgstr "آیکون دلخواه"
|
1556 |
+
|
1557 |
+
#: form_detail.php:1679
|
1558 |
+
#@ gravityforms
|
1559 |
+
msgid "Custom Mask Instructions"
|
1560 |
+
msgstr "دستورالعمل قاب دلخواه"
|
1561 |
+
|
1562 |
+
#: js.php:258
|
1563 |
+
#@ gravityforms
|
1564 |
+
msgid "Custom Sub-Label"
|
1565 |
+
msgstr "برچسب فرعی سفارشی"
|
1566 |
+
|
1567 |
+
#: form_detail.php:1997
|
1568 |
+
#@ gravityforms
|
1569 |
+
msgid "Custom Validation Message"
|
1570 |
+
msgstr "پیام تایید سفارشی"
|
1571 |
+
|
1572 |
+
#: form_detail.php:1456
|
1573 |
+
#@ gravityforms
|
1574 |
+
msgid "Customer Service"
|
1575 |
+
msgstr "خدمات مشتریان"
|
1576 |
+
|
1577 |
+
#: form_detail.php:1295
|
1578 |
+
#@ gravityforms
|
1579 |
+
msgid "Customize Fields"
|
1580 |
+
msgstr "فیلدهای سفارشی"
|
1581 |
+
|
1582 |
+
#: includes/addon/class-gf-payment-addon.php:2401
|
1583 |
+
#@ gravityforms
|
1584 |
+
msgid "Daily"
|
1585 |
+
msgstr "روزانه"
|
1586 |
+
|
1587 |
+
#: common.php:505
|
1588 |
+
#: common.php:506
|
1589 |
+
#: entry_detail.php:1118
|
1590 |
+
#: form_detail.php:769
|
1591 |
+
#: form_detail.php:1697
|
1592 |
+
#: form_detail.php:2681
|
1593 |
+
#: form_detail.php:2682
|
1594 |
+
#: includes/addon/class-gf-payment-addon.php:2136
|
1595 |
+
#: includes/fields/class-gf-field-date.php:13
|
1596 |
+
#: js.php:673
|
1597 |
+
#: js.php:1234
|
1598 |
+
#@ gravityforms
|
1599 |
+
msgid "Date"
|
1600 |
+
msgstr "تاریخ"
|
1601 |
+
|
1602 |
+
#: form_detail.php:1242
|
1603 |
+
#@ gravityforms
|
1604 |
+
msgid "Date Drop Down"
|
1605 |
+
msgstr "لیست بازشو تاریخ"
|
1606 |
+
|
1607 |
+
#: form_detail.php:1240
|
1608 |
+
#@ gravityforms
|
1609 |
+
msgid "Date Field"
|
1610 |
+
msgstr "فیلد تاریخ"
|
1611 |
+
|
1612 |
+
#: form_detail.php:1277
|
1613 |
+
#@ gravityforms
|
1614 |
+
msgid "Date Format"
|
1615 |
+
msgstr "قالب تاریخ"
|
1616 |
+
|
1617 |
+
#: form_detail.php:1236
|
1618 |
+
#: tooltips.php:62
|
1619 |
+
#@ gravityforms
|
1620 |
+
msgid "Date Input Type"
|
1621 |
+
msgstr "نوع تاریخ فیلد ورودی"
|
1622 |
+
|
1623 |
+
#: form_detail.php:1241
|
1624 |
+
#@ gravityforms
|
1625 |
+
msgid "Date Picker"
|
1626 |
+
msgstr "انتخابگر تاریخ"
|
1627 |
+
|
1628 |
+
#: includes/addon/class-gf-results.php:265
|
1629 |
+
#: includes/addon/class-gf-results.php:346
|
1630 |
+
#@ gravityforms
|
1631 |
+
msgid "Date Range"
|
1632 |
+
msgstr "بازه زمانی"
|
1633 |
+
|
1634 |
+
#: export.php:538
|
1635 |
+
#@ gravityforms
|
1636 |
+
msgid "Date Range is optional, if no date range is selected all entries will be exported."
|
1637 |
+
msgstr "بازه زمانی اختیاری است، اگر بازه زمانی را انتخاب نکنید از همه پیامهای ورودی خروجی گرفته می شود."
|
1638 |
+
|
1639 |
+
#: includes/addon/class-gf-results.php:346
|
1640 |
+
#@ gravityforms
|
1641 |
+
msgid "Date Range is optional, if no date range is specified it will be ignored."
|
1642 |
+
msgstr "بازه زمانی اختیاری است. اگر بازه زمانی مشخص نشود از آن چشم پوشی می شود. "
|
1643 |
+
|
1644 |
+
#: includes/addon/class-gf-payment-addon.php:2134
|
1645 |
+
#: includes/addon/class-gf-payment-addon.php:2137
|
1646 |
+
#: includes/fields/class-gf-field-date.php:477
|
1647 |
+
#: js.php:892
|
1648 |
+
#: js.php:893
|
1649 |
+
#@ gravityforms
|
1650 |
+
msgid "Day"
|
1651 |
+
msgstr "روز"
|
1652 |
+
|
1653 |
+
#: form_detail.php:1458
|
1654 |
+
#@ gravityforms
|
1655 |
+
msgid "Days of the Week"
|
1656 |
+
msgstr "روزهای هفته"
|
1657 |
+
|
1658 |
+
#: form_detail.php:1459
|
1659 |
+
#@ gravityforms
|
1660 |
+
msgid "December"
|
1661 |
+
msgstr "دسامبر"
|
1662 |
+
|
1663 |
+
#: form_detail.php:443
|
1664 |
+
#: form_detail.php:675
|
1665 |
+
#: form_detail.php:713
|
1666 |
+
#@ gravityforms
|
1667 |
+
msgid "Default"
|
1668 |
+
msgstr "پیشفرض"
|
1669 |
+
|
1670 |
+
#: form_detail.php:1171
|
1671 |
+
#, php-format
|
1672 |
+
#@ gravityforms
|
1673 |
+
msgid "Default %s"
|
1674 |
+
msgstr "پیشفرض %s"
|
1675 |
+
|
1676 |
+
#: form_detail.php:2890
|
1677 |
+
#: forms_model.php:4670
|
1678 |
+
#@ gravityforms
|
1679 |
+
msgid "Default Confirmation"
|
1680 |
+
msgstr "تاییدیه پیشفرض"
|
1681 |
+
|
1682 |
+
#: form_detail.php:1186
|
1683 |
+
#: tooltips.php:66
|
1684 |
+
#@ gravityforms
|
1685 |
+
msgid "Default Country"
|
1686 |
+
msgstr "کشور پیشفرض"
|
1687 |
+
|
1688 |
+
#: form_detail.php:920
|
1689 |
+
#@ gravityforms
|
1690 |
+
msgid "Default Post Author"
|
1691 |
+
msgstr "نویسنده پیشفرض نوشته"
|
1692 |
+
|
1693 |
+
#: tooltips.php:65
|
1694 |
+
#@ gravityforms
|
1695 |
+
msgid "Default Province"
|
1696 |
+
msgstr "شهر پیش فرض"
|
1697 |
+
|
1698 |
+
#: tooltips.php:64
|
1699 |
+
#@ gravityforms
|
1700 |
+
msgid "Default State"
|
1701 |
+
msgstr "حالت پیش فرض"
|
1702 |
+
|
1703 |
+
#: form_detail.php:2074
|
1704 |
+
#: form_detail.php:2084
|
1705 |
+
#: js.php:200
|
1706 |
+
#: tooltips.php:99
|
1707 |
+
#@ gravityforms
|
1708 |
+
msgid "Default Value"
|
1709 |
+
msgstr "مقدار پیشفرض"
|
1710 |
+
|
1711 |
+
#: js.php:196
|
1712 |
+
#@ gravityforms
|
1713 |
+
msgid "Default Value:"
|
1714 |
+
msgstr "مقدار پیش فرض :"
|
1715 |
+
|
1716 |
+
#: form_detail.php:2109
|
1717 |
+
#: tooltips.php:100
|
1718 |
+
#@ gravityforms
|
1719 |
+
msgid "Default Values"
|
1720 |
+
msgstr "مقادیر پیش فرض"
|
1721 |
+
|
1722 |
+
#: form_detail.php:1466
|
1723 |
+
#@ gravityforms
|
1724 |
+
msgid "Definitely"
|
1725 |
+
msgstr "قطعا"
|
1726 |
+
|
1727 |
+
#: form_detail.php:1466
|
1728 |
+
#@ gravityforms
|
1729 |
+
msgid "Definitely Not"
|
1730 |
+
msgstr "قطعا نه"
|
1731 |
+
|
1732 |
+
#: entry_detail.php:735
|
1733 |
+
#: form_detail.php:1509
|
1734 |
+
#: form_settings.php:1883
|
1735 |
+
#: includes/addon/class-gf-feed-addon.php:1092
|
1736 |
+
#: includes/addon/class-gf-feed-addon.php:1139
|
1737 |
+
#: notification.php:1710
|
1738 |
+
#@ gravityforms
|
1739 |
+
msgid "Delete"
|
1740 |
+
msgstr "حذف"
|
1741 |
+
|
1742 |
+
#: entry_list.php:1204
|
1743 |
+
#@ gravityforms
|
1744 |
+
msgid "Delete All Spam"
|
1745 |
+
msgstr "حذف همه هرزنامه ها"
|
1746 |
+
|
1747 |
+
#: form_detail.php:2244
|
1748 |
+
#: tooltips.php:47
|
1749 |
+
#@ gravityforms
|
1750 |
+
msgid "Delete Icon URL"
|
1751 |
+
msgstr "حذف URL آیکون"
|
1752 |
+
|
1753 |
+
#: entry_detail.php:1261
|
1754 |
+
#: entry_detail.php:1274
|
1755 |
+
#: entry_list.php:1040
|
1756 |
+
#: entry_list.php:1071
|
1757 |
+
#: entry_list.php:1167
|
1758 |
+
#: entry_list.php:1171
|
1759 |
+
#@ gravityforms
|
1760 |
+
msgid "Delete Permanently"
|
1761 |
+
msgstr "حذف غیرقابل برگشت"
|
1762 |
+
|
1763 |
+
#: includes/fields/class-gf-field-fileupload.php:251
|
1764 |
+
#: includes/fields/class-gf-field-fileupload.php:277
|
1765 |
+
#@ gravityforms
|
1766 |
+
msgid "Delete file"
|
1767 |
+
msgstr "حذف فایل"
|
1768 |
+
|
1769 |
+
#: form_list.php:495
|
1770 |
+
#: form_list.php:645
|
1771 |
+
#: form_list.php:646
|
1772 |
+
#@ gravityforms
|
1773 |
+
msgid "Delete permanently"
|
1774 |
+
msgstr "حذف دائمی"
|
1775 |
+
|
1776 |
+
#: js.php:12
|
1777 |
+
#@ gravityforms
|
1778 |
+
msgid "Delete this custom choice list? 'OK' to delete, 'Cancel' to abort."
|
1779 |
+
msgstr "حذف کردن این لیست ؟ Cancel برای لغو. OK برای حذف کردن ."
|
1780 |
+
|
1781 |
+
#: entry_list.php:1040
|
1782 |
+
#: entry_list.php:1071
|
1783 |
+
#@ gravityforms
|
1784 |
+
msgid "Delete this entry permanently"
|
1785 |
+
msgstr "حذف دائمی این پیام ورودی"
|
1786 |
+
|
1787 |
+
#: includes/addon/class-gf-feed-addon.php:1139
|
1788 |
+
#@ gravityforms
|
1789 |
+
msgid "Delete this feed"
|
1790 |
+
msgstr "حذف این خوراک"
|
1791 |
+
|
1792 |
+
#: common.php:4402
|
1793 |
+
#@ gravityforms
|
1794 |
+
msgid "Delete this file"
|
1795 |
+
msgstr "حذف این فایل"
|
1796 |
+
|
1797 |
+
#: form_settings.php:1883
|
1798 |
+
#@ gravityforms
|
1799 |
+
msgid "Delete this item"
|
1800 |
+
msgstr "حذف این آیتم"
|
1801 |
+
|
1802 |
+
#: notification.php:1710
|
1803 |
+
#@ gravityforms
|
1804 |
+
msgid "Delete this notification"
|
1805 |
+
msgstr "حذف کردن این اعلان"
|
1806 |
+
|
1807 |
+
#: js.php:373
|
1808 |
+
#@ gravityforms
|
1809 |
+
msgid "Deleted Field"
|
1810 |
+
msgstr "فیلد حذف شده"
|
1811 |
+
|
1812 |
+
#: form_detail.php:540
|
1813 |
+
#: form_detail.php:1110
|
1814 |
+
#: includes/fields/class-gf-field-post-image.php:83
|
1815 |
+
#: includes/fields/class-gf-field-post-image.php:126
|
1816 |
+
#@ gravityforms
|
1817 |
+
msgid "Description"
|
1818 |
+
msgstr "توضیحات"
|
1819 |
+
|
1820 |
+
#: form_detail.php:1956
|
1821 |
+
#: tooltips.php:41
|
1822 |
+
#: tooltips.php:93
|
1823 |
+
#@ gravityforms
|
1824 |
+
msgid "Description Placement"
|
1825 |
+
msgstr "محل قرار گیری توضیحات"
|
1826 |
+
|
1827 |
+
#: form_settings.php:419
|
1828 |
+
#@ gravityforms
|
1829 |
+
msgid "Description placement"
|
1830 |
+
msgstr "محل توضیحات"
|
1831 |
+
|
1832 |
+
#: export.php:404
|
1833 |
+
#@ gravityforms
|
1834 |
+
msgid "Deselect All"
|
1835 |
+
msgstr "انتخاب نکردن همه"
|
1836 |
+
|
1837 |
+
#: entry_detail.php:669
|
1838 |
+
#@ gravityforms
|
1839 |
+
msgid "Details"
|
1840 |
+
msgstr "جزییات"
|
1841 |
+
|
1842 |
+
#: includes/webapi/webapi.php:245
|
1843 |
+
#@ gravityforms
|
1844 |
+
msgid "Developer tools"
|
1845 |
+
msgstr "ابزارهای توسعه"
|
1846 |
+
|
1847 |
+
#: tooltips.php:27
|
1848 |
+
#: tooltips.php:49
|
1849 |
+
#@ gravityforms
|
1850 |
+
msgid "Disable Auto-Formatting"
|
1851 |
+
msgstr "غیرفعال کردن قالب خودکار"
|
1852 |
+
|
1853 |
+
#: form_settings.php:1286
|
1854 |
+
#@ gravityforms
|
1855 |
+
msgid "Disable Auto-formatting"
|
1856 |
+
msgstr "غیرفعال کردن قالب خودکار"
|
1857 |
+
|
1858 |
+
#: tooltips.php:55
|
1859 |
+
#@ gravityforms
|
1860 |
+
msgid "Disable Default Margins"
|
1861 |
+
msgstr "غیرفعال کردن حاشیه پیش فرض"
|
1862 |
+
|
1863 |
+
#: tooltips.php:141
|
1864 |
+
#@ gravityforms
|
1865 |
+
msgid "Disable Quantity"
|
1866 |
+
msgstr "غیر فعال کردن تعداد"
|
1867 |
+
|
1868 |
+
#: notification.php:1064
|
1869 |
+
#@ gravityforms
|
1870 |
+
msgid "Disable auto-formatting"
|
1871 |
+
msgstr "غیرفعال کردن قالب خودکار"
|
1872 |
+
|
1873 |
+
#: form_detail.php:745
|
1874 |
+
#@ gravityforms
|
1875 |
+
msgid "Disable default margins"
|
1876 |
+
msgstr "غیرفعال سازی حاشیه های پیشفرض"
|
1877 |
+
|
1878 |
+
#: form_detail.php:604
|
1879 |
+
#@ gravityforms
|
1880 |
+
msgid "Disable quantity field"
|
1881 |
+
msgstr "غیر فعال سازی فیلد مقدار/تعداد"
|
1882 |
+
|
1883 |
+
#: widget.php:150
|
1884 |
+
#@ gravityforms
|
1885 |
+
msgid "Disable script output"
|
1886 |
+
msgstr "غیرفعال کردن اسکریپت خروجی"
|
1887 |
+
|
1888 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:110
|
1889 |
+
#@ gravityforms
|
1890 |
+
msgid "Disabled"
|
1891 |
+
msgstr "غیرفعال"
|
1892 |
+
|
1893 |
+
#: tooltips.php:141
|
1894 |
+
#@ gravityforms
|
1895 |
+
msgid "Disables the quantity field. A quantity of 1 will be assumed or you can add a Quantity field to your form from the Pricing Fields."
|
1896 |
+
msgstr "فیلد تعداد را غیرفعال کنید. اگر غیرفعال کنید تعداد 1 در نظر گرفته می شود یا می توانید از فیلدهای قیمت گذاری ، فیلد تعداد را اضافه کنید."
|
1897 |
+
|
1898 |
+
#: form_detail.php:1464
|
1899 |
+
#@ gravityforms
|
1900 |
+
msgid "Disagree"
|
1901 |
+
msgstr "مخالف"
|
1902 |
+
|
1903 |
+
#: gravityforms.php:2364
|
1904 |
+
#@ gravityforms
|
1905 |
+
msgid "Dismiss"
|
1906 |
+
msgstr "بستن"
|
1907 |
+
|
1908 |
+
#: form_detail.php:300
|
1909 |
+
#@ gravityforms
|
1910 |
+
msgid "Display completed progress bar on confirmation"
|
1911 |
+
msgstr "نمایش نوار پیشرفت کامل در پایان تاییدیه."
|
1912 |
+
|
1913 |
+
#: gravityforms.php:4865
|
1914 |
+
#: widget.php:141
|
1915 |
+
#@ gravityforms
|
1916 |
+
msgid "Display form description"
|
1917 |
+
msgstr "نمایش توضیحات فرم"
|
1918 |
+
|
1919 |
+
#: gravityforms.php:4857
|
1920 |
+
#: widget.php:139
|
1921 |
+
#@ gravityforms
|
1922 |
+
msgid "Display form title"
|
1923 |
+
msgstr "نمایش عنوان فرم"
|
1924 |
+
|
1925 |
+
#: form_detail.php:2124
|
1926 |
+
#@ gravityforms
|
1927 |
+
msgid "Display option to use the values submitted in different field"
|
1928 |
+
msgstr "نمایش گزینه استفاده از مقادیر ارسال شده در فیلد دیگر"
|
1929 |
+
|
1930 |
+
#: form_detail.php:1033
|
1931 |
+
#@ gravityforms
|
1932 |
+
msgid "Display placeholder"
|
1933 |
+
msgstr "نمایش نگه دارنده"
|
1934 |
+
|
1935 |
+
#: form_detail.php:1453
|
1936 |
+
#@ gravityforms
|
1937 |
+
msgid "Divorced"
|
1938 |
+
msgstr "مطلقه"
|
1939 |
+
|
1940 |
+
#: js.php:800
|
1941 |
+
#@ gravityforms
|
1942 |
+
msgid "Donation"
|
1943 |
+
msgstr "کمک مالی"
|
1944 |
+
|
1945 |
+
#: includes/addon/class-gf-payment-addon.php:1480
|
1946 |
+
#@ gravityforms
|
1947 |
+
msgid "Donations"
|
1948 |
+
msgstr "حمایت مالی"
|
1949 |
+
|
1950 |
+
#: common.php:2698
|
1951 |
+
#@ gravityforms
|
1952 |
+
msgid "Donations are not editable"
|
1953 |
+
msgstr "کمک های مالی از اینجا غیرقابل ویرایش هستند ."
|
1954 |
+
|
1955 |
+
#: export.php:348
|
1956 |
+
#: export.php:546
|
1957 |
+
#@ gravityforms
|
1958 |
+
msgid "Download Export File"
|
1959 |
+
msgstr "دانلود فایل خروجی"
|
1960 |
+
|
1961 |
+
#: includes/fields/class-gf-field-fileupload.php:250
|
1962 |
+
#@ gravityforms
|
1963 |
+
msgid "Download file"
|
1964 |
+
msgstr "دانلود فایل"
|
1965 |
+
|
1966 |
+
#: js.php:956
|
1967 |
+
#@ gravityforms
|
1968 |
+
msgid "Dr."
|
1969 |
+
msgstr "دکتر."
|
1970 |
+
|
1971 |
+
#: select_columns.php:189
|
1972 |
+
#@ gravityforms
|
1973 |
+
msgid "Drag & drop to order and select which columns are displayed in the entries table."
|
1974 |
+
msgstr "برای مرتب کردن وانتخاب ستون هایی که در جدول ورودی نمایش داده می شوند از کشیدن و رها کردن استفاده کنید."
|
1975 |
+
|
1976 |
+
#: form_detail.php:384
|
1977 |
+
#@ gravityforms
|
1978 |
+
msgid "Drag the fields to arrange them the way you prefer"
|
1979 |
+
msgstr "برای مرتب کردن فیلدها مطابق سلیقه خود آنها را بکشید."
|
1980 |
+
|
1981 |
+
#: form_detail.php:382
|
1982 |
+
#@ gravityforms
|
1983 |
+
msgid "Drag to Arrange Fields"
|
1984 |
+
msgstr "برای مرتب کردن فیلدها آنها را بکشید."
|
1985 |
+
|
1986 |
+
#: form_detail.php:388
|
1987 |
+
#@ gravityforms
|
1988 |
+
msgid "Drag up or down to arrange your fields."
|
1989 |
+
msgstr "با کشیدن به سمت بالا و پایین فیلدها را مرتب کنید."
|
1990 |
+
|
1991 |
+
#: form_detail.php:567
|
1992 |
+
#: form_detail.php:584
|
1993 |
+
#: form_detail.php:618
|
1994 |
+
#: form_detail.php:632
|
1995 |
+
#: form_detail.php:647
|
1996 |
+
#: form_detail.php:761
|
1997 |
+
#: form_detail.php:789
|
1998 |
+
#: form_detail.php:986
|
1999 |
+
#: includes/fields/class-gf-field-select.php:13
|
2000 |
+
#@ gravityforms
|
2001 |
+
msgid "Drop Down"
|
2002 |
+
msgstr "لیست بازشو"
|
2003 |
+
|
2004 |
+
#: includes/fields/class-gf-field-fileupload.php:204
|
2005 |
+
#@ gravityforms
|
2006 |
+
msgid "Drop files here or"
|
2007 |
+
msgstr "فایل ها را به اینجا بکشید"
|
2008 |
+
|
2009 |
+
#: form_list.php:664
|
2010 |
+
#: form_settings.php:1882
|
2011 |
+
#: includes/addon/class-gf-feed-addon.php:1138
|
2012 |
+
#: notification.php:1709
|
2013 |
+
#@ gravityforms
|
2014 |
+
msgid "Duplicate"
|
2015 |
+
msgstr "کپی"
|
2016 |
+
|
2017 |
+
#: form_settings.php:1882
|
2018 |
+
#@ gravityforms
|
2019 |
+
msgid "Duplicate this confirmation"
|
2020 |
+
msgstr "کپی کردن تاییدیه"
|
2021 |
+
|
2022 |
+
#: form_list.php:665
|
2023 |
+
#@ gravityforms
|
2024 |
+
msgid "Duplicate this form"
|
2025 |
+
msgstr "کپی کردن این فرم"
|
2026 |
+
|
2027 |
+
#: notification.php:1709
|
2028 |
+
#@ gravityforms
|
2029 |
+
msgid "Duplicate this notification"
|
2030 |
+
msgstr "تکثیر این اعلان"
|
2031 |
+
|
2032 |
+
#: form_detail.php:422
|
2033 |
+
#@ gravityforms
|
2034 |
+
msgid "END PAGING"
|
2035 |
+
msgstr "انتهای صفحه"
|
2036 |
+
|
2037 |
+
#. translators: plugin header field 'Description'
|
2038 |
+
#: gravityforms.php:0
|
2039 |
+
#@ gravityforms
|
2040 |
+
msgid "Easily create web forms and manage form entries within the WordPress admin."
|
2041 |
+
msgstr "به سادگی فرم دلخواه خود را ایجاد نمایید و از طریق مدیریت وردپرس فرم ها و صندوق ورودی را مدیریت نمایید."
|
2042 |
+
|
2043 |
+
#: entry_detail.php:1299
|
2044 |
+
#: form_settings.php:1881
|
2045 |
+
#: gravityforms.php:4188
|
2046 |
+
#: gravityforms.php:4501
|
2047 |
+
#: includes/addon/class-gf-feed-addon.php:1137
|
2048 |
+
#: notification.php:1708
|
2049 |
+
#@ gravityforms
|
2050 |
+
msgid "Edit"
|
2051 |
+
msgstr "ویرایش"
|
2052 |
+
|
2053 |
+
#: form_detail.php:370
|
2054 |
+
#@ gravityforms
|
2055 |
+
msgid "Edit Field Options"
|
2056 |
+
msgstr "تنظیمات فیلد را ویرایش کنید."
|
2057 |
+
|
2058 |
+
#: export.php:272
|
2059 |
+
#@ gravityforms
|
2060 |
+
msgid "Edit Form"
|
2061 |
+
msgstr "ویرایش فرم"
|
2062 |
+
|
2063 |
+
#: form_detail.php:417
|
2064 |
+
#@ gravityforms
|
2065 |
+
msgid "Edit Last Page"
|
2066 |
+
msgstr "آخرین صفحه را ویرایش نمایید"
|
2067 |
+
|
2068 |
+
#: entry_detail.php:1232
|
2069 |
+
#@ gravityforms
|
2070 |
+
msgid "Edit Post"
|
2071 |
+
msgstr "ویرایش نوشته"
|
2072 |
+
|
2073 |
+
#: gravityforms.php:4206
|
2074 |
+
#@ gravityforms
|
2075 |
+
msgid "Edit settings for this form"
|
2076 |
+
msgstr "ویرایش تنظیمات این فرم"
|
2077 |
+
|
2078 |
+
#: form_detail.php:376
|
2079 |
+
#@ gravityforms
|
2080 |
+
msgid "Edit the field options. Go ahead.. go crazy."
|
2081 |
+
msgstr "تنظیمات فیلد را ویرایش کنید . به جلو بروید ."
|
2082 |
+
|
2083 |
+
#: includes/addon/class-gf-feed-addon.php:1137
|
2084 |
+
#@ gravityforms
|
2085 |
+
msgid "Edit this feed"
|
2086 |
+
msgstr "ویرایش این خوراک"
|
2087 |
+
|
2088 |
+
#: gravityforms.php:4191
|
2089 |
+
#@ gravityforms
|
2090 |
+
msgid "Edit this form"
|
2091 |
+
msgstr "ویرایش این فرم"
|
2092 |
+
|
2093 |
+
#: form_settings.php:1881
|
2094 |
+
#: notification.php:1708
|
2095 |
+
#@ gravityforms
|
2096 |
+
msgid "Edit this item"
|
2097 |
+
msgstr "ویرایش این آیتم"
|
2098 |
+
|
2099 |
+
#: form_detail.php:1457
|
2100 |
+
#@ gravityforms
|
2101 |
+
msgid "Education"
|
2102 |
+
msgstr "تحصیلات"
|
2103 |
+
|
2104 |
+
#: form_detail.php:1456
|
2105 |
+
#@ gravityforms
|
2106 |
+
msgid "Education/Training"
|
2107 |
+
msgstr "آموزش و پرورش / آموزش"
|
2108 |
+
|
2109 |
+
#: form_detail.php:773
|
2110 |
+
#: includes/addon/class-gf-payment-addon.php:1839
|
2111 |
+
#: includes/fields/class-gf-field-email.php:13
|
2112 |
+
#: js.php:649
|
2113 |
+
#@ gravityforms
|
2114 |
+
msgid "Email"
|
2115 |
+
msgstr "ایمیل"
|
2116 |
+
|
2117 |
+
#: common.php:507
|
2118 |
+
#: form_detail.php:2683
|
2119 |
+
#@ gravityforms
|
2120 |
+
msgid "Embed Post/Page Id"
|
2121 |
+
msgstr "قرار دادن شماره نوشته / برگه"
|
2122 |
+
|
2123 |
+
#: common.php:508
|
2124 |
+
#: form_detail.php:2684
|
2125 |
+
#@ gravityforms
|
2126 |
+
msgid "Embed Post/Page Title"
|
2127 |
+
msgstr "قرار دادن شماره عنوان نوشته / برگه"
|
2128 |
+
|
2129 |
+
#: common.php:509
|
2130 |
+
#: form_detail.php:2685
|
2131 |
+
#@ gravityforms
|
2132 |
+
msgid "Embed URL"
|
2133 |
+
msgstr "قرار دادن لینک"
|
2134 |
+
|
2135 |
+
#: entry_detail.php:1225
|
2136 |
+
#@ gravityforms
|
2137 |
+
msgid "Embed Url"
|
2138 |
+
msgstr "قرار دادن لینک"
|
2139 |
+
|
2140 |
+
#: form_detail.php:1454
|
2141 |
+
#@ gravityforms
|
2142 |
+
msgid "Employed Full-Time"
|
2143 |
+
msgstr "کارمند تمام وقت"
|
2144 |
+
|
2145 |
+
#: form_detail.php:1454
|
2146 |
+
#@ gravityforms
|
2147 |
+
msgid "Employed Part-Time"
|
2148 |
+
msgstr "کارمند پاره وقت"
|
2149 |
+
|
2150 |
+
#: form_detail.php:1455
|
2151 |
+
#@ gravityforms
|
2152 |
+
msgid "Employee"
|
2153 |
+
msgstr "کارمند"
|
2154 |
+
|
2155 |
+
#: form_detail.php:1454
|
2156 |
+
#@ gravityforms
|
2157 |
+
msgid "Employment"
|
2158 |
+
msgstr "استخدام"
|
2159 |
+
|
2160 |
+
#: entry_list.php:1204
|
2161 |
+
#@ gravityforms
|
2162 |
+
msgid "Empty Trash"
|
2163 |
+
msgstr "خالی کردن زباله دان"
|
2164 |
+
|
2165 |
+
#: includes/addon/class-gf-addon.php:2471
|
2166 |
+
#@ gravityforms
|
2167 |
+
msgid "Enable"
|
2168 |
+
msgstr "فعال"
|
2169 |
+
|
2170 |
+
#: form_detail.php:1533
|
2171 |
+
#@ gravityforms
|
2172 |
+
msgid "Enable \"other\" choice"
|
2173 |
+
msgstr "فعال سازی گزینه \"سایر\""
|
2174 |
+
|
2175 |
+
#: gravityforms.php:4873
|
2176 |
+
#: widget.php:148
|
2177 |
+
#@ gravityforms
|
2178 |
+
msgid "Enable AJAX"
|
2179 |
+
msgstr "فعال سازی Ajax"
|
2180 |
+
|
2181 |
+
#: tooltips.php:37
|
2182 |
+
#@ gravityforms
|
2183 |
+
msgid "Enable Animation"
|
2184 |
+
msgstr "فعال سازی حالت متحرک "
|
2185 |
+
|
2186 |
+
#: tooltips.php:36
|
2187 |
+
#@ gravityforms
|
2188 |
+
msgid "Enable Anti-spam honeypot"
|
2189 |
+
msgstr "فعال کردن آنتی اسپم honeypot"
|
2190 |
+
|
2191 |
+
#: form_detail.php:1795
|
2192 |
+
#: tooltips.php:87
|
2193 |
+
#@ gravityforms
|
2194 |
+
msgid "Enable Calculation"
|
2195 |
+
msgstr "فعال سازی محاسبات"
|
2196 |
+
|
2197 |
+
#: tooltips.php:112
|
2198 |
+
#@ gravityforms
|
2199 |
+
msgid "Enable Choice Values"
|
2200 |
+
msgstr "فعال کردن مقادیر انتخابی"
|
2201 |
+
|
2202 |
+
#: includes/addon/class-gf-feed-addon.php:1258
|
2203 |
+
#@ gravityforms
|
2204 |
+
msgid "Enable Condition"
|
2205 |
+
msgstr "فعال سازی شرط"
|
2206 |
+
|
2207 |
+
#: form_detail.php:2310
|
2208 |
+
#: form_settings.php:551
|
2209 |
+
#@ gravityforms
|
2210 |
+
msgid "Enable Conditional Logic"
|
2211 |
+
msgstr "فعال سازی منطق شرطی"
|
2212 |
+
|
2213 |
+
#: form_detail.php:1546
|
2214 |
+
#@ gravityforms
|
2215 |
+
msgid "Enable Email Confirmation"
|
2216 |
+
msgstr "فعال کردن تایید ایمیل"
|
2217 |
+
|
2218 |
+
#: tooltips.php:114
|
2219 |
+
#@ gravityforms
|
2220 |
+
msgid "Enable Enhanced UI"
|
2221 |
+
msgstr "فعال کردن رابط کاربری پیشرفته"
|
2222 |
+
|
2223 |
+
#: form_detail.php:1324
|
2224 |
+
#: tooltips.php:79
|
2225 |
+
#@ gravityforms
|
2226 |
+
msgid "Enable Multi-File Upload"
|
2227 |
+
msgstr "فعال سازی بارگذاری چندگانه"
|
2228 |
+
|
2229 |
+
#: form_detail.php:2336
|
2230 |
+
#@ gravityforms
|
2231 |
+
msgid "Enable Next Button Conditional Logic"
|
2232 |
+
msgstr "فعال سازی منطق شرطی دکمه \"بعدی\""
|
2233 |
+
|
2234 |
+
#: form_detail.php:2323
|
2235 |
+
#@ gravityforms
|
2236 |
+
msgid "Enable Page Conditional Logic"
|
2237 |
+
msgstr "فعال سازی منطق شرطی برگه"
|
2238 |
+
|
2239 |
+
#: form_detail.php:2254
|
2240 |
+
#@ gravityforms
|
2241 |
+
msgid "Enable Password Input"
|
2242 |
+
msgstr "فعال سازی فیلد ورودی کلمه عبور"
|
2243 |
+
|
2244 |
+
#: form_detail.php:1556
|
2245 |
+
#@ gravityforms
|
2246 |
+
msgid "Enable Password Strength"
|
2247 |
+
msgstr "فعال سازی شاخص قدرت کلمه عبور"
|
2248 |
+
|
2249 |
+
#: form_settings.php:584
|
2250 |
+
#@ gravityforms
|
2251 |
+
msgid "Enable Save and Continue"
|
2252 |
+
msgstr "فعال سازی ذخیره و ادامه"
|
2253 |
+
|
2254 |
+
#: includes/addon/class-gf-payment-addon.php:1597
|
2255 |
+
#@ gravityforms
|
2256 |
+
msgid "Enable a trial period. The user's recurring payment will not begin until after this trial period."
|
2257 |
+
msgstr "یک دوره آزمایشی فعال کنید. هزینه تمدید کاربر تا پایان دوره آزمایشی آغاز نخواهد شد."
|
2258 |
+
|
2259 |
+
#: includes/webapi/webapi.php:199
|
2260 |
+
#@ gravityforms
|
2261 |
+
msgid "Enable access to the API"
|
2262 |
+
msgstr "فعال سازی دسترسی به API"
|
2263 |
+
|
2264 |
+
#: form_settings.php:860
|
2265 |
+
#@ gravityforms
|
2266 |
+
msgid "Enable animations"
|
2267 |
+
msgstr "فعال سازی حالت متحرک"
|
2268 |
+
|
2269 |
+
#: form_settings.php:844
|
2270 |
+
#@ gravityforms
|
2271 |
+
msgid "Enable anti-spam honeypot"
|
2272 |
+
msgstr "فعال سازی ضد هرزنامه honeypot"
|
2273 |
+
|
2274 |
+
#: notification.php:1082
|
2275 |
+
#@ gravityforms
|
2276 |
+
msgid "Enable conditional logic"
|
2277 |
+
msgstr "فعال سازی منطق شرطی"
|
2278 |
+
|
2279 |
+
#: form_detail.php:2022
|
2280 |
+
#@ gravityforms
|
2281 |
+
msgid "Enable enhanced user interface"
|
2282 |
+
msgstr "فعال سازی رابط کاربری پیشرفته"
|
2283 |
+
|
2284 |
+
#: form_settings.php:655
|
2285 |
+
#@ gravityforms
|
2286 |
+
msgid "Enable entry limit"
|
2287 |
+
msgstr "فعال سازی محدودیت پیامهای ورودی"
|
2288 |
+
|
2289 |
+
#: form_detail.php:1366
|
2290 |
+
#@ gravityforms
|
2291 |
+
msgid "Enable multiple columns"
|
2292 |
+
msgstr "فعال سازی ستون های چندگانه"
|
2293 |
+
|
2294 |
+
#: includes/addon/class-gf-payment-addon.php:1716
|
2295 |
+
#: includes/addon/class-gf-payment-addon.php:1761
|
2296 |
+
#: includes/webapi/webapi.php:204
|
2297 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:110
|
2298 |
+
#@ gravityforms
|
2299 |
+
msgid "Enabled"
|
2300 |
+
msgstr "فعال"
|
2301 |
+
|
2302 |
+
#: tooltips.php:36
|
2303 |
+
#@ gravityforms
|
2304 |
+
msgid "Enables the honeypot spam protection technique, which is an alternative to the reCAPTCHA field."
|
2305 |
+
msgstr "روش محافظت از هرزنامه honeypot را فعال کنید. این روش جایگزینی برای فیلد reCAPTCHA است."
|
2306 |
+
|
2307 |
+
#: tooltips.php:87
|
2308 |
+
#@ gravityforms
|
2309 |
+
msgid "Enabling calculations will allow the value of this field to be dynamically calculated based on a mathematical formula."
|
2310 |
+
msgstr "فعال سازی محاسبات به شما این اجازه را می دهد که مقدار این فیلد به صورت خودکار بر اساس فرمول های ریاضی محاسبه شود."
|
2311 |
+
|
2312 |
+
#: export.php:534
|
2313 |
+
#: includes/addon/class-gf-results.php:277
|
2314 |
+
#@ gravityforms
|
2315 |
+
msgid "End"
|
2316 |
+
msgstr "پایان"
|
2317 |
+
|
2318 |
+
#: form_detail.php:1456
|
2319 |
+
#@ gravityforms
|
2320 |
+
msgid "Energy/Utilities"
|
2321 |
+
msgstr "انرژی / ابزار ها"
|
2322 |
+
|
2323 |
+
#: form_detail.php:1456
|
2324 |
+
#@ gravityforms
|
2325 |
+
msgid "Engineering"
|
2326 |
+
msgstr "مهندسی"
|
2327 |
+
|
2328 |
+
#: form_settings.php:1139
|
2329 |
+
#@ gravityforms
|
2330 |
+
msgid "Ensure that the conditional logic for this confirmation is different from all the other confirmations for this form and then press save to create the new confirmation."
|
2331 |
+
msgstr "مطمئن شوید که منطق شرطی این تاییدیه با سایر تاییدیه های این فرم متفاوت باشد و سپس دکمه ذخیره را بزنید و یک تاییدیه جدید بسازید."
|
2332 |
+
|
2333 |
+
#: includes/fields/class-gf-field-email.php:92
|
2334 |
+
#: js.php:923
|
2335 |
+
#: notification.php:785
|
2336 |
+
#@ gravityforms
|
2337 |
+
msgid "Enter Email"
|
2338 |
+
msgstr "یک ایمیل وارد نمایید "
|
2339 |
+
|
2340 |
+
#: includes/fields/class-gf-field-password.php:105
|
2341 |
+
#: js.php:933
|
2342 |
+
#@ gravityforms
|
2343 |
+
msgid "Enter Password"
|
2344 |
+
msgstr "کلمه عبور را وارد نمایید"
|
2345 |
+
|
2346 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:25
|
2347 |
+
#@ gravityforms
|
2348 |
+
msgid "Enter Your License Key"
|
2349 |
+
msgstr "کد لایسنس خود را وارد کنید."
|
2350 |
+
|
2351 |
+
#: tooltips.php:32
|
2352 |
+
#@ gravityforms
|
2353 |
+
msgid "Enter a comma separated list of email addresses you would like to receive a BCC of the notification email."
|
2354 |
+
msgstr "ایمیلی های که می خواهید BCC اعلان ها را دریافت کنند وارد کنید ( برای جدا کردن ایمیل ها از کاما استفاده کنید )"
|
2355 |
+
|
2356 |
+
#: tooltips.php:164
|
2357 |
+
#@ gravityforms
|
2358 |
+
msgid "Enter a comma separated list of email addresses you would like to receive the selected notification emails."
|
2359 |
+
msgstr "ایمیل هایی که می خواهید به آن اعلان ها ارسال شود با کاما (،) جدا کنید."
|
2360 |
+
|
2361 |
+
#: form_detail.php:1678
|
2362 |
+
#@ gravityforms
|
2363 |
+
msgid "Enter a custom mask"
|
2364 |
+
msgstr "یک قاب دلخواه وارد نمایید"
|
2365 |
+
|
2366 |
+
#: tooltips.php:39
|
2367 |
+
#@ gravityforms
|
2368 |
+
msgid "Enter a description for your form. This may be used for user instructions."
|
2369 |
+
msgstr "توضیحات را برای فرمتان وارد کنید. این توضیح می تواند برای راهنمایی کاربر استفاده شود."
|
2370 |
+
|
2371 |
+
#: includes/addon/class-gf-payment-addon.php:1532
|
2372 |
+
#@ gravityforms
|
2373 |
+
msgid "Enter a feed name to uniquely identify this setup."
|
2374 |
+
msgstr "یک نام منحصر به فرد برای این ایجاد این خوراک انتخاب نمایید ."
|
2375 |
+
|
2376 |
+
#: tooltips.php:117
|
2377 |
+
#@ gravityforms
|
2378 |
+
msgid "Enter a message to be displayed to users who are not logged in (shortcodes and HTML are supported)."
|
2379 |
+
msgstr "پیامی را که برای کاربران وارد نشده نمایش داده می شود را وارد کنید. ( HTML و shortcodes پشتیبانی می شود)"
|
2380 |
+
|
2381 |
+
#: tooltips.php:34
|
2382 |
+
#@ gravityforms
|
2383 |
+
msgid "Enter a number in the input box below to limit the number of entries allowed for this form. The form will become inactive when that number is reached."
|
2384 |
+
msgstr "برای محدود کردن تعداد پبام های ورودی مجاز این فرم عدد مورد نظر را وارد کنید. وقتی تعداد به این عدد برسد فرم غیرفعال می شود."
|
2385 |
+
|
2386 |
+
#: common.php:3774
|
2387 |
+
#@ gravityforms
|
2388 |
+
msgid "Enter a value"
|
2389 |
+
msgstr "یک مقدار وارد نمایید"
|
2390 |
+
|
2391 |
+
#: includes/addon/class-gf-payment-addon.php:1775
|
2392 |
+
#@ gravityforms
|
2393 |
+
msgid "Enter an amount"
|
2394 |
+
msgstr "یک مقدار وارد نمایید"
|
2395 |
+
|
2396 |
+
#: form_detail.php:1506
|
2397 |
+
#@ gravityforms
|
2398 |
+
msgid "Enter name"
|
2399 |
+
msgstr "نام را وارد نمایید"
|
2400 |
+
|
2401 |
+
#: tooltips.php:166
|
2402 |
+
#@ gravityforms
|
2403 |
+
msgid "Enter text to display at the top of the progress bar."
|
2404 |
+
msgstr "متن را که می خواهید بالای نوار پیشرفت نمایش داده شود را وارد کنید."
|
2405 |
+
|
2406 |
+
#: tooltips.php:109
|
2407 |
+
#@ gravityforms
|
2408 |
+
msgid "Enter the CSS class name you would like to use in order to override the default styles for this field."
|
2409 |
+
msgstr "کلاس CSS که می خواهید برای بازنویسی استایل پیش فرض این فیلد استفاده کنید را وارد کنید."
|
2410 |
+
|
2411 |
+
#: tooltips.php:45
|
2412 |
+
#@ gravityforms
|
2413 |
+
msgid "Enter the CSS class name you would like to use in order to override the default styles for this form."
|
2414 |
+
msgstr "نام کلاس CSS که می خواهید به جای استایل پیشفرض این فرم استفاده شود را وارد کنید."
|
2415 |
+
|
2416 |
+
#: tooltips.php:51
|
2417 |
+
#@ gravityforms
|
2418 |
+
msgid "Enter the URL of the webpage you would like the user to be redirected to after they have submitted the form."
|
2419 |
+
msgstr "آدرسی که می خواهید کاربر بعد از ارسال فرم به آن هدایت شود را وارد کنید."
|
2420 |
+
|
2421 |
+
#: tooltips.php:90
|
2422 |
+
#@ gravityforms
|
2423 |
+
msgid "Enter the admin label of the form field. Entering a value in this field will override the Field Label when displayed in the Gravity Forms administration tool."
|
2424 |
+
msgstr "برچسب مدیریت فیلد را وارد کنید. وارد کردن این مقدار باعث می شود که این برچسب هنگام نمایش در فرمهای مدیریت جایگزین شود."
|
2425 |
+
|
2426 |
+
#: tooltips.php:78
|
2427 |
+
#@ gravityforms
|
2428 |
+
msgid "Enter the allowed file extensions for file uploads. This will limit the type of files a user may upload."
|
2429 |
+
msgstr "پسوندهای مجاز برای بارگذاری فایل را وارد کنید. این کار نوع فایل های که کاربر می تواند بارگذاری کند را محدود کند."
|
2430 |
+
|
2431 |
+
#: tooltips.php:140
|
2432 |
+
#@ gravityforms
|
2433 |
+
msgid "Enter the base price for this product."
|
2434 |
+
msgstr "قیمت پایه را برای این محصول وارد کنید."
|
2435 |
+
|
2436 |
+
#: tooltips.php:139
|
2437 |
+
#@ gravityforms
|
2438 |
+
msgid "Enter the content (Text or HTML) to be displayed on the form."
|
2439 |
+
msgstr "محتوایی که می خواهید (متن یا HTML ) در فرم نمایش داده شود را وارد کنید."
|
2440 |
+
|
2441 |
+
#: tooltips.php:83
|
2442 |
+
#@ gravityforms
|
2443 |
+
msgid "Enter the description for the form field. This will be displayed to the user and provide some direction on how the field should be filled out or selected."
|
2444 |
+
msgstr "برای فیلد، توضیحات را وارد کنید. این توضیحات برای راهنمایی انتخاب ها و پر کردن فیلدها به کاربران نمایش داده می شود."
|
2445 |
+
|
2446 |
+
#: tooltips.php:29
|
2447 |
+
#@ gravityforms
|
2448 |
+
msgid "Enter the email address you would like the notification email sent from, or select the email from available email form fields."
|
2449 |
+
msgstr "آدرس ایمیلی که می خواهید اعلان ها از آن ارسال شوند را وارد کنید، یا از ایمیل های موجود انتخاب کنید. "
|
2450 |
+
|
2451 |
+
#: tooltips.php:26
|
2452 |
+
#@ gravityforms
|
2453 |
+
msgid "Enter the email address you would like the notification email sent to."
|
2454 |
+
msgstr ".آدرس ایمیلی که می خواهید ایمیل اعلان ها به آن ارسال شود را وارد کنید"
|
2455 |
+
|
2456 |
+
#: tooltips.php:31
|
2457 |
+
#@ gravityforms
|
2458 |
+
msgid "Enter the email address you would like to be used as the reply to address for the notification email."
|
2459 |
+
msgstr "ایمیلی را که می خواهید برای آدرس پاسخ به برای ایمیل اعلان استفاده شود را وارد کنید."
|
2460 |
+
|
2461 |
+
#: tooltips.php:54
|
2462 |
+
#@ gravityforms
|
2463 |
+
msgid "Enter the label for this HTML block. It will help you identify your HTML blocks in the form editor, but it will not be displayed on the form."
|
2464 |
+
msgstr "برچسب بلاک HTML را وارد کنید. این کار به شما کمک می کند تا بلاک های HTML خود را در فرم تشخیص دهید، آنها در فرم نمایش داده نخواهند شد. "
|
2465 |
+
|
2466 |
+
#: tooltips.php:53
|
2467 |
+
#@ gravityforms
|
2468 |
+
msgid "Enter the label of the form field. This is the field title the user will see when filling out the form."
|
2469 |
+
msgstr "برچسب فیلد را وارد کنید. این عنوان فیلد است که کاربر در هنگام پر کردن فرم مشاهده می کند."
|
2470 |
+
|
2471 |
+
#: tooltips.php:104
|
2472 |
+
#@ gravityforms
|
2473 |
+
msgid "Enter the label to be displayed next to the check box. For example, "same as shipping address"."
|
2474 |
+
msgstr "برچسبی که در کنار چک باکس نمایش داده می شود را وارد کنید. برای مثال " همان آدرس حمل و نقل " ."
|
2475 |
+
|
2476 |
+
#: tooltips.php:60
|
2477 |
+
#@ gravityforms
|
2478 |
+
msgid "Enter the maximum number of characters that this field is allowed to have."
|
2479 |
+
msgstr "بیشترین تعداد کاراکتر مجاز برای این فیلد را وارد کنید."
|
2480 |
+
|
2481 |
+
#: tooltips.php:61
|
2482 |
+
#@ gravityforms
|
2483 |
+
msgid "Enter the maximum number of rows that users are allowed to add."
|
2484 |
+
msgstr "بیشترین تعداد سطر را که توسط کاربران می تواند اضافه شود را وارد کنید"
|
2485 |
+
|
2486 |
+
#: tooltips.php:86
|
2487 |
+
#@ gravityforms
|
2488 |
+
msgid "Enter the minimum and maximum values for this form field. This will require that the value entered by the user must fall within this range."
|
2489 |
+
msgstr "حداقل و حداکثر مقدار این فیلد را وارد کنید. این کار باعث می شود که مقدار وارد شده در این بازه باشد."
|
2490 |
+
|
2491 |
+
#: tooltips.php:30
|
2492 |
+
#@ gravityforms
|
2493 |
+
msgid "Enter the name you would like the notification email sent from, or select the name from available name fields."
|
2494 |
+
msgstr "نامی را که می خواهید اعلان ها با این نام ارسال شوند را وارد کنید، یا از نام های موجود انتخاب کنید."
|
2495 |
+
|
2496 |
+
#: tooltips.php:44
|
2497 |
+
#@ gravityforms
|
2498 |
+
msgid "Enter the path to an image you would like to use as the form submit button."
|
2499 |
+
msgstr "آدرس تصویری که می خواهید برای دکمه ارسال فرم استفاده شود را وارد کنید."
|
2500 |
+
|
2501 |
+
#: tooltips.php:123
|
2502 |
+
#@ gravityforms
|
2503 |
+
msgid "Enter the path to an image you would like to use as the page next button."
|
2504 |
+
msgstr "آدرس تصویری که می خواهید برای دکمه بعدی استفاده شود را وارد کنید."
|
2505 |
+
|
2506 |
+
#: tooltips.php:125
|
2507 |
+
#@ gravityforms
|
2508 |
+
msgid "Enter the path to an image you would like to use as the page previous button."
|
2509 |
+
msgstr "آدرس تصویری که می خواهید برای دکمه قبلی استفاده شود را وارد کنید."
|
2510 |
+
|
2511 |
+
#: tooltips.php:48
|
2512 |
+
#@ gravityforms
|
2513 |
+
msgid "Enter the text you would like the user to see on the confirmation page of this form."
|
2514 |
+
msgstr "متنی که می خواهید کاربر در صفحه تاییدیه این فرم مشاهده کند را وارد کنید."
|
2515 |
+
|
2516 |
+
#: tooltips.php:43
|
2517 |
+
#@ gravityforms
|
2518 |
+
msgid "Enter the text you would like to appear on the form submit button."
|
2519 |
+
msgstr "متنی را که می خواهید در دکمه ارسال فرم نمایش داده شود را وارد کنید."
|
2520 |
+
|
2521 |
+
#: tooltips.php:122
|
2522 |
+
#@ gravityforms
|
2523 |
+
msgid "Enter the text you would like to appear on the page next button."
|
2524 |
+
msgstr "متنی را که می خواهید در دکمه بعدی نمایش داده شود وارد کنید."
|
2525 |
+
|
2526 |
+
#: tooltips.php:124
|
2527 |
+
#@ gravityforms
|
2528 |
+
msgid "Enter the text you would like to appear on the page previous button."
|
2529 |
+
msgstr "متنی را که می خواهید در دکمه قبلی نمایش داده شود وارد کنید."
|
2530 |
+
|
2531 |
+
#: tooltips.php:38
|
2532 |
+
#@ gravityforms
|
2533 |
+
msgid "Enter the title of your form."
|
2534 |
+
msgstr "عنوان فرم را وارد کنید."
|
2535 |
+
|
2536 |
+
#: notification.php:454
|
2537 |
+
#: notification.php:1397
|
2538 |
+
#@ gravityforms
|
2539 |
+
msgid "Enter value"
|
2540 |
+
msgstr "مقدار را وارد کنید"
|
2541 |
+
|
2542 |
+
#: tooltips.php:91
|
2543 |
+
#@ gravityforms
|
2544 |
+
msgid "Enter values in this setting to override the Sub-Label for each field."
|
2545 |
+
msgstr "در این تنظیمات مقادیر را برای تغییر برچسب فرعی هر فیلد وارد کنید."
|
2546 |
+
|
2547 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:21
|
2548 |
+
#, php-format
|
2549 |
+
#@ gravityforms
|
2550 |
+
msgid "Enter your Gravity Forms License Key below. Your key unlocks access to automatic updates, the add-on installer, and support. You can find your key on the My Account page on the %sGravity Forms%s site."
|
2551 |
+
msgstr "کد لایسنس Gravity Forms خود را در زیر وارد کنید. کد شما دسترسی به بروزرسانی های خودکار، نصب افرودنی ها و پشتیبانی را فراهم می کند. شما می توانید کد خود را در صفحه حساب کاربری خود در سایت %sGravity Forms%s بیابید."
|
2552 |
+
|
2553 |
+
#: form_list.php:516
|
2554 |
+
#: gravityforms.php:1773
|
2555 |
+
#: gravityforms.php:4221
|
2556 |
+
#: gravityforms.php:4512
|
2557 |
+
#@ gravityforms
|
2558 |
+
msgid "Entries"
|
2559 |
+
msgstr "صندوق ورودی"
|
2560 |
+
|
2561 |
+
#: tooltips.php:162
|
2562 |
+
#@ gravityforms
|
2563 |
+
msgid "Entries Conversion"
|
2564 |
+
msgstr "درصد تبدیل ورودی ها"
|
2565 |
+
|
2566 |
+
#: includes/webapi/webapi.php:1093
|
2567 |
+
#, php-format
|
2568 |
+
#@ gravityforms
|
2569 |
+
msgid "Entries deleted successfully: %d"
|
2570 |
+
msgstr "ورودی ها با موفقیت حذف شدند: %d"
|
2571 |
+
|
2572 |
+
#: form_list.php:799
|
2573 |
+
#, php-format
|
2574 |
+
#@ gravityforms
|
2575 |
+
msgid "Entries for %s form have been deleted."
|
2576 |
+
msgid_plural "Entries for %s forms have been deleted."
|
2577 |
+
msgstr[0] "ورودی ها برای فرم %s حذف شدند."
|
2578 |
+
msgstr[1] "ورودی ها برای فرم های %s حذف شدند."
|
2579 |
+
|
2580 |
+
#: includes/addon/class-gf-results.php:410
|
2581 |
+
#, php-format
|
2582 |
+
#@ gravityforms
|
2583 |
+
msgid "Entries processed: %1$d of %2$d"
|
2584 |
+
msgstr "پردازش پیام های ورودی : %1$d از %2$d"
|
2585 |
+
|
2586 |
+
#: includes/webapi/webapi.php:935
|
2587 |
+
#@ gravityforms
|
2588 |
+
msgid "Entries updated successfully"
|
2589 |
+
msgstr "ورودی ها با موفقیت آپدیت شد"
|
2590 |
+
|
2591 |
+
#: entry_detail.php:35
|
2592 |
+
#@ gravityforms
|
2593 |
+
msgid "Entry"
|
2594 |
+
msgstr "پیام ورودی"
|
2595 |
+
|
2596 |
+
#: entry_detail.php:872
|
2597 |
+
#: print-entry.php:127
|
2598 |
+
#@ gravityforms
|
2599 |
+
msgid "Entry # "
|
2600 |
+
msgstr "پیام ورودی # "
|
2601 |
+
|
2602 |
+
#: common.php:4232
|
2603 |
+
#: export.php:852
|
2604 |
+
#: forms_model.php:4469
|
2605 |
+
#: includes/addon/class-gf-addon.php:1942
|
2606 |
+
#: select_columns.php:177
|
2607 |
+
#@ gravityforms
|
2608 |
+
msgid "Entry Date"
|
2609 |
+
msgstr "تاریخ پیام ورودی"
|
2610 |
+
|
2611 |
+
#: common.php:4228
|
2612 |
+
#: includes/addon/class-gf-addon.php:1941
|
2613 |
+
#@ gravityforms
|
2614 |
+
msgid "Entry ID"
|
2615 |
+
msgstr "شماره پیام ورودی"
|
2616 |
+
|
2617 |
+
#: common.php:510
|
2618 |
+
#: entry_detail.php:1210
|
2619 |
+
#: entry_list.php:746
|
2620 |
+
#: export.php:851
|
2621 |
+
#: forms_model.php:4463
|
2622 |
+
#: select_columns.php:176
|
2623 |
+
#@ gravityforms
|
2624 |
+
msgid "Entry Id"
|
2625 |
+
msgstr "شماره پیام ورودی"
|
2626 |
+
|
2627 |
+
#: form_settings.php:684
|
2628 |
+
#@ gravityforms
|
2629 |
+
msgid "Entry Limit Reached Message"
|
2630 |
+
msgstr "پیامی که هنگام رسیدن پیامهای ورودی به میزان محدود شده نمایش داده می شود"
|
2631 |
+
|
2632 |
+
#: entry_list.php:1783
|
2633 |
+
#@ gravityforms
|
2634 |
+
msgid "Entry List"
|
2635 |
+
msgstr "لیست پیام ورودی ها"
|
2636 |
+
|
2637 |
+
#: entry_list.php:367
|
2638 |
+
#@ gravityforms
|
2639 |
+
msgctxt "Entry List"
|
2640 |
+
msgid "All"
|
2641 |
+
msgstr "همه"
|
2642 |
+
|
2643 |
+
#: entry_list.php:383
|
2644 |
+
#@ gravityforms
|
2645 |
+
msgctxt "Entry List"
|
2646 |
+
msgid "Starred"
|
2647 |
+
msgstr "ستاره دار"
|
2648 |
+
|
2649 |
+
#: entry_list.php:375
|
2650 |
+
#@ gravityforms
|
2651 |
+
msgctxt "Entry List"
|
2652 |
+
msgid "Unread"
|
2653 |
+
msgstr "خوانده نشده"
|
2654 |
+
|
2655 |
+
#: common.php:511
|
2656 |
+
#@ gravityforms
|
2657 |
+
msgid "Entry URL"
|
2658 |
+
msgstr "لینک پیام ورودی"
|
2659 |
+
|
2660 |
+
#: entry_detail.php:654
|
2661 |
+
#@ gravityforms
|
2662 |
+
msgid "Entry Updated."
|
2663 |
+
msgstr "پیام ورودی بروز رسانی شد."
|
2664 |
+
|
2665 |
+
#: entry_list.php:1245
|
2666 |
+
#@ gravityforms
|
2667 |
+
msgid "Entry deleted."
|
2668 |
+
msgstr "پیام ورودی حذف شد."
|
2669 |
+
|
2670 |
+
#: includes/api.php:594
|
2671 |
+
#@ gravityforms
|
2672 |
+
msgid "Entry not found"
|
2673 |
+
msgstr "پیام ورودی یافت نشد"
|
2674 |
+
|
2675 |
+
#: includes/webapi/webapi.php:935
|
2676 |
+
#@ gravityforms
|
2677 |
+
msgid "Entry updated successfully"
|
2678 |
+
msgstr "ورودی با موفقیت آپدیت شد"
|
2679 |
+
|
2680 |
+
#: includes/api.php:501
|
2681 |
+
#, php-format
|
2682 |
+
#@ gravityforms
|
2683 |
+
msgid "Entry with id %s not found"
|
2684 |
+
msgstr "پیام ورودی با شماره %s یافت نشد"
|
2685 |
+
|
2686 |
+
#: gravityforms.php:4707
|
2687 |
+
#: includes/locking/class-gf-locking.php:209
|
2688 |
+
#@ gravityforms
|
2689 |
+
msgid "Error"
|
2690 |
+
msgstr "خطا"
|
2691 |
+
|
2692 |
+
#: includes/addon/class-gf-results.php:82
|
2693 |
+
#@ gravityforms
|
2694 |
+
msgid "Error retrieving results. If the problem persists, please contact support."
|
2695 |
+
msgstr "خطای در بازیابی نتایج رخ داده است، اگر مشکل باقی ماند با پشتیبانی تماس بگیرید."
|
2696 |
+
|
2697 |
+
#: includes/api.php:191
|
2698 |
+
#@ gravityforms
|
2699 |
+
msgid "Error updating form"
|
2700 |
+
msgstr "خطا در بروزرسانی فرم"
|
2701 |
+
|
2702 |
+
#: includes/api.php:197
|
2703 |
+
#@ gravityforms
|
2704 |
+
msgid "Error updating form confirmations"
|
2705 |
+
msgstr "خطایی در بروزرسانی تاییدیه ها"
|
2706 |
+
|
2707 |
+
#: includes/api.php:204
|
2708 |
+
#@ gravityforms
|
2709 |
+
msgid "Error updating form notifications"
|
2710 |
+
msgstr "خطایی در بروزرسانی اعلان ها"
|
2711 |
+
|
2712 |
+
#: includes/api.php:212
|
2713 |
+
#@ gravityforms
|
2714 |
+
msgid "Error updating title"
|
2715 |
+
msgstr "خطا در بروز رسانی عنوان"
|
2716 |
+
|
2717 |
+
#: form_display.php:910
|
2718 |
+
#@ gravityforms
|
2719 |
+
msgid "Errors have been highlighted below."
|
2720 |
+
msgstr "خطاها در زیر مشخص شده اند ."
|
2721 |
+
|
2722 |
+
#: form_detail.php:1450
|
2723 |
+
#@ gravityforms
|
2724 |
+
msgid "Europe"
|
2725 |
+
msgstr "اروپا"
|
2726 |
+
|
2727 |
+
#: notification.php:745
|
2728 |
+
#: notification.php:1572
|
2729 |
+
#@ gravityforms
|
2730 |
+
msgid "Event"
|
2731 |
+
msgstr "رویداد"
|
2732 |
+
|
2733 |
+
#: form_detail.php:2274
|
2734 |
+
#@ gravityforms
|
2735 |
+
msgid "Everyone"
|
2736 |
+
msgstr "هرکسی"
|
2737 |
+
|
2738 |
+
#: form_detail.php:1694
|
2739 |
+
#@ gravityforms
|
2740 |
+
msgid "Examples"
|
2741 |
+
msgstr "مثال ها"
|
2742 |
+
|
2743 |
+
#: includes/fields/class-gf-field-post-excerpt.php:12
|
2744 |
+
#@ gravityforms
|
2745 |
+
msgid "Excerpt"
|
2746 |
+
msgstr "چکیده"
|
2747 |
+
|
2748 |
+
#: form_detail.php:870
|
2749 |
+
#@ gravityforms
|
2750 |
+
msgid "Existing"
|
2751 |
+
msgstr "موجود"
|
2752 |
+
|
2753 |
+
#: includes/fields/class-gf-field-creditcard.php:203
|
2754 |
+
#: js.php:638
|
2755 |
+
#: js.php:945
|
2756 |
+
#@ gravityforms
|
2757 |
+
msgid "Expiration Date"
|
2758 |
+
msgstr "تاریخ انقضا"
|
2759 |
+
|
2760 |
+
#: includes/fields/class-gf-field-creditcard.php:404
|
2761 |
+
#: js.php:637
|
2762 |
+
#: js.php:944
|
2763 |
+
#@ gravityforms
|
2764 |
+
msgid "Expiration Month"
|
2765 |
+
msgstr "ماه انقضا"
|
2766 |
+
|
2767 |
+
#: includes/fields/class-gf-field-creditcard.php:409
|
2768 |
+
#: js.php:639
|
2769 |
+
#: js.php:946
|
2770 |
+
#@ gravityforms
|
2771 |
+
msgid "Expiration Year"
|
2772 |
+
msgstr "سال انقضا"
|
2773 |
+
|
2774 |
+
#: tooltips.php:152
|
2775 |
+
#@ gravityforms
|
2776 |
+
msgid "Export Date Range"
|
2777 |
+
msgstr "بازه زمانی برون ریزی"
|
2778 |
+
|
2779 |
+
#: export.php:363
|
2780 |
+
#: export.php:953
|
2781 |
+
#@ gravityforms
|
2782 |
+
msgid "Export Entries"
|
2783 |
+
msgstr "خروجی گرفتن پیام های ورودی"
|
2784 |
+
|
2785 |
+
#: export.php:316
|
2786 |
+
#: export.php:957
|
2787 |
+
#@ gravityforms
|
2788 |
+
msgid "Export Forms"
|
2789 |
+
msgstr "خروجی گرفتن فرم ها"
|
2790 |
+
|
2791 |
+
#: tooltips.php:151
|
2792 |
+
#@ gravityforms
|
2793 |
+
msgid "Export Selected Fields"
|
2794 |
+
msgstr "فیلد های انتخاب شده برای برون ریزی"
|
2795 |
+
|
2796 |
+
#: tooltips.php:148
|
2797 |
+
#@ gravityforms
|
2798 |
+
msgid "Export Selected Form"
|
2799 |
+
msgstr "فرم انتخاب شده برای برون ریزی"
|
2800 |
+
|
2801 |
+
#: tooltips.php:149
|
2802 |
+
#@ gravityforms
|
2803 |
+
msgid "Export Selected Forms"
|
2804 |
+
msgstr "فرم های انتخاب شده برای برون ریزی"
|
2805 |
+
|
2806 |
+
#: export.php:413
|
2807 |
+
#@ gravityforms
|
2808 |
+
msgid "Export entries if {0} of the following match:"
|
2809 |
+
msgstr "اگر {0} از موارد زیر تطابق داشت از ورودی ها خروجی بگیر"
|
2810 |
+
|
2811 |
+
#: form_detail.php:1211
|
2812 |
+
#@ gravityforms
|
2813 |
+
msgid "Extended"
|
2814 |
+
msgstr "پیشرفته"
|
2815 |
+
|
2816 |
+
#: form_detail.php:1467
|
2817 |
+
#@ gravityforms
|
2818 |
+
msgid "Extra Large"
|
2819 |
+
msgstr "بسیار بزرگ"
|
2820 |
+
|
2821 |
+
#: form_detail.php:1467
|
2822 |
+
#@ gravityforms
|
2823 |
+
msgid "Extra Small"
|
2824 |
+
msgstr "بسیار کوچک"
|
2825 |
+
|
2826 |
+
#: includes/addon/class-gf-payment-addon.php:499
|
2827 |
+
#, php-format
|
2828 |
+
#@ gravityforms
|
2829 |
+
msgid "Failed to capture %s. Reason: %s."
|
2830 |
+
msgstr "ناموفق در %s. دلیل: %s."
|
2831 |
+
|
2832 |
+
#: gravityforms.php:2599
|
2833 |
+
#@ gravityforms
|
2834 |
+
msgid "Failed to load the preview for this form."
|
2835 |
+
msgstr "در بارگزاری پیشنمایش این فرم مشکلی رخ داده است ."
|
2836 |
+
|
2837 |
+
#: includes/upload.php:199
|
2838 |
+
#@ gravityforms
|
2839 |
+
msgid "Failed to move uploaded file."
|
2840 |
+
msgstr "شکست در انتقال فایل های بارگذاری شده."
|
2841 |
+
|
2842 |
+
#: includes/upload.php:189
|
2843 |
+
#: includes/upload.php:213
|
2844 |
+
#@ gravityforms
|
2845 |
+
msgid "Failed to open input stream."
|
2846 |
+
msgstr "شکست در بازکردن جریان ورودی."
|
2847 |
+
|
2848 |
+
#: includes/upload.php:196
|
2849 |
+
#: includes/upload.php:219
|
2850 |
+
#@ gravityforms
|
2851 |
+
msgid "Failed to open output stream."
|
2852 |
+
msgstr "شکست در بازکردن جریان خروجی."
|
2853 |
+
|
2854 |
+
#: includes/upload.php:160
|
2855 |
+
#@ gravityforms
|
2856 |
+
msgid "Failed to open temp directory."
|
2857 |
+
msgstr "شکست در بازکردن دایرکتوری موقت ."
|
2858 |
+
|
2859 |
+
#: includes/upload.php:29
|
2860 |
+
#: includes/upload.php:57
|
2861 |
+
#@ gravityforms
|
2862 |
+
msgid "Failed to upload file."
|
2863 |
+
msgstr "شکست در بارگذاری فایل ."
|
2864 |
+
|
2865 |
+
#: form_detail.php:1459
|
2866 |
+
#@ gravityforms
|
2867 |
+
msgid "February"
|
2868 |
+
msgstr "فوریه"
|
2869 |
+
|
2870 |
+
#: includes/addon/class-gf-feed-addon.php:883
|
2871 |
+
#@ gravityforms
|
2872 |
+
msgid "Feed Settings"
|
2873 |
+
msgstr "تنظیمات خوراک"
|
2874 |
+
|
2875 |
+
#: includes/api.php:1164
|
2876 |
+
#: includes/api.php:1188
|
2877 |
+
#, php-format
|
2878 |
+
#@ gravityforms
|
2879 |
+
msgid "Feed id %s not found"
|
2880 |
+
msgstr "خوراک با شماره %s وجود ندارد"
|
2881 |
+
|
2882 |
+
#: includes/api.php:1129
|
2883 |
+
#@ gravityforms
|
2884 |
+
msgid "Feed not found"
|
2885 |
+
msgstr "خوراک یافت نشد"
|
2886 |
+
|
2887 |
+
#: includes/addon/class-gf-feed-addon.php:1006
|
2888 |
+
#@ gravityforms
|
2889 |
+
msgid "Feed updated successfully."
|
2890 |
+
msgstr "خوراک با موفقیت بروز شدند ."
|
2891 |
+
|
2892 |
+
#: includes/webapi/webapi.php:726
|
2893 |
+
#, php-format
|
2894 |
+
#@ gravityforms
|
2895 |
+
msgid "Feeds deleted successfully: %d"
|
2896 |
+
msgstr "خوراک ها با موفقیت حذف شد : %d"
|
2897 |
+
|
2898 |
+
#: includes/webapi/webapi.php:765
|
2899 |
+
#, php-format
|
2900 |
+
#@ gravityforms
|
2901 |
+
msgid "Feeds updated: %d"
|
2902 |
+
msgstr "خوراک ها بروز رسانی شد: %d"
|
2903 |
+
|
2904 |
+
#: form_detail.php:1451
|
2905 |
+
#@ gravityforms
|
2906 |
+
msgid "Female"
|
2907 |
+
msgstr "مونت"
|
2908 |
+
|
2909 |
+
#: includes/addon/class-gf-addon.php:1914
|
2910 |
+
#: js.php:258
|
2911 |
+
#@ gravityforms
|
2912 |
+
msgid "Field"
|
2913 |
+
msgstr "فیلد"
|
2914 |
+
|
2915 |
+
#: tooltips.php:111
|
2916 |
+
#@ gravityforms
|
2917 |
+
msgid "Field Choices"
|
2918 |
+
msgstr "گزینه های فیلد"
|
2919 |
+
|
2920 |
+
#: tooltips.php:76
|
2921 |
+
#@ gravityforms
|
2922 |
+
msgid "Field Date Format"
|
2923 |
+
msgstr "قالب فیلد تاریخ"
|
2924 |
+
|
2925 |
+
#: tooltips.php:83
|
2926 |
+
#@ gravityforms
|
2927 |
+
msgid "Field Description"
|
2928 |
+
msgstr "توضیحات فیلد"
|
2929 |
+
|
2930 |
+
#: includes/fields/class-gf-field.php:801
|
2931 |
+
#@ gravityforms
|
2932 |
+
msgid "Field ID"
|
2933 |
+
msgstr "شماره فیلد :"
|
2934 |
+
|
2935 |
+
#: form_detail.php:529
|
2936 |
+
#: tooltips.php:53
|
2937 |
+
#: tooltips.php:54
|
2938 |
+
#@ gravityforms
|
2939 |
+
msgid "Field Label"
|
2940 |
+
msgstr "برچسب فیلد"
|
2941 |
+
|
2942 |
+
#: form_detail.php:1946
|
2943 |
+
#@ gravityforms
|
2944 |
+
msgid "Field Label Visibility"
|
2945 |
+
msgstr "نمایش برچسب فیلد"
|
2946 |
+
|
2947 |
+
#: tooltips.php:72
|
2948 |
+
#@ gravityforms
|
2949 |
+
msgid "Field Name Format"
|
2950 |
+
msgstr "قالب نام فیلد"
|
2951 |
+
|
2952 |
+
#: form_detail.php:2033
|
2953 |
+
#: tooltips.php:95
|
2954 |
+
#@ gravityforms
|
2955 |
+
msgid "Field Size"
|
2956 |
+
msgstr "اندازه فیلد"
|
2957 |
+
|
2958 |
+
#: form_detail.php:562
|
2959 |
+
#: form_detail.php:579
|
2960 |
+
#: form_detail.php:614
|
2961 |
+
#: form_detail.php:628
|
2962 |
+
#: form_detail.php:642
|
2963 |
+
#: form_detail.php:754
|
2964 |
+
#: form_detail.php:784
|
2965 |
+
#: form_detail.php:982
|
2966 |
+
#@ gravityforms
|
2967 |
+
msgid "Field Type"
|
2968 |
+
msgstr "نوع فیلد"
|
2969 |
+
|
2970 |
+
#: tooltips.php:59
|
2971 |
+
#@ gravityforms
|
2972 |
+
msgid "Field type"
|
2973 |
+
msgstr "نوع فیلد"
|
2974 |
+
|
2975 |
+
#: includes/addon/class-gf-addon.php:1090
|
2976 |
+
#, php-format
|
2977 |
+
#@ gravityforms
|
2978 |
+
msgid "Field type '%s' has not been implemented"
|
2979 |
+
msgstr "نوع فیلد '%s' اجرا نشده است ."
|
2980 |
+
|
2981 |
+
#: includes/fields/class-gf-field-post-image.php:67
|
2982 |
+
#: js.php:696
|
2983 |
+
#@ gravityforms
|
2984 |
+
msgid "File"
|
2985 |
+
msgstr "فایل"
|
2986 |
+
|
2987 |
+
#: form_detail.php:774
|
2988 |
+
#: includes/fields/class-gf-field-fileupload.php:13
|
2989 |
+
#@ gravityforms
|
2990 |
+
msgid "File Upload"
|
2991 |
+
msgstr "بارگذاری فایل"
|
2992 |
+
|
2993 |
+
#: common.php:4404
|
2994 |
+
#@ gravityforms
|
2995 |
+
msgid "File exceeds size limit"
|
2996 |
+
msgstr "اندازه فایل بیش از حد مجاز می باشد"
|
2997 |
+
|
2998 |
+
#: includes/fields/class-gf-field-fileupload.php:51
|
2999 |
+
#: includes/fields/class-gf-field-fileupload.php:63
|
3000 |
+
#: includes/upload.php:99
|
3001 |
+
#, php-format
|
3002 |
+
#@ gravityforms
|
3003 |
+
msgid "File exceeds size limit. Maximum file size: %dMB"
|
3004 |
+
msgstr "اندازه فایل بیش از حد مجاز است . اندازه مجاز %dMB می باشد ."
|
3005 |
+
|
3006 |
+
#: tooltips.php:150
|
3007 |
+
#@ gravityforms
|
3008 |
+
msgid "Filter the entries by adding conditions."
|
3009 |
+
msgstr "ورودی ها را با اضافه کردن شرط مرتب کنید."
|
3010 |
+
|
3011 |
+
#: includes/addon/class-gf-results.php:258
|
3012 |
+
#: includes/addon/class-gf-results.php:347
|
3013 |
+
#@ gravityforms
|
3014 |
+
msgid "Filters"
|
3015 |
+
msgstr "فیلتر ها"
|
3016 |
+
|
3017 |
+
#: includes/fields/class-gf-field-name.php:118
|
3018 |
+
#: includes/fields/class-gf-field-name.php:239
|
3019 |
+
#: js.php:857
|
3020 |
+
#@ gravityforms
|
3021 |
+
msgid "First"
|
3022 |
+
msgstr "نام"
|
3023 |
+
|
3024 |
+
#: js.php:592
|
3025 |
+
#: js.php:606
|
3026 |
+
#: js.php:607
|
3027 |
+
#: js.php:618
|
3028 |
+
#: js.php:619
|
3029 |
+
#@ gravityforms
|
3030 |
+
msgid "First Choice"
|
3031 |
+
msgstr "انتخاب اول"
|
3032 |
+
|
3033 |
+
#: js.php:789
|
3034 |
+
#@ gravityforms
|
3035 |
+
msgid "First Option"
|
3036 |
+
msgstr "گزینه اول"
|
3037 |
+
|
3038 |
+
#: includes/fields/class-gf-field-name.php:100
|
3039 |
+
#@ gravityforms
|
3040 |
+
msgid "First name"
|
3041 |
+
msgstr "نام"
|
3042 |
+
|
3043 |
+
#: form_detail.php:830
|
3044 |
+
#@ gravityforms
|
3045 |
+
msgid "Font Color"
|
3046 |
+
msgstr "رنگ فونت"
|
3047 |
+
|
3048 |
+
#: tooltips.php:67
|
3049 |
+
#@ gravityforms
|
3050 |
+
msgid "For addresses that only apply to one country, you can choose to not display the country drop down. Entries will still be recorded with the selected country."
|
3051 |
+
msgstr "برای آدرس های که برای یک کشور وارد می کنید می توانید انتخاب کنید که کشورها به صورت کشویی نمایش داده نشوند. ورودی ها می توانند با انتخاب کشور ثبت شوند."
|
3052 |
+
|
3053 |
+
#: includes/webapi/webapi.php:1789
|
3054 |
+
#@ gravityforms
|
3055 |
+
msgid "Forbidden"
|
3056 |
+
msgstr "ممنوع !"
|
3057 |
+
|
3058 |
+
#: form_detail.php:2262
|
3059 |
+
#: tooltips.php:74
|
3060 |
+
#@ gravityforms
|
3061 |
+
msgid "Force SSL"
|
3062 |
+
msgstr "اجبار به SSL"
|
3063 |
+
|
3064 |
+
#: gravityforms.php:4436
|
3065 |
+
#: widget.php:38
|
3066 |
+
#@ gravityforms
|
3067 |
+
msgid "Form"
|
3068 |
+
msgstr "فرم"
|
3069 |
+
|
3070 |
+
#: form_settings.php:905
|
3071 |
+
#@ gravityforms
|
3072 |
+
msgid "Form Basics"
|
3073 |
+
msgstr "پایه ها فرم"
|
3074 |
+
|
3075 |
+
#: form_settings.php:907
|
3076 |
+
#@ gravityforms
|
3077 |
+
msgid "Form Button"
|
3078 |
+
msgstr "دکمه فرم"
|
3079 |
+
|
3080 |
+
#: tooltips.php:44
|
3081 |
+
#@ gravityforms
|
3082 |
+
msgid "Form Button Image"
|
3083 |
+
msgstr "تصویر دکمه فرم"
|
3084 |
+
|
3085 |
+
#: tooltips.php:43
|
3086 |
+
#@ gravityforms
|
3087 |
+
msgid "Form Button Text"
|
3088 |
+
msgstr "متن دکمه فرم"
|
3089 |
+
|
3090 |
+
#: tooltips.php:45
|
3091 |
+
#@ gravityforms
|
3092 |
+
msgid "Form CSS Class Name"
|
3093 |
+
msgstr "نام کلاس CSS فرم"
|
3094 |
+
|
3095 |
+
#: form_list.php:100
|
3096 |
+
#: tooltips.php:39
|
3097 |
+
#@ gravityforms
|
3098 |
+
msgid "Form Description"
|
3099 |
+
msgstr "توضیحات فرم "
|
3100 |
+
|
3101 |
+
#: form_settings.php:824
|
3102 |
+
#@ gravityforms
|
3103 |
+
msgid "Form Expired Message"
|
3104 |
+
msgstr "پیام منقضی شدن فرم"
|
3105 |
+
|
3106 |
+
#: includes/addon/class-gf-addon.php:1881
|
3107 |
+
#@ gravityforms
|
3108 |
+
msgid "Form Field"
|
3109 |
+
msgstr "فیلد فرم"
|
3110 |
+
|
3111 |
+
#: common.php:512
|
3112 |
+
#@ gravityforms
|
3113 |
+
msgid "Form Id"
|
3114 |
+
msgstr "شماره فرم"
|
3115 |
+
|
3116 |
+
#: print-entry.php:105
|
3117 |
+
#@ gravityforms
|
3118 |
+
msgid "Form Id and Lead Id are required parameters."
|
3119 |
+
msgstr "شماره فرم و کد رهگیری متغیر های ضروری هستند. "
|
3120 |
+
|
3121 |
+
#: tooltips.php:40
|
3122 |
+
#@ gravityforms
|
3123 |
+
msgid "Form Label Placement"
|
3124 |
+
msgstr "محل قرار گیری برچسب"
|
3125 |
+
|
3126 |
+
#: form_settings.php:906
|
3127 |
+
#@ gravityforms
|
3128 |
+
msgid "Form Layout"
|
3129 |
+
msgstr "طرح بندی فرم"
|
3130 |
+
|
3131 |
+
#: form_list.php:431
|
3132 |
+
#@ gravityforms
|
3133 |
+
msgctxt "Form List"
|
3134 |
+
msgid "Active"
|
3135 |
+
msgstr "فعال"
|
3136 |
+
|
3137 |
+
#: form_list.php:430
|
3138 |
+
#@ gravityforms
|
3139 |
+
msgctxt "Form List"
|
3140 |
+
msgid "All"
|
3141 |
+
msgstr "همه"
|
3142 |
+
|
3143 |
+
#: form_list.php:432
|
3144 |
+
#@ gravityforms
|
3145 |
+
msgctxt "Form List"
|
3146 |
+
msgid "Inactive"
|
3147 |
+
msgstr "غیر فعال"
|
3148 |
+
|
3149 |
+
#: form_settings.php:910
|
3150 |
+
#@ gravityforms
|
3151 |
+
msgid "Form Options"
|
3152 |
+
msgstr "تنظیمات فرم"
|
3153 |
+
|
3154 |
+
#: form_settings.php:811
|
3155 |
+
#@ gravityforms
|
3156 |
+
msgid "Form Pending Message"
|
3157 |
+
msgstr "پیام در انتظار بودن فرم"
|
3158 |
+
|
3159 |
+
#: preview.php:44
|
3160 |
+
#: preview.php:157
|
3161 |
+
#@ gravityforms
|
3162 |
+
msgid "Form Preview"
|
3163 |
+
msgstr "پیش نمایش فرم"
|
3164 |
+
|
3165 |
+
#: form_settings.php:119
|
3166 |
+
#: form_settings.php:918
|
3167 |
+
#: form_settings.php:1475
|
3168 |
+
#@ gravityforms
|
3169 |
+
msgid "Form Settings"
|
3170 |
+
msgstr "تنظیمات فرم"
|
3171 |
+
|
3172 |
+
#: common.php:513
|
3173 |
+
#: form_list.php:94
|
3174 |
+
#: gravityforms.php:3784
|
3175 |
+
#: includes/addon/class-gf-addon.php:1945
|
3176 |
+
#: js.php:1234
|
3177 |
+
#: tooltips.php:38
|
3178 |
+
#@ gravityforms
|
3179 |
+
msgid "Form Title"
|
3180 |
+
msgstr "عنوان فرم"
|
3181 |
+
|
3182 |
+
#: includes/addon/class-gf-payment-addon.php:1492
|
3183 |
+
#: includes/addon/class-gf-payment-addon.php:1810
|
3184 |
+
#: includes/addon/class-gf-payment-addon.php:1818
|
3185 |
+
#@ gravityforms
|
3186 |
+
msgid "Form Total"
|
3187 |
+
msgstr "مجموع مبالغ فرم"
|
3188 |
+
|
3189 |
+
#: form_list.php:733
|
3190 |
+
#@ gravityforms
|
3191 |
+
msgid "Form deleted."
|
3192 |
+
msgstr "فرم حذف شد."
|
3193 |
+
|
3194 |
+
#: form_settings.php:366
|
3195 |
+
#@ gravityforms
|
3196 |
+
msgid "Form description"
|
3197 |
+
msgstr "توضیحات فرم"
|
3198 |
+
|
3199 |
+
#: form_list.php:740
|
3200 |
+
#: form_list.php:758
|
3201 |
+
#@ gravityforms
|
3202 |
+
msgid "Form duplicated."
|
3203 |
+
msgstr "فرم کپی شد."
|
3204 |
+
|
3205 |
+
#: notification.php:1154
|
3206 |
+
#@ gravityforms
|
3207 |
+
msgid "Form is saved"
|
3208 |
+
msgstr "فرم ذخیره شد."
|
3209 |
+
|
3210 |
+
#: notification.php:1152
|
3211 |
+
#@ gravityforms
|
3212 |
+
msgid "Form is submitted"
|
3213 |
+
msgstr "بعد از ارسال فرم"
|
3214 |
+
|
3215 |
+
#: form_list.php:724
|
3216 |
+
#: form_list.php:753
|
3217 |
+
#@ gravityforms
|
3218 |
+
msgid "Form moved to the trash."
|
3219 |
+
msgstr "فرم به زباله دان منتقل شد"
|
3220 |
+
|
3221 |
+
#: includes/api.php:181
|
3222 |
+
#@ gravityforms
|
3223 |
+
msgid "Form not found"
|
3224 |
+
msgstr "فرم یافت نشد."
|
3225 |
+
|
3226 |
+
#: form_list.php:728
|
3227 |
+
#@ gravityforms
|
3228 |
+
msgid "Form restored."
|
3229 |
+
msgstr "فرم بازگردانی شد."
|
3230 |
+
|
3231 |
+
#: form_settings.php:322
|
3232 |
+
#@ gravityforms
|
3233 |
+
msgid "Form settings updated successfully."
|
3234 |
+
msgstr "تنظیمات فرم با موفقیت بروزرسانی شد."
|
3235 |
+
|
3236 |
+
#: form_settings.php:352
|
3237 |
+
#@ gravityforms
|
3238 |
+
msgid "Form title"
|
3239 |
+
msgstr "عنوان فرم"
|
3240 |
+
|
3241 |
+
#: includes/webapi/webapi.php:1056
|
3242 |
+
#@ gravityforms
|
3243 |
+
msgid "Form updated successfully"
|
3244 |
+
msgstr "فرم با موفقیت بروز رسانی شد"
|
3245 |
+
|
3246 |
+
#: form_detail.php:184
|
3247 |
+
#: form_detail.php:2496
|
3248 |
+
#@ gravityforms
|
3249 |
+
msgid "Form updated successfully."
|
3250 |
+
msgstr "فرم با موفقیت بروز شد."
|
3251 |
+
|
3252 |
+
#: includes/api.php:108
|
3253 |
+
#, php-format
|
3254 |
+
#@ gravityforms
|
3255 |
+
msgid "Form with id: %s not found"
|
3256 |
+
msgstr "فرم با شماره %s یافت نشد"
|
3257 |
+
|
3258 |
+
#: form_list.php:207
|
3259 |
+
#: gravityforms.php:1764
|
3260 |
+
#: gravityforms.php:1769
|
3261 |
+
#: gravityforms.php:2271
|
3262 |
+
#: gravityforms.php:4453
|
3263 |
+
#@ gravityforms
|
3264 |
+
msgid "Forms"
|
3265 |
+
msgstr "فرم ها"
|
3266 |
+
|
3267 |
+
#: export.php:267
|
3268 |
+
#@ gravityforms
|
3269 |
+
msgid "Forms could not be imported. Please make sure your export file is in the correct format."
|
3270 |
+
msgstr "فرم ها نمی توانند درون ریزی شوند. لطفاً از صحیح بودن فرمت فایل درون ریز مطمئن شوید."
|
3271 |
+
|
3272 |
+
#: export.php:269
|
3273 |
+
#@ gravityforms
|
3274 |
+
msgid "Forms could not be imported. Your export file is not compatible with your current version of Gravity Forms."
|
3275 |
+
msgstr "فرم ها نمی توانند دورن ریزی شوند. فایل درون ریز با ورژن فعلی Gravity Forms شما سازگار نیست."
|
3276 |
+
|
3277 |
+
#: includes/webapi/webapi.php:873
|
3278 |
+
#, php-format
|
3279 |
+
#@ gravityforms
|
3280 |
+
msgid "Forms deleted successfully: %d"
|
3281 |
+
msgstr "فرم ها با موفقیت حذف شد: %d"
|
3282 |
+
|
3283 |
+
#: includes/webapi/webapi.php:1056
|
3284 |
+
#@ gravityforms
|
3285 |
+
msgid "Forms updated successfully"
|
3286 |
+
msgstr "فرم ها با موفقیت بروز رسانی شدند"
|
3287 |
+
|
3288 |
+
#: form_detail.php:1803
|
3289 |
+
#: tooltips.php:88
|
3290 |
+
#@ gravityforms
|
3291 |
+
msgid "Formula"
|
3292 |
+
msgstr "فرمول محاسبه"
|
3293 |
+
|
3294 |
+
#: includes/addon/class-gf-results.php:508
|
3295 |
+
#: includes/addon/class-gf-results.php:537
|
3296 |
+
#@ gravityforms
|
3297 |
+
msgid "Frequency"
|
3298 |
+
msgstr "فرکانس"
|
3299 |
+
|
3300 |
+
#: form_detail.php:1458
|
3301 |
+
#@ gravityforms
|
3302 |
+
msgid "Friday"
|
3303 |
+
msgstr "جمعه"
|
3304 |
+
|
3305 |
+
#: notification.php:943
|
3306 |
+
#@ gravityforms
|
3307 |
+
msgid "From Email"
|
3308 |
+
msgstr "ایمیل فرستنده"
|
3309 |
+
|
3310 |
+
#: tooltips.php:29
|
3311 |
+
#@ gravityforms
|
3312 |
+
msgid "From Email Address"
|
3313 |
+
msgstr "ایمیل ارسال کننده"
|
3314 |
+
|
3315 |
+
#: notification.php:929
|
3316 |
+
#: tooltips.php:30
|
3317 |
+
#@ gravityforms
|
3318 |
+
msgid "From Name"
|
3319 |
+
msgstr "نام فرستنده"
|
3320 |
+
|
3321 |
+
#: includes/addon/class-gf-addon.php:1982
|
3322 |
+
#: includes/addon/class-gf-addon.php:1989
|
3323 |
+
#: includes/addon/class-gf-addon.php:2009
|
3324 |
+
#: includes/addon/class-gf-addon.php:2376
|
3325 |
+
#: includes/addon/class-gf-addon.php:2383
|
3326 |
+
#: includes/addon/class-gf-addon.php:2403
|
3327 |
+
#@ gravityforms
|
3328 |
+
msgid "Full"
|
3329 |
+
msgstr "کامل"
|
3330 |
+
|
3331 |
+
#: common.php:657
|
3332 |
+
#@ gravityforms
|
3333 |
+
msgid "Full Size"
|
3334 |
+
msgstr "سایز کامل"
|
3335 |
+
|
3336 |
+
#: common.php:659
|
3337 |
+
#@ gravityforms
|
3338 |
+
msgid "Full Size - Centered"
|
3339 |
+
msgstr "سایز - تراز شده وسط"
|
3340 |
+
|
3341 |
+
#: common.php:658
|
3342 |
+
#@ gravityforms
|
3343 |
+
msgid "Full Size - Left Aligned"
|
3344 |
+
msgstr "سایز - تراز شده سمت چپ"
|
3345 |
+
|
3346 |
+
#: common.php:660
|
3347 |
+
#@ gravityforms
|
3348 |
+
msgid "Full Size - Right Aligned"
|
3349 |
+
msgstr "سایز - تراز شده سمت راست"
|
3350 |
+
|
3351 |
+
#: form_detail.php:1455
|
3352 |
+
#@ gravityforms
|
3353 |
+
msgid "Full-Time"
|
3354 |
+
msgstr "تمام وقت"
|
3355 |
+
|
3356 |
+
#: form_detail.php:1451
|
3357 |
+
#@ gravityforms
|
3358 |
+
msgid "Gender"
|
3359 |
+
msgstr "جنسیت"
|
3360 |
+
|
3361 |
+
#: form_detail.php:224
|
3362 |
+
#: form_detail.php:430
|
3363 |
+
#: form_detail.php:505
|
3364 |
+
#@ gravityforms
|
3365 |
+
msgid "General"
|
3366 |
+
msgstr "عمومی"
|
3367 |
+
|
3368 |
+
#: settings.php:278
|
3369 |
+
#: settings.php:282
|
3370 |
+
#@ gravityforms
|
3371 |
+
msgid "General Settings"
|
3372 |
+
msgstr "تنظیمات عمومی"
|
3373 |
+
|
3374 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:85
|
3375 |
+
#@ gravityforms
|
3376 |
+
msgid "Global Settings"
|
3377 |
+
msgstr "تنظیمات کلی"
|
3378 |
+
|
3379 |
+
#: includes/addon/class-gf-payment-addon.php:2923
|
3380 |
+
#@ gravityforms
|
3381 |
+
msgid "Go to the first page"
|
3382 |
+
msgstr "رفتن به اولین صفحه"
|
3383 |
+
|
3384 |
+
#: includes/addon/class-gf-payment-addon.php:2954
|
3385 |
+
#@ gravityforms
|
3386 |
+
msgid "Go to the last page"
|
3387 |
+
msgstr "رفتن به آخرین صفحه"
|
3388 |
+
|
3389 |
+
#: includes/addon/class-gf-payment-addon.php:2945
|
3390 |
+
#@ gravityforms
|
3391 |
+
msgid "Go to the next page"
|
3392 |
+
msgstr "رفتن به صفحه بعدی"
|
3393 |
+
|
3394 |
+
#: includes/addon/class-gf-payment-addon.php:2930
|
3395 |
+
#@ gravityforms
|
3396 |
+
msgid "Go to the previous page"
|
3397 |
+
msgstr "رفتن به صفحه قبلی"
|
3398 |
+
|
3399 |
+
#: form_detail.php:1574
|
3400 |
+
#: form_display.php:2347
|
3401 |
+
#@ gravityforms
|
3402 |
+
msgid "Good"
|
3403 |
+
msgstr "خوب"
|
3404 |
+
|
3405 |
+
#: form_detail.php:1456
|
3406 |
+
#@ gravityforms
|
3407 |
+
msgid "Government/Military"
|
3408 |
+
msgstr "دولت / نظامی"
|
3409 |
+
|
3410 |
+
#: form_detail.php:387
|
3411 |
+
#@ gravityforms
|
3412 |
+
msgid "Grab here with your cursor."
|
3413 |
+
msgstr "با اشاره گر موس اینجا را بگیرید."
|
3414 |
+
|
3415 |
+
#. translators: plugin header field 'Name'
|
3416 |
+
#: gravityforms.php:0
|
3417 |
+
#@ gravityforms
|
3418 |
+
msgid "Gravity Forms"
|
3419 |
+
msgstr "گرویتی فرم"
|
3420 |
+
|
3421 |
+
#: includes/addon/class-gf-addon.php:4460
|
3422 |
+
#: includes/addon/class-gf-auto-upgrade.php:54
|
3423 |
+
#, php-format
|
3424 |
+
#@ gravityforms
|
3425 |
+
msgid "Gravity Forms %s is required. Activate it now or %spurchase it today!%s"
|
3426 |
+
msgstr "Gravity Forms %s لازم است. آنرا فعال کنید یا %s یکی بخرید ! %s"
|
3427 |
+
|
3428 |
+
#: includes/webapi/webapi.php:157
|
3429 |
+
#@ gravityforms
|
3430 |
+
msgid "Gravity Forms API Settings"
|
3431 |
+
msgstr "تنظیمات API گرویتی فرم"
|
3432 |
+
|
3433 |
+
#: help.php:31
|
3434 |
+
#@ gravityforms
|
3435 |
+
msgid "Gravity Forms Help"
|
3436 |
+
msgstr "راهنمای Gravity Forms"
|
3437 |
+
|
3438 |
+
#: settings.php:621
|
3439 |
+
#@ gravityforms
|
3440 |
+
msgid "Gravity Forms Version"
|
3441 |
+
msgstr "نسخه Gravity Forms"
|
3442 |
+
|
3443 |
+
#: widget.php:34
|
3444 |
+
#@ gravityforms
|
3445 |
+
msgid "Gravity Forms Widget"
|
3446 |
+
msgstr " Gravity Forms ابزارک "
|
3447 |
+
|
3448 |
+
#: settings.php:155
|
3449 |
+
#, php-format
|
3450 |
+
#@ gravityforms
|
3451 |
+
msgid "Gravity Forms has been successfully uninstalled. It can be re-activated from the %splugins page%s."
|
3452 |
+
msgstr "Gravity Forms با موفقیت غیر فعال شد. می توان دوباره آن را از %s صفحه پلاگین ها %s فعال کرد."
|
3453 |
+
|
3454 |
+
#: settings.php:413
|
3455 |
+
#@ gravityforms
|
3456 |
+
msgid "Gravity Forms integrates with reCAPTCHA, a free CAPTCHA service that helps to digitize books while protecting your forms from spam bots. "
|
3457 |
+
msgstr "Gravit Forms با reCAPTCHA یک پارچه می شود. reCAPTCHA یک سرویس رایگان است که با یک کتابخانه کد از فرمتان در مقابل هرزنامه ها محافظت می کند. "
|
3458 |
+
|
3459 |
+
#: settings.php:589
|
3460 |
+
#@ gravityforms
|
3461 |
+
msgid "Gravity Forms requires MySQL 5 or above."
|
3462 |
+
msgstr "Gravity Forms به MySQL نسخه 5 یا بالاتر نیاز دارد."
|
3463 |
+
|
3464 |
+
#: settings.php:569
|
3465 |
+
#@ gravityforms
|
3466 |
+
msgid "Gravity Forms requires PHP 5 or above."
|
3467 |
+
msgstr "Gravity Forms به PHP ورژن 5 یا بالاتر نیاز دارد."
|
3468 |
+
|
3469 |
+
#: settings.php:614
|
3470 |
+
#, php-format
|
3471 |
+
#@ gravityforms
|
3472 |
+
msgid "Gravity Forms requires WordPress v%s or greater. You must upgrade WordPress in order to use this version of Gravity Forms."
|
3473 |
+
msgstr "Gravity Forms به وردپرس نسخه %s یا بالاتر نیاز دارد. برای استفاده از این نسخه Gravity Forms باید وردپرس را بروزرسانی کنید."
|
3474 |
+
|
3475 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:18
|
3476 |
+
#@ gravityforms
|
3477 |
+
msgid "Gravity Forms will download important bug fixes, security enhancements and plugin updates automatically. Updates are extremely important to the security of your WordPress site."
|
3478 |
+
msgstr "Gravity Forms رفع باگ های مهم، ارتقاهای امنیت و بروزرسانی های پلاگین را به صورت خودکار دانلود می کند. بروزرسانی ها برای امنیت سایت وردپرسی شما بسیار مهم هستند."
|
3479 |
+
|
3480 |
+
#: form_detail.php:264
|
3481 |
+
#@ gravityforms
|
3482 |
+
msgid "Gray"
|
3483 |
+
msgstr "خاکستری"
|
3484 |
+
|
3485 |
+
#: form_detail.php:265
|
3486 |
+
#: form_detail.php:1456
|
3487 |
+
#@ gravityforms
|
3488 |
+
msgid "Green"
|
3489 |
+
msgstr "سبز"
|
3490 |
+
|
3491 |
+
#: includes/fields/class-gf-field-html.php:12
|
3492 |
+
#@ gravityforms
|
3493 |
+
msgid "HTML"
|
3494 |
+
msgstr "HTML"
|
3495 |
+
|
3496 |
+
#: js.php:563
|
3497 |
+
#@ gravityforms
|
3498 |
+
msgid "HTML Block"
|
3499 |
+
msgstr "بلاک HTML"
|
3500 |
+
|
3501 |
+
#: includes/fields/class-gf-field-html.php:31
|
3502 |
+
#@ gravityforms
|
3503 |
+
msgid "HTML Content"
|
3504 |
+
msgstr "محتوای HTML"
|
3505 |
+
|
3506 |
+
#: common.php:515
|
3507 |
+
#: form_detail.php:2687
|
3508 |
+
#@ gravityforms
|
3509 |
+
msgid "HTTP Referer URL"
|
3510 |
+
msgstr "URL HTTP ارجاع دهنده"
|
3511 |
+
|
3512 |
+
#: form_detail.php:1456
|
3513 |
+
#@ gravityforms
|
3514 |
+
msgid "Healthcare"
|
3515 |
+
msgstr "بهداشت و درمان"
|
3516 |
+
|
3517 |
+
#: form_detail.php:1679
|
3518 |
+
#: gravityforms.php:1792
|
3519 |
+
#@ gravityforms
|
3520 |
+
msgid "Help"
|
3521 |
+
msgstr "راهنما"
|
3522 |
+
|
3523 |
+
#: form_detail.php:570
|
3524 |
+
#: form_detail.php:648
|
3525 |
+
#: form_detail.php:766
|
3526 |
+
#: form_detail.php:1951
|
3527 |
+
#: form_detail.php:1987
|
3528 |
+
#: includes/fields/class-gf-field-hidden.php:13
|
3529 |
+
#@ gravityforms
|
3530 |
+
msgid "Hidden"
|
3531 |
+
msgstr "مخفی"
|
3532 |
+
|
3533 |
+
#: js.php:701
|
3534 |
+
#@ gravityforms
|
3535 |
+
msgid "Hidden Field"
|
3536 |
+
msgstr "فیلد مخفی"
|
3537 |
+
|
3538 |
+
#: common.php:3785
|
3539 |
+
#@ gravityforms
|
3540 |
+
msgid "Hide"
|
3541 |
+
msgstr "مخفی"
|
3542 |
+
|
3543 |
+
#: tooltips.php:68
|
3544 |
+
#@ gravityforms
|
3545 |
+
msgid "Hide Address Line 2"
|
3546 |
+
msgstr "مخفی کردن اضافه آدرس"
|
3547 |
+
|
3548 |
+
#: tooltips.php:67
|
3549 |
+
#@ gravityforms
|
3550 |
+
msgid "Hide Country"
|
3551 |
+
msgstr "مخفی کردن کشور"
|
3552 |
+
|
3553 |
+
#: tooltips.php:70
|
3554 |
+
#@ gravityforms
|
3555 |
+
msgid "Hide Province Field"
|
3556 |
+
msgstr "مخفی کردن فیلد شهر"
|
3557 |
+
|
3558 |
+
#: tooltips.php:69
|
3559 |
+
#@ gravityforms
|
3560 |
+
msgid "Hide State Field"
|
3561 |
+
msgstr "مخفی کردن فیلد ایالت"
|
3562 |
+
|
3563 |
+
#: tooltips.php:71
|
3564 |
+
#@ gravityforms
|
3565 |
+
msgid "Hide State/Province/Region"
|
3566 |
+
msgstr "مخفی کردن استان / شهر / ناحیه"
|
3567 |
+
|
3568 |
+
#: form_detail.php:1457
|
3569 |
+
#@ gravityforms
|
3570 |
+
msgid "High School"
|
3571 |
+
msgstr "دبیرستان"
|
3572 |
+
|
3573 |
+
#: form_detail.php:1454
|
3574 |
+
#@ gravityforms
|
3575 |
+
msgid "Homemaker"
|
3576 |
+
msgstr "خانه دار"
|
3577 |
+
|
3578 |
+
#: form_detail.php:1456
|
3579 |
+
#@ gravityforms
|
3580 |
+
msgid "Hospitality/Travel"
|
3581 |
+
msgstr "هتل / سفر"
|
3582 |
+
|
3583 |
+
#: form_detail.php:1461
|
3584 |
+
#@ gravityforms
|
3585 |
+
msgid "How Long"
|
3586 |
+
msgstr "چه مدت"
|
3587 |
+
|
3588 |
+
#: form_detail.php:1460
|
3589 |
+
#@ gravityforms
|
3590 |
+
msgid "How Often"
|
3591 |
+
msgstr "چند بار"
|
3592 |
+
|
3593 |
+
#: form_detail.php:1456
|
3594 |
+
#@ gravityforms
|
3595 |
+
msgid "Human Resources"
|
3596 |
+
msgstr "منابع انسانی"
|
3597 |
+
|
3598 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:66
|
3599 |
+
#@ gravityforms
|
3600 |
+
msgid "I Understand and Accept the Risk"
|
3601 |
+
msgstr "متوجه هستم و خطر را می پذیرم."
|
3602 |
+
|
3603 |
+
#: form_detail.php:495
|
3604 |
+
#@ gravityforms
|
3605 |
+
msgid "I am done. Take me back to form list"
|
3606 |
+
msgstr "انجام شد . بازگشت به لیست فرم ها"
|
3607 |
+
|
3608 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:44
|
3609 |
+
#@ gravityforms
|
3610 |
+
msgid "I understand the risks"
|
3611 |
+
msgstr "متوجه این خطر هستم."
|
3612 |
+
|
3613 |
+
#: common.php:4252
|
3614 |
+
#@ gravityforms
|
3615 |
+
msgid "IP Address"
|
3616 |
+
msgstr "آدرس آی پی"
|
3617 |
+
|
3618 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:39
|
3619 |
+
#@ gravityforms
|
3620 |
+
msgid "If you don't enter a valid license key, you will not be able to update Gravity Forms when important bug fixes and security enhancements are released. This can be a serious security risk for your site."
|
3621 |
+
msgstr "اگر شما یک کد لایسنس معتبر وارد نکنید نمی توانید هنگامی که رفع باگ های مهم و ارتقاهای امنیتی منتشر شود Gravity Forms را بروزرسانی کنید. این یک خطر امنیتی جدی برای سایت شما است."
|
3622 |
+
|
3623 |
+
#: form_detail.php:377
|
3624 |
+
#@ gravityforms
|
3625 |
+
msgid "If you get stuck, mouseover the tool tips for a little help."
|
3626 |
+
msgstr "در صورتی که دچار مشکل شدید با بردن موس برروی ابزار راهنمایی از کمک استفاده کنید ."
|
3627 |
+
|
3628 |
+
#: tooltips.php:163
|
3629 |
+
#: widget.php:153
|
3630 |
+
#@ gravityforms
|
3631 |
+
msgid "If you have other forms on the page (i.e. Comments Form), specify a higher tabindex start value so that your Gravity Form does not end up with the same tabindices as your other forms. To disable the tabindex, enter 0 (zero)."
|
3632 |
+
msgstr "اگر فرم های دیگری ( مثل فرم نظردهی ) در این صفحه دارید مقدار بزرگتری برای شروع TabIndex مشخص کنید با این کار تا پایان Gravit Forms با فرم های دیگر که TabIndex یکسان دارد اشتباه نمی شود. برای غیرفعال کردن TabIndex 0 را وارد کنید. "
|
3633 |
+
|
3634 |
+
#: tooltips.php:107
|
3635 |
+
#@ gravityforms
|
3636 |
+
msgid "If you would like to override the default error validation for a field, enter it here. This message will be displayed if there is an error with this field when the user submits the form."
|
3637 |
+
msgstr "اگر می خواهید خطای پیش فرض اعتبارسنجی برای یک فیلد را بازنویسی کنید، اینجا وارد کنید. وقتی که خطایی در هنگام ارسال فیلد توسط کاربر وجود داشته باشد این پیام نمایش داده می شود. "
|
3638 |
+
|
3639 |
+
#: tooltips.php:99
|
3640 |
+
#: tooltips.php:100
|
3641 |
+
#@ gravityforms
|
3642 |
+
msgid "If you would like to pre-populate the value of a field, enter it here."
|
3643 |
+
msgstr "اگر می خواهید مقدار فیلد را از قبل قرار دهید مقدار را اینجا وارد کنید."
|
3644 |
+
|
3645 |
+
#: form_detail.php:449
|
3646 |
+
#: form_detail.php:681
|
3647 |
+
#: form_detail.php:719
|
3648 |
+
#: form_settings.php:504
|
3649 |
+
#@ gravityforms
|
3650 |
+
msgid "Image"
|
3651 |
+
msgstr "تصویر"
|
3652 |
+
|
3653 |
+
#: tooltips.php:136
|
3654 |
+
#@ gravityforms
|
3655 |
+
msgid "Image Meta"
|
3656 |
+
msgstr "متای تصویر"
|
3657 |
+
|
3658 |
+
#: form_detail.php:1097
|
3659 |
+
#@ gravityforms
|
3660 |
+
msgid "Image Metadata"
|
3661 |
+
msgstr "متا داده تصویر"
|
3662 |
+
|
3663 |
+
#: form_detail.php:462
|
3664 |
+
#: form_detail.php:694
|
3665 |
+
#: form_detail.php:732
|
3666 |
+
#@ gravityforms
|
3667 |
+
msgid "Image Path:"
|
3668 |
+
msgstr "مسیر تصویر :"
|
3669 |
+
|
3670 |
+
#: form_detail.php:1264
|
3671 |
+
#@ gravityforms
|
3672 |
+
msgid "Image Path: "
|
3673 |
+
msgstr "مسیر تصویر : "
|
3674 |
+
|
3675 |
+
#: includes/webapi/webapi.php:239
|
3676 |
+
#@ gravityforms
|
3677 |
+
msgid "Impersonate account"
|
3678 |
+
msgstr "حساب نامعتبر"
|
3679 |
+
|
3680 |
+
#: export.php:300
|
3681 |
+
#@ gravityforms
|
3682 |
+
msgid "Import"
|
3683 |
+
msgstr "وارد کردن"
|
3684 |
+
|
3685 |
+
#: export.php:278
|
3686 |
+
#: export.php:960
|
3687 |
+
#@ gravityforms
|
3688 |
+
msgid "Import Forms"
|
3689 |
+
msgstr "وارد کردن فرم ها"
|
3690 |
+
|
3691 |
+
#: gravityforms.php:1785
|
3692 |
+
#@ gravityforms
|
3693 |
+
msgid "Import/Export"
|
3694 |
+
msgstr "برون / درون ریزی"
|
3695 |
+
|
3696 |
+
#: form_detail.php:1463
|
3697 |
+
#@ gravityforms
|
3698 |
+
msgid "Importance"
|
3699 |
+
msgstr "اهمیت"
|
3700 |
+
|
3701 |
+
#: form_detail.php:1463
|
3702 |
+
#: form_settings.php:1139
|
3703 |
+
#@ gravityforms
|
3704 |
+
msgid "Important"
|
3705 |
+
msgstr "مهم"
|
3706 |
+
|
3707 |
+
#: common.php:3768
|
3708 |
+
#: form_list.php:160
|
3709 |
+
#: form_list.php:585
|
3710 |
+
#: form_settings.php:1029
|
3711 |
+
#: form_settings.php:1872
|
3712 |
+
#: includes/addon/class-gf-feed-addon.php:1724
|
3713 |
+
#: js.php:268
|
3714 |
+
#: js.php:332
|
3715 |
+
#: notification.php:570
|
3716 |
+
#: notification.php:1690
|
3717 |
+
#@ gravityforms
|
3718 |
+
msgid "Inactive"
|
3719 |
+
msgstr "غیرفعال"
|
3720 |
+
|
3721 |
+
#: select_columns.php:207
|
3722 |
+
#@ gravityforms
|
3723 |
+
msgid "Inactive Columns"
|
3724 |
+
msgstr "ستون های غیر فعال"
|
3725 |
+
|
3726 |
+
#: entry_list.php:1953
|
3727 |
+
#@ gravityforms
|
3728 |
+
msgid "Include notes"
|
3729 |
+
msgstr "شامل شدن یادداشت ها"
|
3730 |
+
|
3731 |
+
#: common.php:3827
|
3732 |
+
#@ gravityforms
|
3733 |
+
msgid "Include results if {0} match:"
|
3734 |
+
msgstr "اگر {0} مورد تطابق وجود داشت شامل شدن نتایج :"
|
3735 |
+
|
3736 |
+
#: tooltips.php:138
|
3737 |
+
#@ gravityforms
|
3738 |
+
msgid "Incoming Field Data"
|
3739 |
+
msgstr "فیلد داده های پیش رو"
|
3740 |
+
|
3741 |
+
#: form_detail.php:1456
|
3742 |
+
#@ gravityforms
|
3743 |
+
msgid "Industry"
|
3744 |
+
msgstr "صنعت"
|
3745 |
+
|
3746 |
+
#: includes/addon/class-gf-payment-addon.php:487
|
3747 |
+
#@ gravityforms
|
3748 |
+
msgid "Initial payment"
|
3749 |
+
msgstr "پرداخت اولیه"
|
3750 |
+
|
3751 |
+
#: form_detail.php:1652
|
3752 |
+
#: tooltips.php:143
|
3753 |
+
#@ gravityforms
|
3754 |
+
msgid "Input Mask"
|
3755 |
+
msgstr "وارد کردن قاب"
|
3756 |
+
|
3757 |
+
#: tooltips.php:143
|
3758 |
+
#@ gravityforms
|
3759 |
+
msgid "Input masks provide a visual guide allowing users to more easily enter data in a specific format such as dates and phone numbers."
|
3760 |
+
msgstr "قاب های ورودی یک راهنمای تصویری ایجاد می کنند که به کاربران اجازه می دهد که داده ها را بسیار راحت تر در قالب های مشخص مانند تاریخ ها و شماره تلفن ها وارد کنند."
|
3761 |
+
|
3762 |
+
#: form_settings.php:491
|
3763 |
+
#@ gravityforms
|
3764 |
+
msgid "Input type"
|
3765 |
+
msgstr "نوع فیلد ورودی"
|
3766 |
+
|
3767 |
+
#: includes/templates/edit-shortcode-form.tpl.php:5
|
3768 |
+
#@ gravityforms
|
3769 |
+
msgid "Insert A Form"
|
3770 |
+
msgstr "قرار دادن یک فرم"
|
3771 |
+
|
3772 |
+
#: form_detail.php:1497
|
3773 |
+
#@ gravityforms
|
3774 |
+
msgid "Insert Choices"
|
3775 |
+
msgstr "وارد کردن گزینه ها"
|
3776 |
+
|
3777 |
+
#: includes/templates/edit-shortcode-form.tpl.php:21
|
3778 |
+
#@ gravityforms
|
3779 |
+
msgid "Insert Form"
|
3780 |
+
msgstr "فرم را قرار دهید"
|
3781 |
+
|
3782 |
+
#: common.php:366
|
3783 |
+
#: common.php:676
|
3784 |
+
#: form_detail.php:2679
|
3785 |
+
#@ gravityforms
|
3786 |
+
msgid "Insert Merge Tag"
|
3787 |
+
msgstr "قرار دادن برچسب ادغام"
|
3788 |
+
|
3789 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-complete.php:19
|
3790 |
+
#@ gravityforms
|
3791 |
+
msgid "Installation Complete"
|
3792 |
+
msgstr "نصب به اتمام رسید."
|
3793 |
+
|
3794 |
+
#: settings.php:552
|
3795 |
+
#@ gravityforms
|
3796 |
+
msgid "Installation Status"
|
3797 |
+
msgstr "وضعیت نصب"
|
3798 |
+
|
3799 |
+
#: form_detail.php:1456
|
3800 |
+
#@ gravityforms
|
3801 |
+
msgid "Installation/Maintenance"
|
3802 |
+
msgstr "نصب و راه اندازی / نگهداری"
|
3803 |
+
|
3804 |
+
#: form_detail.php:1456
|
3805 |
+
#@ gravityforms
|
3806 |
+
msgid "Insurance"
|
3807 |
+
msgstr "بیمه"
|
3808 |
+
|
3809 |
+
#: form_detail.php:1455
|
3810 |
+
#@ gravityforms
|
3811 |
+
msgid "Intern"
|
3812 |
+
msgstr "کارآموز"
|
3813 |
+
|
3814 |
+
#: includes/webapi/webapi.php:1809
|
3815 |
+
#@ gravityforms
|
3816 |
+
msgid "Internal Error"
|
3817 |
+
msgstr "خطای داخلی"
|
3818 |
+
|
3819 |
+
#: includes/fields/class-gf-field-address.php:403
|
3820 |
+
#: includes/fields/class-gf-field-phone.php:161
|
3821 |
+
#@ gravityforms
|
3822 |
+
msgid "International"
|
3823 |
+
msgstr "بین المللی"
|
3824 |
+
|
3825 |
+
#: form_detail.php:1456
|
3826 |
+
#@ gravityforms
|
3827 |
+
msgid "Internet"
|
3828 |
+
msgstr "اینترنت"
|
3829 |
+
|
3830 |
+
#: includes/fields/class-gf-field-creditcard.php:56
|
3831 |
+
#@ gravityforms
|
3832 |
+
msgid "Invalid credit card number."
|
3833 |
+
msgstr "شماره کارت اعتباری نامعتبر است ."
|
3834 |
+
|
3835 |
+
#: includes/api.php:903
|
3836 |
+
#, php-format
|
3837 |
+
#@ gravityforms
|
3838 |
+
msgid "Invalid entry id: %s"
|
3839 |
+
msgstr "شماره پیام ورودی %s نامعتبر است"
|
3840 |
+
|
3841 |
+
#: includes/api.php:154
|
3842 |
+
#: includes/api.php:321
|
3843 |
+
#@ gravityforms
|
3844 |
+
msgid "Invalid form object"
|
3845 |
+
msgstr "موضوع فرم نامعتبر است"
|
3846 |
+
|
3847 |
+
#: includes/api.php:292
|
3848 |
+
#@ gravityforms
|
3849 |
+
msgid "Invalid form objects"
|
3850 |
+
msgstr "خطا در بروز رسانی موضوعات"
|
3851 |
+
|
3852 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:68
|
3853 |
+
#: settings.php:297
|
3854 |
+
#@ gravityforms
|
3855 |
+
msgid "Invalid or Expired Key : Please make sure you have entered the correct value and that your key is not expired."
|
3856 |
+
msgstr "کد نامعتبر یا تاریخ گذشته: لطفاً از صحت کد وارد شده اطمینان حاصل کنید یا بررسی کنید کد منقضی نشده باشد. "
|
3857 |
+
|
3858 |
+
#: form_display.php:1575
|
3859 |
+
#@ gravityforms
|
3860 |
+
msgid "Invalid selection. Please select one of the available choices."
|
3861 |
+
msgstr "انتخاب نامعتبر . لطفاً یکی گزینه های موجود را انتخاب نمایید."
|
3862 |
+
|
3863 |
+
#: includes/addon/class-gf-results.php:648
|
3864 |
+
#@ gravityforms
|
3865 |
+
msgid "Item"
|
3866 |
+
msgstr "آیتم"
|
3867 |
+
|
3868 |
+
#: js.php:26
|
3869 |
+
#@ gravityforms
|
3870 |
+
msgid "Item has been deleted."
|
3871 |
+
msgstr "حذف شده است"
|
3872 |
+
|
3873 |
+
#: js.php:56
|
3874 |
+
#@ gravityforms
|
3875 |
+
msgid "Item has been saved."
|
3876 |
+
msgstr "ذخیره شد"
|
3877 |
+
|
3878 |
+
#: form_detail.php:1459
|
3879 |
+
#@ gravityforms
|
3880 |
+
msgid "January"
|
3881 |
+
msgstr "ژانویه"
|
3882 |
+
|
3883 |
+
#: form_detail.php:1456
|
3884 |
+
#@ gravityforms
|
3885 |
+
msgid "Job Search Aids"
|
3886 |
+
msgstr "کاریابی"
|
3887 |
+
|
3888 |
+
#: form_detail.php:1455
|
3889 |
+
#@ gravityforms
|
3890 |
+
msgid "Job Type"
|
3891 |
+
msgstr "نوع کسب و کار"
|
3892 |
+
|
3893 |
+
#: form_detail.php:1459
|
3894 |
+
#@ gravityforms
|
3895 |
+
msgid "July"
|
3896 |
+
msgstr "جولای"
|
3897 |
+
|
3898 |
+
#: form_detail.php:1459
|
3899 |
+
#@ gravityforms
|
3900 |
+
msgid "June"
|
3901 |
+
msgstr "ژوئن"
|
3902 |
+
|
3903 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:46
|
3904 |
+
#@ gravityforms
|
3905 |
+
msgid "Keep background updates enabled"
|
3906 |
+
msgstr "فعال بودن بروزرسانی خودکار"
|
3907 |
+
|
3908 |
+
#: form_detail.php:1435
|
3909 |
+
#: form_detail.php:2098
|
3910 |
+
#@ gravityforms
|
3911 |
+
msgid "Label"
|
3912 |
+
msgstr "برچسب"
|
3913 |
+
|
3914 |
+
#: tooltips.php:92
|
3915 |
+
#@ gravityforms
|
3916 |
+
msgid "Label Visibility"
|
3917 |
+
msgstr "نمایش برچسب"
|
3918 |
+
|
3919 |
+
#: form_settings.php:392
|
3920 |
+
#@ gravityforms
|
3921 |
+
msgid "Label placement"
|
3922 |
+
msgstr "محل برچسب"
|
3923 |
+
|
3924 |
+
#: form_detail.php:2165
|
3925 |
+
#@ gravityforms
|
3926 |
+
msgid "Language"
|
3927 |
+
msgstr "زبان"
|
3928 |
+
|
3929 |
+
#: common.php:652
|
3930 |
+
#: form_detail.php:822
|
3931 |
+
#: form_detail.php:1467
|
3932 |
+
#: form_detail.php:2039
|
3933 |
+
#@ gravityforms
|
3934 |
+
msgid "Large"
|
3935 |
+
msgstr "بزرگ"
|
3936 |
+
|
3937 |
+
#: common.php:654
|
3938 |
+
#@ gravityforms
|
3939 |
+
msgid "Large - Centered"
|
3940 |
+
msgstr "برزگ - تراز شده وسط"
|
3941 |
+
|
3942 |
+
#: common.php:653
|
3943 |
+
#@ gravityforms
|
3944 |
+
msgid "Large - Left Aligned"
|
3945 |
+
msgstr "برزگ - تراز شده سمت چپ"
|
3946 |
+
|
3947 |
+
#: common.php:655
|
3948 |
+
#@ gravityforms
|
3949 |
+
msgid "Large - Right Aligned"
|
3950 |
+
msgstr "برزگ - تراز شده سمت راست"
|
3951 |
+
|
3952 |
+
#: includes/fields/class-gf-field-name.php:120
|
3953 |
+
#: includes/fields/class-gf-field-name.php:240
|
3954 |
+
#: js.php:868
|
3955 |
+
#@ gravityforms
|
3956 |
+
msgid "Last"
|
3957 |
+
msgstr "نام خانوادگی"
|
3958 |
+
|
3959 |
+
#: includes/addon/class-gf-payment-addon.php:1920
|
3960 |
+
#@ gravityforms
|
3961 |
+
msgid "Last 30 Days"
|
3962 |
+
msgstr "30 روز گذشته"
|
3963 |
+
|
3964 |
+
#: gravityforms.php:2309
|
3965 |
+
#, php-format
|
3966 |
+
#@ gravityforms
|
3967 |
+
msgid "Last Entry: %s"
|
3968 |
+
msgstr "آخرین پیام ورودی : %s"
|
3969 |
+
|
3970 |
+
#: includes/fields/class-gf-field-name.php:102
|
3971 |
+
#@ gravityforms
|
3972 |
+
msgid "Last name"
|
3973 |
+
msgstr "نام خانوادگی"
|
3974 |
+
|
3975 |
+
#: includes/addon/class-gf-results.php:684
|
3976 |
+
#@ gravityforms
|
3977 |
+
msgid "Latest values:"
|
3978 |
+
msgstr "آخرین مقادیر:"
|
3979 |
+
|
3980 |
+
#: form_detail.php:1456
|
3981 |
+
#@ gravityforms
|
3982 |
+
msgid "Law Enforcement/Security"
|
3983 |
+
msgstr "اجرای قانون / امنیت"
|
3984 |
+
|
3985 |
+
#: form_detail.php:1928
|
3986 |
+
#: form_settings.php:378
|
3987 |
+
#@ gravityforms
|
3988 |
+
msgid "Left aligned"
|
3989 |
+
msgstr "تراز چپ"
|
3990 |
+
|
3991 |
+
#: form_detail.php:1456
|
3992 |
+
#@ gravityforms
|
3993 |
+
msgid "Legal"
|
3994 |
+
msgstr "حقوقی"
|
3995 |
+
|
3996 |
+
#: form_detail.php:1461
|
3997 |
+
#@ gravityforms
|
3998 |
+
msgid "Less than a month"
|
3999 |
+
msgstr "کمتر از یک ماه"
|
4000 |
+
|
4001 |
+
#: form_detail.php:1460
|
4002 |
+
#@ gravityforms
|
4003 |
+
msgid "Less than once a month"
|
4004 |
+
msgstr "کمتر از یک بار در ماه"
|
4005 |
+
|
4006 |
+
#: form_detail.php:1717
|
4007 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:53
|
4008 |
+
#@ gravityforms
|
4009 |
+
msgid "License Key"
|
4010 |
+
msgstr "کد لایسنس"
|
4011 |
+
|
4012 |
+
#: tooltips.php:33
|
4013 |
+
#@ gravityforms
|
4014 |
+
msgid "Limit Form Activity"
|
4015 |
+
msgstr "فعالیت فرم را محدود کنید"
|
4016 |
+
|
4017 |
+
#: tooltips.php:34
|
4018 |
+
#@ gravityforms
|
4019 |
+
msgid "Limit Number of Entries"
|
4020 |
+
msgstr "تعداد پبام های ورودی را محدود کنید."
|
4021 |
+
|
4022 |
+
#: form_settings.php:651
|
4023 |
+
#@ gravityforms
|
4024 |
+
msgid "Limit number of entries"
|
4025 |
+
msgstr "محدودیت تعداد پیامهای ورودی "
|
4026 |
+
|
4027 |
+
#: tooltips.php:33
|
4028 |
+
#@ gravityforms
|
4029 |
+
msgid "Limit the number of entries a form can generate and/or schedule a time period the form is active."
|
4030 |
+
msgstr "تعداد دفعاتی که ورودی ها یک فرم می تواند ایجاد شود را محدود کنید یا دوره زمانی فرم فعال بودن فرم را مدیریت کنید"
|
4031 |
+
|
4032 |
+
#: form_settings.php:615
|
4033 |
+
#@ gravityforms
|
4034 |
+
msgid "Link text"
|
4035 |
+
msgstr "متن لینک"
|
4036 |
+
|
4037 |
+
#: form_detail.php:775
|
4038 |
+
#: includes/fields/class-gf-field-list.php:13
|
4039 |
+
#: js.php:570
|
4040 |
+
#@ gravityforms
|
4041 |
+
msgid "List"
|
4042 |
+
msgstr "لیست"
|
4043 |
+
|
4044 |
+
#: common.php:3779
|
4045 |
+
#: notification.php:430
|
4046 |
+
#@ gravityforms
|
4047 |
+
msgid "Loading..."
|
4048 |
+
msgstr "در حال بارگذاری..."
|
4049 |
+
|
4050 |
+
#: form_detail.php:1451
|
4051 |
+
#@ gravityforms
|
4052 |
+
msgid "Male"
|
4053 |
+
msgstr "مذکر"
|
4054 |
+
|
4055 |
+
#: form_detail.php:1456
|
4056 |
+
#@ gravityforms
|
4057 |
+
msgid "Management/Executive"
|
4058 |
+
msgstr "مدیریت / اجرایی"
|
4059 |
+
|
4060 |
+
#: form_detail.php:1456
|
4061 |
+
#@ gravityforms
|
4062 |
+
msgid "Manufacturing/Operations"
|
4063 |
+
msgstr "ساخت / عملیات"
|
4064 |
+
|
4065 |
+
#: includes/addon/class-gf-payment-addon.php:1638
|
4066 |
+
#@ gravityforms
|
4067 |
+
msgid "Map your Form Fields to the available listed fields."
|
4068 |
+
msgstr "فیلدهای فرم خود را در فیلدهای لیست شده موجود وارد کنید.."
|
4069 |
+
|
4070 |
+
#: form_detail.php:1459
|
4071 |
+
#@ gravityforms
|
4072 |
+
msgid "March"
|
4073 |
+
msgstr "مارس"
|
4074 |
+
|
4075 |
+
#: form_detail.php:1453
|
4076 |
+
#@ gravityforms
|
4077 |
+
msgid "Marital Status"
|
4078 |
+
msgstr "وضعیت تاهل"
|
4079 |
+
|
4080 |
+
#: form_list.php:499
|
4081 |
+
#@ gravityforms
|
4082 |
+
msgid "Mark as Active"
|
4083 |
+
msgstr "علامت گذاری به عنوان فعال"
|
4084 |
+
|
4085 |
+
#: form_list.php:500
|
4086 |
+
#@ gravityforms
|
4087 |
+
msgid "Mark as Inactive"
|
4088 |
+
msgstr "علامت گذاری به عنوان غیرفعال"
|
4089 |
+
|
4090 |
+
#: entry_list.php:1175
|
4091 |
+
#@ gravityforms
|
4092 |
+
msgid "Mark as Read"
|
4093 |
+
msgstr "علامت گذاری به عنوان خوانده شده"
|
4094 |
+
|
4095 |
+
#: entry_detail.php:1289
|
4096 |
+
#@ gravityforms
|
4097 |
+
msgid "Mark as Spam"
|
4098 |
+
msgstr "علامت گذاری به عنوان هرزنامه"
|
4099 |
+
|
4100 |
+
#: entry_list.php:1176
|
4101 |
+
#@ gravityforms
|
4102 |
+
msgid "Mark as Unread"
|
4103 |
+
msgstr "علامت گذاری به عنوان خوانده نشده"
|
4104 |
+
|
4105 |
+
#: entry_list.php:1093
|
4106 |
+
#@ gravityforms
|
4107 |
+
msgid "Mark read"
|
4108 |
+
msgstr "علامت گذاری به عنوان خوانده شده"
|
4109 |
+
|
4110 |
+
#: entry_list.php:1062
|
4111 |
+
#@ gravityforms
|
4112 |
+
msgid "Mark this entry as not spam"
|
4113 |
+
msgstr "علامت گذاری این پیام ورودی به عنوان غیر هرزنامه"
|
4114 |
+
|
4115 |
+
#: entry_list.php:1100
|
4116 |
+
#@ gravityforms
|
4117 |
+
msgid "Mark this entry as spam"
|
4118 |
+
msgstr "علامت گذاری به عنوان هرزنامه"
|
4119 |
+
|
4120 |
+
#: entry_list.php:1093
|
4121 |
+
#@ gravityforms
|
4122 |
+
msgid "Mark this entry as unread"
|
4123 |
+
msgstr "علامت گذاری این پیام ورودی به عنوان خوانده نشده"
|
4124 |
+
|
4125 |
+
#: entry_list.php:1093
|
4126 |
+
#@ gravityforms
|
4127 |
+
msgid "Mark unread"
|
4128 |
+
msgstr "علامت گذاری به عنوان خوانده نشده"
|
4129 |
+
|
4130 |
+
#: form_detail.php:1456
|
4131 |
+
#@ gravityforms
|
4132 |
+
msgid "Marketing"
|
4133 |
+
msgstr "بازاریابی"
|
4134 |
+
|
4135 |
+
#: form_detail.php:1453
|
4136 |
+
#@ gravityforms
|
4137 |
+
msgid "Married"
|
4138 |
+
msgstr "متاهل"
|
4139 |
+
|
4140 |
+
#: form_detail.php:1698
|
4141 |
+
#: form_detail.php:1704
|
4142 |
+
#: form_detail.php:1711
|
4143 |
+
#: form_detail.php:1718
|
4144 |
+
#: form_detail.php:1725
|
4145 |
+
#@ gravityforms
|
4146 |
+
msgid "Mask"
|
4147 |
+
msgstr "قاب"
|
4148 |
+
|
4149 |
+
#: form_detail.php:809
|
4150 |
+
#@ gravityforms
|
4151 |
+
msgid "Math Challenge"
|
4152 |
+
msgstr "مسئله ریاضی"
|
4153 |
+
|
4154 |
+
#: form_detail.php:1779
|
4155 |
+
#@ gravityforms
|
4156 |
+
msgid "Max"
|
4157 |
+
msgstr "حداکثر"
|
4158 |
+
|
4159 |
+
#: form_detail.php:1755
|
4160 |
+
#: tooltips.php:60
|
4161 |
+
#@ gravityforms
|
4162 |
+
msgid "Maximum Characters"
|
4163 |
+
msgstr "حداکثر کاراکتر"
|
4164 |
+
|
4165 |
+
#: form_detail.php:1347
|
4166 |
+
#: tooltips.php:81
|
4167 |
+
#@ gravityforms
|
4168 |
+
msgid "Maximum File Size"
|
4169 |
+
msgstr "حداکثر اندازه فایل ها"
|
4170 |
+
|
4171 |
+
#: form_detail.php:1333
|
4172 |
+
#: tooltips.php:80
|
4173 |
+
#@ gravityforms
|
4174 |
+
msgid "Maximum Number of Files"
|
4175 |
+
msgstr "حداکثر تعداد فایل ها"
|
4176 |
+
|
4177 |
+
#: form_detail.php:1379
|
4178 |
+
#: tooltips.php:61
|
4179 |
+
#@ gravityforms
|
4180 |
+
msgid "Maximum Rows"
|
4181 |
+
msgstr "حداکثر ردیف ها"
|
4182 |
+
|
4183 |
+
#: common.php:4406
|
4184 |
+
#@ gravityforms
|
4185 |
+
msgid "Maximum number of files reached"
|
4186 |
+
msgstr "حد اکثر تعداد فایل های دریافت شده"
|
4187 |
+
|
4188 |
+
#: form_detail.php:1459
|
4189 |
+
#: includes/addon/class-gf-payment-addon.php:2279
|
4190 |
+
#@ gravityforms
|
4191 |
+
msgid "May"
|
4192 |
+
msgstr "مه"
|
4193 |
+
|
4194 |
+
#: common.php:647
|
4195 |
+
#: form_detail.php:821
|
4196 |
+
#: form_detail.php:1467
|
4197 |
+
#: form_detail.php:2038
|
4198 |
+
#@ gravityforms
|
4199 |
+
msgid "Medium"
|
4200 |
+
msgstr "متوسط"
|
4201 |
+
|
4202 |
+
#: common.php:649
|
4203 |
+
#@ gravityforms
|
4204 |
+
msgid "Medium - Centered"
|
4205 |
+
msgstr "متوسط - تراز شده وسط"
|
4206 |
+
|
4207 |
+
#: common.php:648
|
4208 |
+
#@ gravityforms
|
4209 |
+
msgid "Medium - Left Aligned"
|
4210 |
+
msgstr "متوسط - تراز شده سمت چپ"
|
4211 |
+
|
4212 |
+
#: common.php:650
|
4213 |
+
#@ gravityforms
|
4214 |
+
msgid "Medium - Right Aligned"
|
4215 |
+
msgstr "متوسط - تراز شده سمت راست"
|
4216 |
+
|
4217 |
+
#: common.php:3817
|
4218 |
+
#@ gravityforms
|
4219 |
+
msgid "Merge Tags"
|
4220 |
+
msgstr "برچسب های ادغام"
|
4221 |
+
|
4222 |
+
#: common.php:3817
|
4223 |
+
#@ gravityforms
|
4224 |
+
msgid "Merge tags allow you to dynamically populate submitted field values in your form content wherever this merge tag icon is present."
|
4225 |
+
msgstr "برچسب های ادغام به شما این امکان را به می دهند که به صورت پویا مقدار فیلدهای ارسالی را در محتویات فرم ، هرجایی که آیکون برچسبهای ادغامی وجود دارند را ارزیابی نمایید ."
|
4226 |
+
|
4227 |
+
#: form_settings.php:1278
|
4228 |
+
#: notification.php:1034
|
4229 |
+
#@ gravityforms
|
4230 |
+
msgid "Message"
|
4231 |
+
msgstr "پیام"
|
4232 |
+
|
4233 |
+
#: includes/fields/class-gf-field-name.php:119
|
4234 |
+
#: js.php:865
|
4235 |
+
#@ gravityforms
|
4236 |
+
msgid "Middle"
|
4237 |
+
msgstr "میان"
|
4238 |
+
|
4239 |
+
#: includes/fields/class-gf-field-name.php:101
|
4240 |
+
#@ gravityforms
|
4241 |
+
msgid "Middle name"
|
4242 |
+
msgstr "نام میانی"
|
4243 |
+
|
4244 |
+
#: form_detail.php:1773
|
4245 |
+
#@ gravityforms
|
4246 |
+
msgid "Min"
|
4247 |
+
msgstr "حداقل"
|
4248 |
+
|
4249 |
+
#: form_detail.php:1567
|
4250 |
+
#@ gravityforms
|
4251 |
+
msgid "Minimum Strength"
|
4252 |
+
msgstr "حداقل قدرت"
|
4253 |
+
|
4254 |
+
#: form_display.php:2347
|
4255 |
+
#@ gravityforms
|
4256 |
+
msgid "Mismatch"
|
4257 |
+
msgstr "عدم تطابق"
|
4258 |
+
|
4259 |
+
#: js.php:956
|
4260 |
+
#@ gravityforms
|
4261 |
+
msgid "Miss"
|
4262 |
+
msgstr "دوشیزه"
|
4263 |
+
|
4264 |
+
#: includes/api.php:588
|
4265 |
+
#@ gravityforms
|
4266 |
+
msgid "Missing entry id"
|
4267 |
+
msgstr "شماره پیام ورودی از دست رفته"
|
4268 |
+
|
4269 |
+
#: includes/api.php:175
|
4270 |
+
#: includes/webapi/webapi.php:788
|
4271 |
+
#@ gravityforms
|
4272 |
+
msgid "Missing form id"
|
4273 |
+
msgstr "شماره فرم از دست رفته"
|
4274 |
+
|
4275 |
+
#: form_detail.php:1458
|
4276 |
+
#@ gravityforms
|
4277 |
+
msgid "Monday"
|
4278 |
+
msgstr "دوشنبه"
|
4279 |
+
|
4280 |
+
#: includes/addon/class-gf-payment-addon.php:2117
|
4281 |
+
#: includes/addon/class-gf-payment-addon.php:2118
|
4282 |
+
#: includes/fields/class-gf-field-creditcard.php:284
|
4283 |
+
#: includes/fields/class-gf-field-date.php:469
|
4284 |
+
#: js.php:890
|
4285 |
+
#: js.php:891
|
4286 |
+
#@ gravityforms
|
4287 |
+
msgid "Month"
|
4288 |
+
msgstr "ماه"
|
4289 |
+
|
4290 |
+
#: includes/addon/class-gf-payment-addon.php:2403
|
4291 |
+
#@ gravityforms
|
4292 |
+
msgid "Monthly"
|
4293 |
+
msgstr "ماهانه"
|
4294 |
+
|
4295 |
+
#: form_detail.php:1459
|
4296 |
+
#@ gravityforms
|
4297 |
+
msgid "Months of the Year"
|
4298 |
+
msgstr "ماه های سال"
|
4299 |
+
|
4300 |
+
#: entry_list.php:1109
|
4301 |
+
#@ gravityforms
|
4302 |
+
msgid "Move this entry to the trash"
|
4303 |
+
msgstr "انتقال این پیام ورودی به زباله دان"
|
4304 |
+
|
4305 |
+
#: form_detail.php:2465
|
4306 |
+
#: form_list.php:675
|
4307 |
+
#@ gravityforms
|
4308 |
+
msgid "Move this form to the trash"
|
4309 |
+
msgstr "انتقال فرم به زباله دان"
|
4310 |
+
|
4311 |
+
#: entry_detail.php:1283
|
4312 |
+
#: form_detail.php:2465
|
4313 |
+
#@ gravityforms
|
4314 |
+
msgid "Move to Trash"
|
4315 |
+
msgstr "انتقال به زباله دان"
|
4316 |
+
|
4317 |
+
#: form_list.php:503
|
4318 |
+
#@ gravityforms
|
4319 |
+
msgid "Move to trash"
|
4320 |
+
msgstr "انتقال به زباله دان"
|
4321 |
+
|
4322 |
+
#: js.php:956
|
4323 |
+
#@ gravityforms
|
4324 |
+
msgid "Mr."
|
4325 |
+
msgstr "آقا"
|
4326 |
+
|
4327 |
+
#: js.php:956
|
4328 |
+
#@ gravityforms
|
4329 |
+
msgid "Mrs."
|
4330 |
+
msgstr "خانم"
|
4331 |
+
|
4332 |
+
#: js.php:956
|
4333 |
+
#@ gravityforms
|
4334 |
+
msgid "Ms."
|
4335 |
+
msgstr "کارشناس"
|
4336 |
+
|
4337 |
+
#: form_detail.php:1465
|
4338 |
+
#@ gravityforms
|
4339 |
+
msgid "Much Better"
|
4340 |
+
msgstr "خیلی بهتر"
|
4341 |
+
|
4342 |
+
#: form_detail.php:1465
|
4343 |
+
#@ gravityforms
|
4344 |
+
msgid "Much Worse"
|
4345 |
+
msgstr "خیلی بدتر"
|
4346 |
+
|
4347 |
+
#: form_detail.php:762
|
4348 |
+
#: form_detail.php:790
|
4349 |
+
#: form_detail.php:989
|
4350 |
+
#: includes/fields/class-gf-field-multiselect.php:18
|
4351 |
+
#@ gravityforms
|
4352 |
+
msgid "Multi Select"
|
4353 |
+
msgstr "چند انتخابی"
|
4354 |
+
|
4355 |
+
#: settings.php:576
|
4356 |
+
#@ gravityforms
|
4357 |
+
msgid "MySQL Version"
|
4358 |
+
msgstr "نسخه MySQL"
|
4359 |
+
|
4360 |
+
#: form_settings.php:1798
|
4361 |
+
#: includes/addon/class-gf-payment-addon.php:1465
|
4362 |
+
#: includes/addon/class-gf-payment-addon.php:1528
|
4363 |
+
#: includes/addon/class-gf-payment-addon.php:1532
|
4364 |
+
#: includes/fields/class-gf-field-name.php:12
|
4365 |
+
#: js.php:578
|
4366 |
+
#: js.php:754
|
4367 |
+
#: notification.php:695
|
4368 |
+
#: notification.php:1567
|
4369 |
+
#@ gravityforms
|
4370 |
+
msgid "Name"
|
4371 |
+
msgstr "نام"
|
4372 |
+
|
4373 |
+
#: form_detail.php:1221
|
4374 |
+
#: tooltips.php:96
|
4375 |
+
#@ gravityforms
|
4376 |
+
msgid "Name Fields"
|
4377 |
+
msgstr "فیلدهای نام"
|
4378 |
+
|
4379 |
+
#: form_detail.php:1207
|
4380 |
+
#@ gravityforms
|
4381 |
+
msgid "Name Format"
|
4382 |
+
msgstr "قالب نام"
|
4383 |
+
|
4384 |
+
#: tooltips.php:97
|
4385 |
+
#@ gravityforms
|
4386 |
+
msgid "Name Prefix Choices"
|
4387 |
+
msgstr "انتخاب های پیشوند را نام گذاری کنید."
|
4388 |
+
|
4389 |
+
#: tooltips.php:121
|
4390 |
+
#@ gravityforms
|
4391 |
+
msgid "Name each of the pages on your form. Page names are displayed with the selected progress indicator."
|
4392 |
+
msgstr "هر صفحه را در فرمتان نام گذاری کنید. نام صفحات با انتخاب نمایشگر پیشرفت نمایش داده می شود."
|
4393 |
+
|
4394 |
+
#: includes/fields/class-gf-field-name.php:346
|
4395 |
+
#@ gravityforms
|
4396 |
+
msgid "Name prefix"
|
4397 |
+
msgstr "پیشوند نام"
|
4398 |
+
|
4399 |
+
#: includes/fields/class-gf-field-name.php:103
|
4400 |
+
#@ gravityforms
|
4401 |
+
msgid "Name suffix"
|
4402 |
+
msgstr "پسوند نام"
|
4403 |
+
|
4404 |
+
#: includes/addon/class-gf-results.php:347
|
4405 |
+
#@ gravityforms
|
4406 |
+
msgid "Narrow the results by adding filters. Note that some field types support more options than others."
|
4407 |
+
msgstr "نتایج را با اضافه کردن فیلترها محدودتر کنید. توجه کنید که بعضی از فیلدها از گزینه های بیشتری پشتیبانی می کنند."
|
4408 |
+
|
4409 |
+
#: form_detail.php:1462
|
4410 |
+
#@ gravityforms
|
4411 |
+
msgid "Neutral"
|
4412 |
+
msgstr "بی تفاوت"
|
4413 |
+
|
4414 |
+
#: form_detail.php:1461
|
4415 |
+
#@ gravityforms
|
4416 |
+
msgid "Never used"
|
4417 |
+
msgstr "بلا استفاده"
|
4418 |
+
|
4419 |
+
#: form_detail.php:876
|
4420 |
+
#@ gravityforms
|
4421 |
+
msgid "New"
|
4422 |
+
msgstr "جدید"
|
4423 |
+
|
4424 |
+
#: form_detail.php:151
|
4425 |
+
#: gravityforms.php:1771
|
4426 |
+
#: gravityforms.php:4560
|
4427 |
+
#@ gravityforms
|
4428 |
+
msgid "New Form"
|
4429 |
+
msgstr "فرم جدید"
|
4430 |
+
|
4431 |
+
#: form_detail.php:2875
|
4432 |
+
#@ gravityforms
|
4433 |
+
msgid "New submission from"
|
4434 |
+
msgstr "فرم ارسالی جدید"
|
4435 |
+
|
4436 |
+
#: settings.php:632
|
4437 |
+
#, php-format
|
4438 |
+
#@ gravityforms
|
4439 |
+
msgid "New version %s available. Automatic upgrade available on the %splugins page%s"
|
4440 |
+
msgstr "نسخه جدید %s موجود است . بروزرسانی خودکار در%sصفحه افزونه ها%s موجود است. "
|
4441 |
+
|
4442 |
+
#: form_display.php:2645
|
4443 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step.php:102
|
4444 |
+
#: js.php:557
|
4445 |
+
#@ gravityforms
|
4446 |
+
msgid "Next"
|
4447 |
+
msgstr "بعدی"
|
4448 |
+
|
4449 |
+
#: form_detail.php:669
|
4450 |
+
#@ gravityforms
|
4451 |
+
msgid "Next Button"
|
4452 |
+
msgstr "دکمه بعدی"
|
4453 |
+
|
4454 |
+
#: tooltips.php:126
|
4455 |
+
#@ gravityforms
|
4456 |
+
msgid "Next Button Conditional Logic"
|
4457 |
+
msgstr "دکمه بعدی شرط منطقی"
|
4458 |
+
|
4459 |
+
#: tooltips.php:123
|
4460 |
+
#@ gravityforms
|
4461 |
+
msgid "Next Button Image"
|
4462 |
+
msgstr "تصویر دکمه بعدی"
|
4463 |
+
|
4464 |
+
#: tooltips.php:122
|
4465 |
+
#@ gravityforms
|
4466 |
+
msgid "Next Button Text"
|
4467 |
+
msgstr "متن دکمه بعدی"
|
4468 |
+
|
4469 |
+
#: form_display.php:2644
|
4470 |
+
#@ gravityforms
|
4471 |
+
msgid "Next Page"
|
4472 |
+
msgstr "صفحه بعد"
|
4473 |
+
|
4474 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:73
|
4475 |
+
#: settings.php:312
|
4476 |
+
#: settings.php:323
|
4477 |
+
#: settings.php:352
|
4478 |
+
#@ gravityforms
|
4479 |
+
msgid "No"
|
4480 |
+
msgstr "خیر"
|
4481 |
+
|
4482 |
+
#: form_detail.php:1860
|
4483 |
+
#: tooltips.php:85
|
4484 |
+
#@ gravityforms
|
4485 |
+
msgid "No Duplicates"
|
4486 |
+
msgstr "بدون تکرار"
|
4487 |
+
|
4488 |
+
#: form_detail.php:1249
|
4489 |
+
#@ gravityforms
|
4490 |
+
msgid "No Icon"
|
4491 |
+
msgstr "بدون آیکون"
|
4492 |
+
|
4493 |
+
#: includes/addon/class-gf-results.php:479
|
4494 |
+
#: includes/addon/class-gf-results.php:486
|
4495 |
+
#: includes/addon/class-gf-results.php:501
|
4496 |
+
#@ gravityforms
|
4497 |
+
msgid "No entries for this field"
|
4498 |
+
msgstr "پیام ورودی ای برای این فیلد وجود ندارد"
|
4499 |
+
|
4500 |
+
#: gravityforms.php:3326
|
4501 |
+
#@ gravityforms
|
4502 |
+
msgid "No notifications have been selected. Please select a notification to be sent."
|
4503 |
+
msgstr " اعلانی انتخاب نشده است . یک اعلان برای ارسال انتخاب نمایید."
|
4504 |
+
|
4505 |
+
#: includes/webapi/webapi.php:1000
|
4506 |
+
#@ gravityforms
|
4507 |
+
msgid "No property values were found in the request body"
|
4508 |
+
msgstr "هیچ مقداری برای این درخواست یافت نشد."
|
4509 |
+
|
4510 |
+
#: includes/locking/class-gf-locking.php:207
|
4511 |
+
#@ gravityforms
|
4512 |
+
msgid "No response"
|
4513 |
+
msgstr "بی پاسخ"
|
4514 |
+
|
4515 |
+
#: includes/addon/class-gf-results.php:427
|
4516 |
+
#@ gravityforms
|
4517 |
+
msgid "No results"
|
4518 |
+
msgstr "موردی یافت نشد"
|
4519 |
+
|
4520 |
+
#: form_display.php:2282
|
4521 |
+
#@ gravityforms
|
4522 |
+
msgid "No results matched"
|
4523 |
+
msgstr "نتیجه ای یافت نشد ."
|
4524 |
+
|
4525 |
+
#: includes/addon/class-gf-results.php:372
|
4526 |
+
#@ gravityforms
|
4527 |
+
msgid "No results."
|
4528 |
+
msgstr "موردی یافت نشد"
|
4529 |
+
|
4530 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:45
|
4531 |
+
#: settings.php:331
|
4532 |
+
#: tooltips.php:157
|
4533 |
+
#@ gravityforms
|
4534 |
+
msgid "No-Conflict Mode"
|
4535 |
+
msgstr "حالت بدون تداخل (No-Conflict)"
|
4536 |
+
|
4537 |
+
#: form_detail.php:1456
|
4538 |
+
#@ gravityforms
|
4539 |
+
msgid "Non-Profit/Volunteer"
|
4540 |
+
msgstr "بدون سود / داوطلب"
|
4541 |
+
|
4542 |
+
#: form_detail.php:250
|
4543 |
+
#: form_detail.php:1571
|
4544 |
+
#@ gravityforms
|
4545 |
+
msgid "None"
|
4546 |
+
msgstr "هیچ"
|
4547 |
+
|
4548 |
+
#: form_detail.php:1450
|
4549 |
+
#@ gravityforms
|
4550 |
+
msgid "North America"
|
4551 |
+
msgstr "آمریکای شمالی"
|
4552 |
+
|
4553 |
+
#: form_detail.php:1463
|
4554 |
+
#@ gravityforms
|
4555 |
+
msgid "Not Important"
|
4556 |
+
msgstr "بدون اهمیت"
|
4557 |
+
|
4558 |
+
#: entry_detail.php:1255
|
4559 |
+
#: entry_list.php:1062
|
4560 |
+
#: entry_list.php:1170
|
4561 |
+
#@ gravityforms
|
4562 |
+
msgid "Not Spam"
|
4563 |
+
msgstr "هرزنامه نیست"
|
4564 |
+
|
4565 |
+
#: form_detail.php:1466
|
4566 |
+
#@ gravityforms
|
4567 |
+
msgid "Not Sure"
|
4568 |
+
msgstr "عدم اطمینان"
|
4569 |
+
|
4570 |
+
#: includes/webapi/webapi.php:1779
|
4571 |
+
#@ gravityforms
|
4572 |
+
msgid "Not authorized"
|
4573 |
+
msgstr "دسترسی غیر مجاز"
|
4574 |
+
|
4575 |
+
#: form_detail.php:1454
|
4576 |
+
#@ gravityforms
|
4577 |
+
msgid "Not employed and not looking for work"
|
4578 |
+
msgstr "بیکارم و دنبال کار نیستم"
|
4579 |
+
|
4580 |
+
#: form_detail.php:1454
|
4581 |
+
#@ gravityforms
|
4582 |
+
msgid "Not employed but looking for work"
|
4583 |
+
msgstr "استخدام نشده ام ولی دنبال کار می کردم."
|
4584 |
+
|
4585 |
+
#: includes/webapi/webapi.php:1799
|
4586 |
+
#@ gravityforms
|
4587 |
+
msgid "Not found"
|
4588 |
+
msgstr "یافت نشد"
|
4589 |
+
|
4590 |
+
#: includes/webapi/webapi.php:1804
|
4591 |
+
#@ gravityforms
|
4592 |
+
msgid "Not implemented"
|
4593 |
+
msgstr "انجام نشد"
|
4594 |
+
|
4595 |
+
#: entry_detail.php:48
|
4596 |
+
#@ gravityforms
|
4597 |
+
msgid "Notes"
|
4598 |
+
msgstr "یادداشت ها"
|
4599 |
+
|
4600 |
+
#: notification.php:217
|
4601 |
+
#@ gravityforms
|
4602 |
+
msgid "Notification could not be updated. Please enter all required information below."
|
4603 |
+
msgstr "اعلان نمی تواند بروز رسانی شوند. لطفاً اطلاعات مورد نیاز زیر را وارد کنید."
|
4604 |
+
|
4605 |
+
#: notification.php:637
|
4606 |
+
#@ gravityforms
|
4607 |
+
msgid "Notification deleted."
|
4608 |
+
msgstr "اعلان حذف شد."
|
4609 |
+
|
4610 |
+
#: notification.php:645
|
4611 |
+
#@ gravityforms
|
4612 |
+
msgid "Notification duplicates."
|
4613 |
+
msgstr "اعلان ها تکثیر شد."
|
4614 |
+
|
4615 |
+
#: forms_model.php:1056
|
4616 |
+
#: forms_model.php:1088
|
4617 |
+
#@ gravityforms
|
4618 |
+
msgid "Notification not found"
|
4619 |
+
msgstr "اعلان یافت نشد"
|
4620 |
+
|
4621 |
+
#: notification.php:205
|
4622 |
+
#, php-format
|
4623 |
+
#@ gravityforms
|
4624 |
+
msgid "Notification saved successfully. %sBack to notifications.%s"
|
4625 |
+
msgstr "اعلان با موفقیت ذخیره شد. %sبرگشت به اعلان ها%s"
|
4626 |
+
|
4627 |
+
#: entry_detail.php:40
|
4628 |
+
#: form_settings.php:1477
|
4629 |
+
#: notification.php:221
|
4630 |
+
#: notification.php:557
|
4631 |
+
#: notification.php:561
|
4632 |
+
#@ gravityforms
|
4633 |
+
msgid "Notifications"
|
4634 |
+
msgstr "اعلان ها"
|
4635 |
+
|
4636 |
+
#: entry_list.php:1589
|
4637 |
+
#, php-format
|
4638 |
+
#@ gravityforms
|
4639 |
+
msgid "Notifications for %s were resent successfully."
|
4640 |
+
msgstr "ایمیل اعلان برای %s. با موفقیت دوباره ارسال شد."
|
4641 |
+
|
4642 |
+
#: entry_detail.php:475
|
4643 |
+
#@ gravityforms
|
4644 |
+
msgid "Notifications were resent successfully."
|
4645 |
+
msgstr "اعلان ها دوباره با موفقیت ارسال شدند."
|
4646 |
+
|
4647 |
+
#: form_detail.php:1459
|
4648 |
+
#@ gravityforms
|
4649 |
+
msgid "November"
|
4650 |
+
msgstr "نوامبر"
|
4651 |
+
|
4652 |
+
#: form_detail.php:365
|
4653 |
+
#@ gravityforms
|
4654 |
+
msgid "Now your new field magically appears over here."
|
4655 |
+
msgstr "حالا فیلد جدید شما ظاهر می شود ."
|
4656 |
+
|
4657 |
+
#: form_detail.php:646
|
4658 |
+
#: form_detail.php:763
|
4659 |
+
#: includes/fields/class-gf-field-number.php:13
|
4660 |
+
#: js.php:656
|
4661 |
+
#@ gravityforms
|
4662 |
+
msgid "Number"
|
4663 |
+
msgstr "عددی"
|
4664 |
+
|
4665 |
+
#: form_detail.php:1585
|
4666 |
+
#: tooltips.php:73
|
4667 |
+
#@ gravityforms
|
4668 |
+
msgid "Number Format"
|
4669 |
+
msgstr "قالب اعداد"
|
4670 |
+
|
4671 |
+
#: tooltips.php:86
|
4672 |
+
#@ gravityforms
|
4673 |
+
msgid "Number Range"
|
4674 |
+
msgstr "بازه عدد"
|
4675 |
+
|
4676 |
+
#: form_settings.php:665
|
4677 |
+
#@ gravityforms
|
4678 |
+
msgid "Number of Entries"
|
4679 |
+
msgstr "تعداد پیامهای ورودی"
|
4680 |
+
|
4681 |
+
#: form_detail.php:1459
|
4682 |
+
#@ gravityforms
|
4683 |
+
msgid "October"
|
4684 |
+
msgstr "اکتبر"
|
4685 |
+
|
4686 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:49
|
4687 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:60
|
4688 |
+
#: settings.php:335
|
4689 |
+
#: settings.php:390
|
4690 |
+
#: settings.php:401
|
4691 |
+
#@ gravityforms
|
4692 |
+
msgid "Off"
|
4693 |
+
msgstr "خاموش"
|
4694 |
+
|
4695 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:48
|
4696 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:59
|
4697 |
+
#: settings.php:334
|
4698 |
+
#: settings.php:389
|
4699 |
+
#: settings.php:400
|
4700 |
+
#@ gravityforms
|
4701 |
+
msgid "On"
|
4702 |
+
msgstr "روشن"
|
4703 |
+
|
4704 |
+
#: form_detail.php:1460
|
4705 |
+
#@ gravityforms
|
4706 |
+
msgid "Once a month"
|
4707 |
+
msgstr "یکبار در ماه"
|
4708 |
+
|
4709 |
+
#: form_detail.php:1460
|
4710 |
+
#@ gravityforms
|
4711 |
+
msgid "Once a week"
|
4712 |
+
msgstr "یک بار در هفته"
|
4713 |
+
|
4714 |
+
#: form_detail.php:395
|
4715 |
+
#@ gravityforms
|
4716 |
+
msgid "Once you're happy with your form, remember to click on the 'update form' button to save all your hard work."
|
4717 |
+
msgstr "برای ذخیره فرم بر روی دکمه بروزرسانی کلیک نمایید تا زحمات شما به باد نرود."
|
4718 |
+
|
4719 |
+
#: form_detail.php:362
|
4720 |
+
#@ gravityforms
|
4721 |
+
msgid "Once you've found the field type you want, click to add it to the form editor here on the left side of your screen."
|
4722 |
+
msgstr "نوع فیلدهایی را که می خواهید پیدا کنید و برای افزودن به فرم بر روی آن کلیک نمایید."
|
4723 |
+
|
4724 |
+
#: includes/fields/class-gf-field-creditcard.php:175
|
4725 |
+
#: includes/fields/class-gf-field-creditcard.php:238
|
4726 |
+
#@ gravityforms
|
4727 |
+
msgid "Only digits are allowed"
|
4728 |
+
msgstr "فقط استفاده از اعداد مجاز است."
|
4729 |
+
|
4730 |
+
#: js.php:997
|
4731 |
+
#@ gravityforms
|
4732 |
+
msgid "Only one Post Content field can be added to the form"
|
4733 |
+
msgstr "فقط یک فیلد مطلب می توان به فرم اضافه کرد"
|
4734 |
+
|
4735 |
+
#: js.php:1009
|
4736 |
+
#@ gravityforms
|
4737 |
+
msgid "Only one Post Excerpt field can be added to the form"
|
4738 |
+
msgstr "فقط یک فیلد چکیده ی نوشته می توان به فرم اضافه کرد"
|
4739 |
+
|
4740 |
+
#: js.php:1003
|
4741 |
+
#@ gravityforms
|
4742 |
+
msgid "Only one Post Title field can be added to the form"
|
4743 |
+
msgstr "فقط یک فیلد عنوان نوشته می توان به فرم اضافه کرد"
|
4744 |
+
|
4745 |
+
#: js.php:990
|
4746 |
+
#@ gravityforms
|
4747 |
+
msgid "Only one Shipping field can be added to the form"
|
4748 |
+
msgstr "فقط یک فیلد حمل و نقل می توان به فرم اضافه کرد"
|
4749 |
+
|
4750 |
+
#: js.php:1015
|
4751 |
+
#@ gravityforms
|
4752 |
+
msgid "Only one credit card field can be added to the form"
|
4753 |
+
msgstr "فقط یک فیلد کارت اعتباری می توان به فرم اضافه کرد"
|
4754 |
+
|
4755 |
+
#: js.php:983
|
4756 |
+
#@ gravityforms
|
4757 |
+
msgid "Only one reCAPTCHA field can be added to the form"
|
4758 |
+
msgstr "فقط یک کد امنیتی می توانید به فرم اضافه کنید."
|
4759 |
+
|
4760 |
+
#: form_display.php:780
|
4761 |
+
#@ gravityforms
|
4762 |
+
msgid "Oops! We could not locate your form."
|
4763 |
+
msgstr "اوووپس! نمی توانیم فرم شما را بیابیم."
|
4764 |
+
|
4765 |
+
#: select_columns.php:36
|
4766 |
+
#@ gravityforms
|
4767 |
+
msgid "Oops! We could not locate your form. Please try again."
|
4768 |
+
msgstr "متأسفانه فرم شما یافت نشد. لطفاً دوباره سعی کنید "
|
4769 |
+
|
4770 |
+
#: entry_detail.php:219
|
4771 |
+
#@ gravityforms
|
4772 |
+
msgid "Oops! We couldn't find your entry. Please try again"
|
4773 |
+
msgstr "متاسفانه ما نمی توانیم این پیام ورودی را پیدا کنیم . لطفاً مجددا تلاش نمایید "
|
4774 |
+
|
4775 |
+
#: gravityforms.php:2242
|
4776 |
+
#, php-format
|
4777 |
+
#@ gravityforms
|
4778 |
+
msgid "Oops!! Something went wrong. %sPlease try again or %scontact us%s."
|
4779 |
+
msgstr "مشکلی وجود دارد.%s لطفاً دوباره امتحان کنید یا%s با ما تماس بگیرید.%s"
|
4780 |
+
|
4781 |
+
#: includes/addon/class-gf-auto-upgrade.php:180
|
4782 |
+
#, php-format
|
4783 |
+
#@ gravityforms
|
4784 |
+
msgid "Oops!! Something went wrong.%sPlease try again or %scontact us%s."
|
4785 |
+
msgstr "مشکلی وجود دارد.%s لطفاً دوباره امتحان کنید یا%s با ما تماس بگیرید.%s"
|
4786 |
+
|
4787 |
+
#: includes/webapi/webapi.php:298
|
4788 |
+
#@ gravityforms
|
4789 |
+
msgid "Open developer tools"
|
4790 |
+
msgstr "ابزار های توسعه"
|
4791 |
+
|
4792 |
+
#: includes/fields/class-gf-field-option.php:29
|
4793 |
+
#: js.php:783
|
4794 |
+
#@ gravityforms
|
4795 |
+
msgid "Option"
|
4796 |
+
msgstr "انتخاب ها"
|
4797 |
+
|
4798 |
+
#: form_detail.php:2136
|
4799 |
+
#: tooltips.php:104
|
4800 |
+
#@ gravityforms
|
4801 |
+
msgid "Option Label"
|
4802 |
+
msgstr "برچسب تنظیمات"
|
4803 |
+
|
4804 |
+
#: common.php:540
|
4805 |
+
#@ gravityforms
|
4806 |
+
msgid "Optional form fields"
|
4807 |
+
msgstr "فیلدهای اختیاری"
|
4808 |
+
|
4809 |
+
#: includes/addon/class-gf-payment-addon.php:1646
|
4810 |
+
#@ gravityforms
|
4811 |
+
msgid "Options"
|
4812 |
+
msgstr "گزینه ها"
|
4813 |
+
|
4814 |
+
#: form_detail.php:266
|
4815 |
+
#@ gravityforms
|
4816 |
+
msgid "Orange"
|
4817 |
+
msgstr "نارنجی"
|
4818 |
+
|
4819 |
+
#: common.php:1295
|
4820 |
+
#: entry_detail.php:967
|
4821 |
+
#@ gravityforms
|
4822 |
+
msgid "Order"
|
4823 |
+
msgstr "سفارش"
|
4824 |
+
|
4825 |
+
#: includes/addon/class-gf-payment-addon.php:2075
|
4826 |
+
#@ gravityforms
|
4827 |
+
msgid "Orders"
|
4828 |
+
msgstr "سفارشات"
|
4829 |
+
|
4830 |
+
#: common.php:548
|
4831 |
+
#: common.php:3238
|
4832 |
+
#: form_detail.php:1456
|
4833 |
+
#: form_detail.php:1457
|
4834 |
+
#: includes/fields/class-gf-field-radio.php:132
|
4835 |
+
#@ gravityforms
|
4836 |
+
msgid "Other"
|
4837 |
+
msgstr "سایر"
|
4838 |
+
|
4839 |
+
#: includes/addon/class-gf-payment-addon.php:1620
|
4840 |
+
#@ gravityforms
|
4841 |
+
msgid "Other Settings"
|
4842 |
+
msgstr "سایر تنظیمات"
|
4843 |
+
|
4844 |
+
#: settings.php:308
|
4845 |
+
#: tooltips.php:155
|
4846 |
+
#@ gravityforms
|
4847 |
+
msgid "Output CSS"
|
4848 |
+
msgstr "CSS خروجی"
|
4849 |
+
|
4850 |
+
#: settings.php:319
|
4851 |
+
#: tooltips.php:156
|
4852 |
+
#@ gravityforms
|
4853 |
+
msgid "Output HTML5"
|
4854 |
+
msgstr "خروجی HTML5 "
|
4855 |
+
|
4856 |
+
#: tooltips.php:164
|
4857 |
+
#@ gravityforms
|
4858 |
+
msgid "Override Notifications"
|
4859 |
+
msgstr "پاک کردن ( نادیده گرفتن ) اعلان ها"
|
4860 |
+
|
4861 |
+
#: includes/fields/class-gf-field-page.php:27
|
4862 |
+
#@ gravityforms
|
4863 |
+
msgid "PAGE BREAK"
|
4864 |
+
msgstr "جداکننده صفحه"
|
4865 |
+
|
4866 |
+
#: settings.php:556
|
4867 |
+
#@ gravityforms
|
4868 |
+
msgid "PHP Version"
|
4869 |
+
msgstr "نسخه PHP"
|
4870 |
+
|
4871 |
+
#: includes/fields/class-gf-field-time.php:118
|
4872 |
+
#@ gravityforms
|
4873 |
+
msgid "PM"
|
4874 |
+
msgstr "ب.ظ"
|
4875 |
+
|
4876 |
+
#: form_settings.php:1261
|
4877 |
+
#: form_settings.php:1298
|
4878 |
+
#: form_settings.php:1949
|
4879 |
+
#: includes/fields/class-gf-field-page.php:12
|
4880 |
+
#: js.php:84
|
4881 |
+
#@ gravityforms
|
4882 |
+
msgid "Page"
|
4883 |
+
msgstr "برگه"
|
4884 |
+
|
4885 |
+
#: tooltips.php:118
|
4886 |
+
#@ gravityforms
|
4887 |
+
msgid "Page Conditional Logic"
|
4888 |
+
msgstr "صفحه منطق شرطی"
|
4889 |
+
|
4890 |
+
#: form_detail.php:288
|
4891 |
+
#: tooltips.php:121
|
4892 |
+
#@ gravityforms
|
4893 |
+
msgid "Page Names"
|
4894 |
+
msgstr "نام برگه"
|
4895 |
+
|
4896 |
+
#: form_detail.php:760
|
4897 |
+
#: includes/fields/class-gf-field-textarea.php:13
|
4898 |
+
#@ gravityforms
|
4899 |
+
msgid "Paragraph Text"
|
4900 |
+
msgstr "متن پاراگرافی"
|
4901 |
+
|
4902 |
+
#: js.php:175
|
4903 |
+
#@ gravityforms
|
4904 |
+
msgid "Parameter Name"
|
4905 |
+
msgstr "نام پارامتر"
|
4906 |
+
|
4907 |
+
#: js.php:170
|
4908 |
+
#@ gravityforms
|
4909 |
+
msgid "Parameter Name:"
|
4910 |
+
msgstr "نام پارامتر"
|
4911 |
+
|
4912 |
+
#: form_detail.php:1455
|
4913 |
+
#@ gravityforms
|
4914 |
+
msgid "Part-Time"
|
4915 |
+
msgstr "پاره وقت"
|
4916 |
+
|
4917 |
+
#: tooltips.php:52
|
4918 |
+
#@ gravityforms
|
4919 |
+
msgid "Pass Data Via Query String"
|
4920 |
+
msgstr "ارسال اطلاعات با Query String"
|
4921 |
+
|
4922 |
+
#: form_settings.php:1312
|
4923 |
+
#: form_settings.php:1346
|
4924 |
+
#@ gravityforms
|
4925 |
+
msgid "Pass Field Data Via Query String"
|
4926 |
+
msgstr "ارسال اطلاعات فیلد باQuery String "
|
4927 |
+
|
4928 |
+
#: includes/fields/class-gf-field-password.php:14
|
4929 |
+
#: js.php:691
|
4930 |
+
#@ gravityforms
|
4931 |
+
msgid "Password"
|
4932 |
+
msgstr "کلمه عبور"
|
4933 |
+
|
4934 |
+
#: common.php:4304
|
4935 |
+
#: export.php:855
|
4936 |
+
#: forms_model.php:4484
|
4937 |
+
#: includes/addon/class-gf-payment-addon.php:1610
|
4938 |
+
#: includes/addon/class-gf-payment-addon.php:1615
|
4939 |
+
#: select_columns.php:182
|
4940 |
+
#@ gravityforms
|
4941 |
+
msgid "Payment Amount"
|
4942 |
+
msgstr "مبلغ پرداختی"
|
4943 |
+
|
4944 |
+
#: common.php:4298
|
4945 |
+
#: export.php:856
|
4946 |
+
#: forms_model.php:4481
|
4947 |
+
#: select_columns.php:183
|
4948 |
+
#@ gravityforms
|
4949 |
+
msgid "Payment Date"
|
4950 |
+
msgstr "تاریخ پرداخت"
|
4951 |
+
|
4952 |
+
#: entry_detail.php:59
|
4953 |
+
#: entry_detail.php:1076
|
4954 |
+
#@ gravityforms
|
4955 |
+
msgid "Payment Details"
|
4956 |
+
msgstr "جزییات پرداخت"
|
4957 |
+
|
4958 |
+
#: includes/addon/class-gf-payment-addon.php:2430
|
4959 |
+
#@ gravityforms
|
4960 |
+
msgid "Payment Method"
|
4961 |
+
msgstr "روش پرداخت"
|
4962 |
+
|
4963 |
+
#: common.php:4260
|
4964 |
+
#: export.php:857
|
4965 |
+
#: forms_model.php:4475
|
4966 |
+
#: select_columns.php:180
|
4967 |
+
#@ gravityforms
|
4968 |
+
msgid "Payment Status"
|
4969 |
+
msgstr "وضعیت پرداخت"
|
4970 |
+
|
4971 |
+
#: includes/addon/class-gf-payment-addon.php:467
|
4972 |
+
#, php-format
|
4973 |
+
#@ gravityforms
|
4974 |
+
msgid "Payment failed to be captured. Reason: %s"
|
4975 |
+
msgstr "پرداخت ناموفق بود. دلیل : %s"
|
4976 |
+
|
4977 |
+
#: includes/addon/class-gf-payment-addon.php:1051
|
4978 |
+
#, php-format
|
4979 |
+
#@ gravityforms
|
4980 |
+
msgid "Payment has been completed. Amount: %s. Transaction Id: %s."
|
4981 |
+
msgstr "وضعیت پرداخت : کامل . مبلغ : %s . کد رهگیری : %s ."
|
4982 |
+
|
4983 |
+
#: includes/addon/class-gf-payment-addon.php:1108
|
4984 |
+
#, php-format
|
4985 |
+
#@ gravityforms
|
4986 |
+
msgid "Payment has been refunded. Amount: %s. Transaction Id: %s."
|
4987 |
+
msgstr "وضعیت پرداخت : مسترد . مبلغ : %s . کد رهگیری : %s ."
|
4988 |
+
|
4989 |
+
#: includes/addon/class-gf-payment-addon.php:1161
|
4990 |
+
#, php-format
|
4991 |
+
#@ gravityforms
|
4992 |
+
msgid "Payment has failed. Amount: %s."
|
4993 |
+
msgstr "وضعیت پرداخت : ناموفق . مبلغ : %s . "
|
4994 |
+
|
4995 |
+
#: includes/addon/class-gf-payment-addon.php:987
|
4996 |
+
#, php-format
|
4997 |
+
#@ gravityforms
|
4998 |
+
msgid "Payment is pending. Amount: %s. Transaction Id: %s."
|
4999 |
+
msgstr "پرداخت در حالت انتظار است . مبلغ : %s . کد رهگیری : %s ."
|
5000 |
+
|
5001 |
+
#: includes/locking/class-gf-locking.php:206
|
5002 |
+
#@ gravityforms
|
5003 |
+
msgid "Pending"
|
5004 |
+
msgstr "منتظر"
|
5005 |
+
|
5006 |
+
#: form_detail.php:1455
|
5007 |
+
#@ gravityforms
|
5008 |
+
msgid "Per Diem"
|
5009 |
+
msgstr "روزانه"
|
5010 |
+
|
5011 |
+
#: includes/webapi/webapi.php:268
|
5012 |
+
#@ gravityforms
|
5013 |
+
msgid "Permalinks are not in the correct format."
|
5014 |
+
msgstr "پیوندهای یکتا ساختار درستی ندارند."
|
5015 |
+
|
5016 |
+
#: form_list.php:502
|
5017 |
+
#@ gravityforms
|
5018 |
+
msgid "Permanently Delete Entries"
|
5019 |
+
msgstr "حذف دائمی پیام های ورودی"
|
5020 |
+
|
5021 |
+
#: includes/webapi/webapi.php:1784
|
5022 |
+
#@ gravityforms
|
5023 |
+
msgid "Permission denied"
|
5024 |
+
msgstr "غیر قابل دسترسی"
|
5025 |
+
|
5026 |
+
#: form_detail.php:1456
|
5027 |
+
#@ gravityforms
|
5028 |
+
msgid "Pharmaceutical/Biotech"
|
5029 |
+
msgstr "دارویی / زیست فناوری"
|
5030 |
+
|
5031 |
+
#: form_detail.php:771
|
5032 |
+
#: includes/fields/class-gf-field-phone.php:13
|
5033 |
+
#: js.php:665
|
5034 |
+
#@ gravityforms
|
5035 |
+
msgid "Phone"
|
5036 |
+
msgstr "تلفن"
|
5037 |
+
|
5038 |
+
#: form_detail.php:1406
|
5039 |
+
#@ gravityforms
|
5040 |
+
msgid "Phone Format"
|
5041 |
+
msgstr "قالب شماره تلفن"
|
5042 |
+
|
5043 |
+
#: tooltips.php:82
|
5044 |
+
#@ gravityforms
|
5045 |
+
msgid "Phone Number Format"
|
5046 |
+
msgstr "قالب شماره تلفن"
|
5047 |
+
|
5048 |
+
#: includes/fields/class-gf-field-phone.php:82
|
5049 |
+
#: js.php:1225
|
5050 |
+
#@ gravityforms
|
5051 |
+
msgid "Phone format:"
|
5052 |
+
msgstr "قالب شماره تلفن :"
|
5053 |
+
|
5054 |
+
#: form_detail.php:355
|
5055 |
+
#@ gravityforms
|
5056 |
+
msgid "Pick a field.. any field. Don't be shy."
|
5057 |
+
msgstr "یه فیلد انتخاب کن ... هر فیلدی ... خجالت نکش !"
|
5058 |
+
|
5059 |
+
#: form_detail.php:1890
|
5060 |
+
#: form_detail.php:1901
|
5061 |
+
#: js.php:224
|
5062 |
+
#: tooltips.php:101
|
5063 |
+
#@ gravityforms
|
5064 |
+
msgid "Placeholder"
|
5065 |
+
msgstr "نگه دارنده متن"
|
5066 |
+
|
5067 |
+
#: form_detail.php:1039
|
5068 |
+
#@ gravityforms
|
5069 |
+
msgid "Placeholder Label"
|
5070 |
+
msgstr "برچسب نگه دارنده"
|
5071 |
+
|
5072 |
+
#: js.php:220
|
5073 |
+
#@ gravityforms
|
5074 |
+
msgid "Placeholder:"
|
5075 |
+
msgstr "نگهدارنده متن"
|
5076 |
+
|
5077 |
+
#: form_detail.php:1913
|
5078 |
+
#: tooltips.php:102
|
5079 |
+
#@ gravityforms
|
5080 |
+
msgid "Placeholders"
|
5081 |
+
msgstr "نگه دارنده های متن"
|
5082 |
+
|
5083 |
+
#: tooltips.php:102
|
5084 |
+
#@ gravityforms
|
5085 |
+
msgid "Placeholders will not be submitted along with the form. Use Placeholders to give a hint at the expected value or format."
|
5086 |
+
msgstr "نگهدارنده های متن همراه با فرم ارسال نمی شوند. از نگه دارنده ها برای راهنمایی درباره مقادیر و قالب ها استفاده کنید."
|
5087 |
+
|
5088 |
+
#: form_detail.php:168
|
5089 |
+
#: form_detail.php:2501
|
5090 |
+
#: form_settings.php:301
|
5091 |
+
#, php-format
|
5092 |
+
#@ gravityforms
|
5093 |
+
msgid "Please %scontact our support team%s."
|
5094 |
+
msgstr "لطفاً با %sتیم پشتیبانی تماس بگیرید%s."
|
5095 |
+
|
5096 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:75
|
5097 |
+
#@ gravityforms
|
5098 |
+
msgid "Please accept the terms"
|
5099 |
+
msgstr "لطفاً قوانین و شرایط را قبول کنید"
|
5100 |
+
|
5101 |
+
#: includes/addon/class-gf-addon.php:1900
|
5102 |
+
#, php-format
|
5103 |
+
#@ gravityforms
|
5104 |
+
msgid "Please add a %s field to your form."
|
5105 |
+
msgstr "لطفاً یک فیلد %s به فرم خود اضافه کنید."
|
5106 |
+
|
5107 |
+
#: js.php:432
|
5108 |
+
#@ gravityforms
|
5109 |
+
msgid "Please enter a Title for this form. When adding the form to a page or post, you will have the option to hide the title."
|
5110 |
+
msgstr "لطفاً یک عنوان برای این فرم وارد کنید. وقتی که فرم را به نوشته یا برگه اضافه کنید می توانید عنوان را مخفی کنید. "
|
5111 |
+
|
5112 |
+
#: common.php:3809
|
5113 |
+
#@ gravityforms
|
5114 |
+
msgid "Please enter a URL."
|
5115 |
+
msgstr "لطفاً یک آدرس URL وارد نمایید ."
|
5116 |
+
|
5117 |
+
#: common.php:3810
|
5118 |
+
#@ gravityforms
|
5119 |
+
msgid "Please enter a confirmation name."
|
5120 |
+
msgstr "لطفاً یک نام برای تاییدیه انتخاب نمایید."
|
5121 |
+
|
5122 |
+
#: form_list.php:246
|
5123 |
+
#@ gravityforms
|
5124 |
+
msgid "Please enter a form title."
|
5125 |
+
msgstr "عنوان فرم را وارد نمایید."
|
5126 |
+
|
5127 |
+
#: notification.php:1046
|
5128 |
+
#@ gravityforms
|
5129 |
+
msgid "Please enter a message for the notification email"
|
5130 |
+
msgstr "لطفاً برای ایمیل اعلان، پیام را وارد کنید"
|
5131 |
+
|
5132 |
+
#: notification.php:1019
|
5133 |
+
#@ gravityforms
|
5134 |
+
msgid "Please enter a subject for the notification email"
|
5135 |
+
msgstr "لطفاً برای ایمیل اعلان، موضوع را وارد کنید"
|
5136 |
+
|
5137 |
+
#: form_list.php:258
|
5138 |
+
#@ gravityforms
|
5139 |
+
msgid "Please enter a unique form title."
|
5140 |
+
msgstr "لطفاً عنوان فرم منحصر به فردی وارد نمایید."
|
5141 |
+
|
5142 |
+
#: includes/fields/class-gf-field-website.php:50
|
5143 |
+
#@ gravityforms
|
5144 |
+
msgid "Please enter a valid Website URL (e.g. http://www.gravityforms.com)."
|
5145 |
+
msgstr "لطفاً یک آدرس سایت معتبر مانند ( http://www.gravityforms.ir) وارد نمایید ."
|
5146 |
+
|
5147 |
+
#: includes/fields/class-gf-field-donation.php:45
|
5148 |
+
#: includes/fields/class-gf-field-price.php:37
|
5149 |
+
#@ gravityforms
|
5150 |
+
msgid "Please enter a valid amount."
|
5151 |
+
msgstr "لطفاً یک مبلغ معتبر وارد نمایید ."
|
5152 |
+
|
5153 |
+
#: includes/fields/class-gf-field-date.php:72
|
5154 |
+
#, php-format
|
5155 |
+
#@ gravityforms
|
5156 |
+
msgid "Please enter a valid date in the format (%s)."
|
5157 |
+
msgstr "لطفاً یک تاریخ معتبر در قالب (%s) وارد نمایید ."
|
5158 |
+
|
5159 |
+
#: includes/fields/class-gf-field-date.php:72
|
5160 |
+
#@ gravityforms
|
5161 |
+
msgid "Please enter a valid date."
|
5162 |
+
msgstr "لطفاً یک تاریخ معتبر وارد نمایید."
|
5163 |
+
|
5164 |
+
#: notification.php:818
|
5165 |
+
#@ gravityforms
|
5166 |
+
msgid "Please enter a valid email address"
|
5167 |
+
msgstr "لطفاً یک ایمیل معتبر وارد کنید."
|
5168 |
+
|
5169 |
+
#: notification.php:913
|
5170 |
+
#@ gravityforms
|
5171 |
+
msgid "Please enter a valid email address for all highlighted routing rules above."
|
5172 |
+
msgstr "لطفاً یک ایمیل معتبر برای تمامی دستورات مشخص شده بالا وارد کنید."
|
5173 |
+
|
5174 |
+
#: notification.php:996
|
5175 |
+
#@ gravityforms
|
5176 |
+
msgid "Please enter a valid email address or merge tag in the BCC field."
|
5177 |
+
msgstr "لطفاً یک آدرس ایمیل یا یک برچسب ادغام معتبر در فیلد BCC وارد کنید."
|
5178 |
+
|
5179 |
+
#: notification.php:971
|
5180 |
+
#@ gravityforms
|
5181 |
+
msgid "Please enter a valid email address or merge tag in the Reply To field."
|
5182 |
+
msgstr "لطفاً یک آدرس ایمیل یا یک برچسب ادغام معتبر در فیلد پاسخ به وارد کنید."
|
5183 |
+
|
5184 |
+
#: form_display.php:3067
|
5185 |
+
#: includes/fields/class-gf-field-email.php:50
|
5186 |
+
#@ gravityforms
|
5187 |
+
msgid "Please enter a valid email address."
|
5188 |
+
msgstr "لطفاً یک آدرس ایمیل معتبر وارد نمایید ."
|
5189 |
+
|
5190 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-license-key.php:62
|
5191 |
+
#@ gravityforms
|
5192 |
+
msgid "Please enter a valid license key."
|
5193 |
+
msgstr "لطفاً یک کد لایسنس معتبر وارد کنید."
|
5194 |
+
|
5195 |
+
#: includes/fields/class-gf-field-number.php:120
|
5196 |
+
#@ gravityforms
|
5197 |
+
msgid "Please enter a valid number"
|
5198 |
+
msgstr "لطفاً یک عدد معتبر وارد نمایید ."
|
5199 |
+
|
5200 |
+
#: includes/fields/class-gf-field-calculation.php:35
|
5201 |
+
#: includes/fields/class-gf-field-hiddenproduct.php:31
|
5202 |
+
#: includes/fields/class-gf-field-number.php:80
|
5203 |
+
#: includes/fields/class-gf-field-singleproduct.php:37
|
5204 |
+
#@ gravityforms
|
5205 |
+
msgid "Please enter a valid quantity"
|
5206 |
+
msgstr "لطفاً یک مقدار معتبر وارد نمایید"
|
5207 |
+
|
5208 |
+
#: includes/fields/class-gf-field-number.php:77
|
5209 |
+
#@ gravityforms
|
5210 |
+
msgid "Please enter a valid quantity. Quantity cannot contain decimals."
|
5211 |
+
msgstr "لطفاً یک مقدار معتبر وارد نمایید . مقادیر نمی توانند شامل اعشار باشند. "
|
5212 |
+
|
5213 |
+
#: includes/fields/class-gf-field-time.php:61
|
5214 |
+
#@ gravityforms
|
5215 |
+
msgid "Please enter a valid time."
|
5216 |
+
msgstr "لطفاً یک زمان معتبر وارد نمایید."
|
5217 |
+
|
5218 |
+
#: form_display.php:1575
|
5219 |
+
#@ gravityforms
|
5220 |
+
msgid "Please enter a valid value."
|
5221 |
+
msgstr "لطفاً یک مقدار معتبر وارد نمایید."
|
5222 |
+
|
5223 |
+
#: includes/fields/class-gf-field-number.php:114
|
5224 |
+
#, php-format
|
5225 |
+
#@ gravityforms
|
5226 |
+
msgid "Please enter a value between %s and %s."
|
5227 |
+
msgstr "لطفاً یک مقدار بین %s و %s را وارد نمایید ."
|
5228 |
+
|
5229 |
+
#: includes/fields/class-gf-field-number.php:116
|
5230 |
+
#, php-format
|
5231 |
+
#@ gravityforms
|
5232 |
+
msgid "Please enter a value greater than or equal to %s."
|
5233 |
+
msgstr "لطفاً یک مقدار بزرگتر یا مساوی %s را وارد نمایید ."
|
5234 |
+
|
5235 |
+
#: includes/fields/class-gf-field-number.php:118
|
5236 |
+
#, php-format
|
5237 |
+
#@ gravityforms
|
5238 |
+
msgid "Please enter a value less than or equal to %s."
|
5239 |
+
msgstr "لطفاً یک مقدار کوچکتر یا مساوی %s را وارد نمایید ."
|
5240 |
+
|
5241 |
+
#: js.php:33
|
5242 |
+
#@ gravityforms
|
5243 |
+
msgid "Please enter name."
|
5244 |
+
msgstr "لطفاً نام را وارد کنید"
|
5245 |
+
|
5246 |
+
#: includes/fields/class-gf-field-creditcard.php:53
|
5247 |
+
#@ gravityforms
|
5248 |
+
msgid "Please enter your card's security code."
|
5249 |
+
msgstr "لطفاً کد امنیتی کارت اعتباری را وارد نمایید."
|
5250 |
+
|
5251 |
+
#: includes/fields/class-gf-field-creditcard.php:47
|
5252 |
+
#@ gravityforms
|
5253 |
+
msgid "Please enter your credit card information."
|
5254 |
+
msgstr "لطفاً اطلاعات کارت اعتباری را وارد نمایید ."
|
5255 |
+
|
5256 |
+
#: gravityforms.php:2125
|
5257 |
+
#@ gravityforms
|
5258 |
+
msgid "Please select a form"
|
5259 |
+
msgstr "لطفاً یک فرم انتخاب نمایید"
|
5260 |
+
|
5261 |
+
#: gravityforms.php:2598
|
5262 |
+
#@ gravityforms
|
5263 |
+
msgid "Please select a form."
|
5264 |
+
msgstr "لطفاً یک فرم انتخاب کنید."
|
5265 |
+
|
5266 |
+
#: common.php:3808
|
5267 |
+
#@ gravityforms
|
5268 |
+
msgid "Please select a page."
|
5269 |
+
msgstr "لطفاً یک برگه انتخاب نمایید."
|
5270 |
+
|
5271 |
+
#: entry_list.php:1513
|
5272 |
+
#@ gravityforms
|
5273 |
+
msgid "Please select at least one entry."
|
5274 |
+
msgstr "لطفاً حداقل یک پیام ورودی انتخاب نمایید."
|
5275 |
+
|
5276 |
+
#: tooltips.php:160
|
5277 |
+
#@ gravityforms
|
5278 |
+
msgid "Please select the currency for your location. Currency is used for pricing fields and price calculations."
|
5279 |
+
msgstr "واحد پول را برای منطقه خود وارد کنید. واحد پول برای فیلد قیمت گذاری و محاسبات قیمت استفاده می شود."
|
5280 |
+
|
5281 |
+
#: export.php:422
|
5282 |
+
#@ gravityforms
|
5283 |
+
msgid "Please select the fields to be exported"
|
5284 |
+
msgstr "لطفاً فیلدی را که می خواهید خروجی بگیرید را انتخاب نمایید"
|
5285 |
+
|
5286 |
+
#: export.php:19
|
5287 |
+
#@ gravityforms
|
5288 |
+
msgid "Please select the forms to be exported"
|
5289 |
+
msgstr "لطفاً فرمی را که می خواهید خروجی بگیرید را انتخاب نمایید"
|
5290 |
+
|
5291 |
+
#: form_settings.php:1701
|
5292 |
+
#@ gravityforms
|
5293 |
+
msgid "Please use the following link to return to your form from any computer. <br /> {save_link} <br /> This link will expire after 30 days. <br />Enter your email address to send the link by email. <br /> {save_email_input}"
|
5294 |
+
msgstr "لطفاً از لینک زیر برای بازگشت به فرم استفاده کنید. <br /> {save_link} <br /> این لینک بعد از 30 روز منقضی می شود. <br /> برای ارسال لینک به ایمیلتان آدرس ایمیل را وارد کنید. <br /> {save_email_input}"
|
5295 |
+
|
5296 |
+
#: common.php:4408
|
5297 |
+
#@ gravityforms
|
5298 |
+
msgid "Please wait for the uploading to complete"
|
5299 |
+
msgstr "لطفاً تا تکمیل شدن بارگذاری فایل منتظر بمانید "
|
5300 |
+
|
5301 |
+
#: tooltips.php:130
|
5302 |
+
#@ gravityforms
|
5303 |
+
msgid "Post Author"
|
5304 |
+
msgstr "نویسنده "
|
5305 |
+
|
5306 |
+
#: js.php:709
|
5307 |
+
#@ gravityforms
|
5308 |
+
msgid "Post Body"
|
5309 |
+
msgstr "متن نوشته"
|
5310 |
+
|
5311 |
+
#: form_detail.php:970
|
5312 |
+
#: js.php:539
|
5313 |
+
#: tooltips.php:128
|
5314 |
+
#: tooltips.php:134
|
5315 |
+
#@ gravityforms
|
5316 |
+
msgid "Post Category"
|
5317 |
+
msgstr "دسته بندی نوشته"
|
5318 |
+
|
5319 |
+
#: tooltips.php:132
|
5320 |
+
#@ gravityforms
|
5321 |
+
msgid "Post Content Template"
|
5322 |
+
msgstr "قالب محتوای نوشه"
|
5323 |
+
|
5324 |
+
#: js.php:725
|
5325 |
+
#@ gravityforms
|
5326 |
+
msgid "Post Custom Field"
|
5327 |
+
msgstr "فیلد های سفارشی نوشته"
|
5328 |
+
|
5329 |
+
#: common.php:519
|
5330 |
+
#@ gravityforms
|
5331 |
+
msgid "Post Edit URL"
|
5332 |
+
msgstr "لینک ویرایش نوشته"
|
5333 |
+
|
5334 |
+
#: js.php:713
|
5335 |
+
#@ gravityforms
|
5336 |
+
msgid "Post Excerpt"
|
5337 |
+
msgstr "چکیده ی نوشته"
|
5338 |
+
|
5339 |
+
#: form_detail.php:2429
|
5340 |
+
#: tooltips.php:146
|
5341 |
+
#@ gravityforms
|
5342 |
+
msgid "Post Fields"
|
5343 |
+
msgstr "فیلدهای ارسال نوشته"
|
5344 |
+
|
5345 |
+
#: tooltips.php:146
|
5346 |
+
#@ gravityforms
|
5347 |
+
msgid "Post Fields allow you to add fields to your form that create Post Drafts in WordPress from the submitted data."
|
5348 |
+
msgstr "فیلد های ارسال نوشته به شما این امکان را می دهد که با داده های ارسال شده یک پیش نویس در وردپرس ایجاد کنید."
|
5349 |
+
|
5350 |
+
#: form_detail.php:942
|
5351 |
+
#: tooltips.php:131
|
5352 |
+
#@ gravityforms
|
5353 |
+
msgid "Post Format"
|
5354 |
+
msgstr "قالب نوشته"
|
5355 |
+
|
5356 |
+
#: common.php:518
|
5357 |
+
#: export.php:859
|
5358 |
+
#@ gravityforms
|
5359 |
+
msgid "Post Id"
|
5360 |
+
msgstr "شماره نوشته"
|
5361 |
+
|
5362 |
+
#: includes/fields/class-gf-field-post-image.php:13
|
5363 |
+
#: js.php:728
|
5364 |
+
#@ gravityforms
|
5365 |
+
msgid "Post Image"
|
5366 |
+
msgstr "عکس نوشته"
|
5367 |
+
|
5368 |
+
#: form_detail.php:899
|
5369 |
+
#: tooltips.php:129
|
5370 |
+
#@ gravityforms
|
5371 |
+
msgid "Post Status"
|
5372 |
+
msgstr "وضعیت نوشته"
|
5373 |
+
|
5374 |
+
#: js.php:718
|
5375 |
+
#@ gravityforms
|
5376 |
+
msgid "Post Tags"
|
5377 |
+
msgstr "برچسب های نوشته"
|
5378 |
+
|
5379 |
+
#: js.php:705
|
5380 |
+
#@ gravityforms
|
5381 |
+
msgid "Post Title"
|
5382 |
+
msgstr "عنوان نوشته "
|
5383 |
+
|
5384 |
+
#: tooltips.php:133
|
5385 |
+
#@ gravityforms
|
5386 |
+
msgid "Post Title Template"
|
5387 |
+
msgstr "قالب عنوان نوشته"
|
5388 |
+
|
5389 |
+
#: form_detail.php:1163
|
5390 |
+
#: includes/fields/class-gf-field-address.php:416
|
5391 |
+
#@ gravityforms
|
5392 |
+
msgid "Postal Code"
|
5393 |
+
msgstr "کد پستی"
|
5394 |
+
|
5395 |
+
#: common.php:3830
|
5396 |
+
#@ gravityforms
|
5397 |
+
msgid "Predefined Choices"
|
5398 |
+
msgstr "گزینه های از پیش تعریف شده"
|
5399 |
+
|
5400 |
+
#: form_detail.php:1451
|
5401 |
+
#: form_detail.php:1452
|
5402 |
+
#: form_detail.php:1454
|
5403 |
+
#: form_detail.php:1457
|
5404 |
+
#@ gravityforms
|
5405 |
+
msgid "Prefer Not to Answer"
|
5406 |
+
msgstr "ترجیح می دهم جواب ندهم"
|
5407 |
+
|
5408 |
+
#: includes/fields/class-gf-field-name.php:117
|
5409 |
+
#: js.php:853
|
5410 |
+
#@ gravityforms
|
5411 |
+
msgid "Prefix"
|
5412 |
+
msgstr "پیشوند"
|
5413 |
+
|
5414 |
+
#: form_detail.php:2093
|
5415 |
+
#@ gravityforms
|
5416 |
+
msgid "Prefix Choices"
|
5417 |
+
msgstr "انتخاب های پیشوند"
|
5418 |
+
|
5419 |
+
#: form_detail.php:2497
|
5420 |
+
#: gravityforms.php:4236
|
5421 |
+
#: gravityforms.php:4534
|
5422 |
+
#@ gravityforms
|
5423 |
+
msgid "Preview"
|
5424 |
+
msgstr "نمایش"
|
5425 |
+
|
5426 |
+
#: form_detail.php:481
|
5427 |
+
#@ gravityforms
|
5428 |
+
msgid "Preview this Form"
|
5429 |
+
msgstr "نمایش این فرم"
|
5430 |
+
|
5431 |
+
#: form_detail.php:481
|
5432 |
+
#: form_detail.php:2497
|
5433 |
+
#: gravityforms.php:4238
|
5434 |
+
#@ gravityforms
|
5435 |
+
msgid "Preview this form"
|
5436 |
+
msgstr "نمایش این فرم"
|
5437 |
+
|
5438 |
+
#: form_detail.php:1268
|
5439 |
+
#@ gravityforms
|
5440 |
+
msgid "Preview this form to see your custom icon."
|
5441 |
+
msgstr "پیشنمایش این فرم برای مشاهده آیکون دلخواه شما."
|
5442 |
+
|
5443 |
+
#: form_detail.php:375
|
5444 |
+
#@ gravityforms
|
5445 |
+
msgid "Preview your changes up here."
|
5446 |
+
msgstr "پیش نمایش تغییرات اعمالی"
|
5447 |
+
|
5448 |
+
#: common.php:3771
|
5449 |
+
#: form_display.php:250
|
5450 |
+
#: form_display.php:951
|
5451 |
+
#: form_display.php:2649
|
5452 |
+
#: js.php:559
|
5453 |
+
#@ gravityforms
|
5454 |
+
msgid "Previous"
|
5455 |
+
msgstr "قبلی"
|
5456 |
+
|
5457 |
+
#: form_detail.php:436
|
5458 |
+
#: form_detail.php:706
|
5459 |
+
#@ gravityforms
|
5460 |
+
msgid "Previous Button"
|
5461 |
+
msgstr "دکمه قبلی"
|
5462 |
+
|
5463 |
+
#: tooltips.php:125
|
5464 |
+
#@ gravityforms
|
5465 |
+
msgid "Previous Button Image"
|
5466 |
+
msgstr "تصویر دکمه قبلی"
|
5467 |
+
|
5468 |
+
#: tooltips.php:124
|
5469 |
+
#@ gravityforms
|
5470 |
+
msgid "Previous Button Text"
|
5471 |
+
msgstr "متن دکمه قبلی"
|
5472 |
+
|
5473 |
+
#: form_display.php:950
|
5474 |
+
#: form_display.php:2648
|
5475 |
+
#@ gravityforms
|
5476 |
+
msgid "Previous Page"
|
5477 |
+
msgstr "صفحه قبل"
|
5478 |
+
|
5479 |
+
#: common.php:1362
|
5480 |
+
#: entry_detail.php:982
|
5481 |
+
#: form_detail.php:593
|
5482 |
+
#: form_detail.php:1435
|
5483 |
+
#: includes/fields/class-gf-field-calculation.php:87
|
5484 |
+
#: includes/fields/class-gf-field-singleproduct.php:92
|
5485 |
+
#: js.php:754
|
5486 |
+
#: js.php:813
|
5487 |
+
#@ gravityforms
|
5488 |
+
msgid "Price"
|
5489 |
+
msgstr "قیمت"
|
5490 |
+
|
5491 |
+
#: includes/fields/class-gf-field-calculation.php:99
|
5492 |
+
#: includes/fields/class-gf-field-singleproduct.php:104
|
5493 |
+
#@ gravityforms
|
5494 |
+
msgid "Price: "
|
5495 |
+
msgstr "قیمت : "
|
5496 |
+
|
5497 |
+
#: form_detail.php:2433
|
5498 |
+
#: tooltips.php:147
|
5499 |
+
#@ gravityforms
|
5500 |
+
msgid "Pricing Fields"
|
5501 |
+
msgstr "فیلدهای قیمت گذاری"
|
5502 |
+
|
5503 |
+
#: tooltips.php:147
|
5504 |
+
#@ gravityforms
|
5505 |
+
msgid "Pricing fields allow you to add fields to your form that calculate pricing for selling goods and services."
|
5506 |
+
msgstr "فیلد های قیمت گذاری به شما این امکان را می دهد که قیمت کالاها و خدمات خود را محاسبه کنید."
|
5507 |
+
|
5508 |
+
#: common.php:544
|
5509 |
+
#@ gravityforms
|
5510 |
+
msgid "Pricing form fields"
|
5511 |
+
msgstr "فیلدهای قیمت گذاری"
|
5512 |
+
|
5513 |
+
#: entry_detail.php:614
|
5514 |
+
#: entry_list.php:1180
|
5515 |
+
#: entry_list.php:1961
|
5516 |
+
#@ gravityforms
|
5517 |
+
msgid "Print"
|
5518 |
+
msgstr "چاپ"
|
5519 |
+
|
5520 |
+
#: entry_list.php:1527
|
5521 |
+
#: entry_list.php:1862
|
5522 |
+
#@ gravityforms
|
5523 |
+
msgid "Print Entries"
|
5524 |
+
msgstr "چاپ پیام ورودی ها"
|
5525 |
+
|
5526 |
+
#: print-entry.php:162
|
5527 |
+
#@ gravityforms
|
5528 |
+
msgid "Print Preview"
|
5529 |
+
msgstr "پیش نمایش چاپ"
|
5530 |
+
|
5531 |
+
#: entry_list.php:1949
|
5532 |
+
#@ gravityforms
|
5533 |
+
msgid "Print all of the selected entries at once."
|
5534 |
+
msgstr "چاپ یکباره ی همه پیام های ورودی انتخاب شده."
|
5535 |
+
|
5536 |
+
#: form_detail.php:1466
|
5537 |
+
#@ gravityforms
|
5538 |
+
msgid "Probably"
|
5539 |
+
msgstr "احتمالا"
|
5540 |
+
|
5541 |
+
#: form_detail.php:1466
|
5542 |
+
#@ gravityforms
|
5543 |
+
msgid "Probably Not"
|
5544 |
+
msgstr "احتمالا نه"
|
5545 |
+
|
5546 |
+
#: includes/addon/class-gf-feed-addon.php:1362
|
5547 |
+
#, php-format
|
5548 |
+
#@ gravityforms
|
5549 |
+
msgid "Process %s feed only when payment is received."
|
5550 |
+
msgstr "فرآیند خوراک %s فقط وقتی که پرداخت دریافت شود انجام می شود."
|
5551 |
+
|
5552 |
+
#: includes/addon/class-gf-feed-addon.php:1237
|
5553 |
+
#@ gravityforms
|
5554 |
+
msgid "Process this feed if"
|
5555 |
+
msgstr "اعمال این خوراک اگر"
|
5556 |
+
|
5557 |
+
#: common.php:1341
|
5558 |
+
#: entry_detail.php:979
|
5559 |
+
#: includes/fields/class-gf-field-product.php:13
|
5560 |
+
#@ gravityforms
|
5561 |
+
msgid "Product"
|
5562 |
+
msgstr "محصول"
|
5563 |
+
|
5564 |
+
#: tooltips.php:142
|
5565 |
+
#@ gravityforms
|
5566 |
+
msgid "Product Field"
|
5567 |
+
msgstr "فیلد محصولات"
|
5568 |
+
|
5569 |
+
#: form_detail.php:550
|
5570 |
+
#@ gravityforms
|
5571 |
+
msgid "Product Field Mapping"
|
5572 |
+
msgstr "قرار دادن فیلد محصول"
|
5573 |
+
|
5574 |
+
#: js.php:744
|
5575 |
+
#@ gravityforms
|
5576 |
+
msgid "Product Name"
|
5577 |
+
msgstr "نام محصول"
|
5578 |
+
|
5579 |
+
#: common.php:2696
|
5580 |
+
#@ gravityforms
|
5581 |
+
msgid "Product fields are not editable"
|
5582 |
+
msgstr "فیلدهای محصول از اینجا غیرقابل ویرایش هستند ."
|
5583 |
+
|
5584 |
+
#: includes/addon/class-gf-payment-addon.php:1477
|
5585 |
+
#: includes/addon/class-gf-payment-addon.php:1545
|
5586 |
+
#@ gravityforms
|
5587 |
+
msgid "Products and Services"
|
5588 |
+
msgstr "پرداخت معمولی"
|
5589 |
+
|
5590 |
+
#: js.php:956
|
5591 |
+
#@ gravityforms
|
5592 |
+
msgid "Prof."
|
5593 |
+
msgstr "پرفسور"
|
5594 |
+
|
5595 |
+
#: form_detail.php:1456
|
5596 |
+
#@ gravityforms
|
5597 |
+
msgid "Professional Services"
|
5598 |
+
msgstr "خدمات حرفه ای"
|
5599 |
+
|
5600 |
+
#: form_detail.php:240
|
5601 |
+
#@ gravityforms
|
5602 |
+
msgid "Progress Bar"
|
5603 |
+
msgstr "نوار پیشرفت"
|
5604 |
+
|
5605 |
+
#: tooltips.php:166
|
5606 |
+
#@ gravityforms
|
5607 |
+
msgid "Progress Bar Completion Text"
|
5608 |
+
msgstr "متن تکمیل نوار پیشرفت"
|
5609 |
+
|
5610 |
+
#: tooltips.php:165
|
5611 |
+
#@ gravityforms
|
5612 |
+
msgid "Progress Bar Confirmation Display"
|
5613 |
+
msgstr "نمایش تاییدیه نوار پیشرفت"
|
5614 |
+
|
5615 |
+
#: form_detail.php:259
|
5616 |
+
#: tooltips.php:120
|
5617 |
+
#@ gravityforms
|
5618 |
+
msgid "Progress Bar Style"
|
5619 |
+
msgstr "استایل نوار پیشرفت"
|
5620 |
+
|
5621 |
+
#: form_detail.php:233
|
5622 |
+
#: tooltips.php:119
|
5623 |
+
#@ gravityforms
|
5624 |
+
msgid "Progress Indicator"
|
5625 |
+
msgstr "نشانگر پیشرفت"
|
5626 |
+
|
5627 |
+
#: includes/api.php:238
|
5628 |
+
#@ gravityforms
|
5629 |
+
msgid "Property key incorrect"
|
5630 |
+
msgstr "رمز نادرست است"
|
5631 |
+
|
5632 |
+
#: includes/webapi/webapi.php:1002
|
5633 |
+
#@ gravityforms
|
5634 |
+
msgid "Property values should be sent as an array"
|
5635 |
+
msgstr "مقادیر باید به صورت آرایه فرستاده شوند"
|
5636 |
+
|
5637 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:75
|
5638 |
+
#: settings.php:354
|
5639 |
+
#: tooltips.php:161
|
5640 |
+
#@ gravityforms
|
5641 |
+
msgid "Protect your form entries from spam using Akismet."
|
5642 |
+
msgstr "با استفاده از Akismet ورودی های خود را از هرزنامه محافظت کنید."
|
5643 |
+
|
5644 |
+
#: includes/fields/class-gf-field-address.php:417
|
5645 |
+
#@ gravityforms
|
5646 |
+
msgid "Province"
|
5647 |
+
msgstr "شهر"
|
5648 |
+
|
5649 |
+
#: form_detail.php:1456
|
5650 |
+
#@ gravityforms
|
5651 |
+
msgid "QA/Quality Control"
|
5652 |
+
msgstr "QA / کنترل کیفیت"
|
5653 |
+
|
5654 |
+
#: common.php:1348
|
5655 |
+
#: entry_detail.php:980
|
5656 |
+
#@ gravityforms
|
5657 |
+
msgid "Qty"
|
5658 |
+
msgstr "تعداد"
|
5659 |
+
|
5660 |
+
#: includes/fields/class-gf-field-calculation.php:99
|
5661 |
+
#: includes/fields/class-gf-field-singleproduct.php:104
|
5662 |
+
#@ gravityforms
|
5663 |
+
msgid "Qty: "
|
5664 |
+
msgstr "تعداد/مقدار: "
|
5665 |
+
|
5666 |
+
#: includes/fields/class-gf-field-quantity.php:29
|
5667 |
+
#: js.php:754
|
5668 |
+
#: js.php:824
|
5669 |
+
#@ gravityforms
|
5670 |
+
msgid "Quantity"
|
5671 |
+
msgstr "تعداد/مقدار"
|
5672 |
+
|
5673 |
+
#: includes/fields/class-gf-field-calculation.php:67
|
5674 |
+
#: includes/fields/class-gf-field-singleproduct.php:72
|
5675 |
+
#@ gravityforms
|
5676 |
+
msgid "Quantity:"
|
5677 |
+
msgstr "تعداد/مقدار :"
|
5678 |
+
|
5679 |
+
#: form_detail.php:568
|
5680 |
+
#: form_detail.php:585
|
5681 |
+
#: form_detail.php:620
|
5682 |
+
#: form_detail.php:634
|
5683 |
+
#: form_detail.php:765
|
5684 |
+
#: form_detail.php:792
|
5685 |
+
#: form_detail.php:988
|
5686 |
+
#: includes/fields/class-gf-field-radio.php:13
|
5687 |
+
#@ gravityforms
|
5688 |
+
msgid "Radio Buttons"
|
5689 |
+
msgstr "دکمه های رادیویی"
|
5690 |
+
|
5691 |
+
#: form_detail.php:1767
|
5692 |
+
#@ gravityforms
|
5693 |
+
msgid "Range"
|
5694 |
+
msgstr "بازه"
|
5695 |
+
|
5696 |
+
#: settings.php:415
|
5697 |
+
#@ gravityforms
|
5698 |
+
msgid "Read more about reCAPTCHA"
|
5699 |
+
msgstr "اطلاعات بیشتر درباره reCAPTCHA"
|
5700 |
+
|
5701 |
+
#: form_detail.php:1456
|
5702 |
+
#@ gravityforms
|
5703 |
+
msgid "Real Estate"
|
5704 |
+
msgstr "مشاور املاک"
|
5705 |
+
|
5706 |
+
#: form_detail.php:808
|
5707 |
+
#@ gravityforms
|
5708 |
+
msgid "Really Simple CAPTCHA"
|
5709 |
+
msgstr "CAPTCHA ساده"
|
5710 |
+
|
5711 |
+
#: entry_detail.php:1153
|
5712 |
+
#: includes/addon/class-gf-payment-addon.php:1563
|
5713 |
+
#: includes/addon/class-gf-payment-addon.php:1567
|
5714 |
+
#@ gravityforms
|
5715 |
+
msgid "Recurring Amount"
|
5716 |
+
msgstr "مبلغ تمدید"
|
5717 |
+
|
5718 |
+
#: includes/addon/class-gf-payment-addon.php:2077
|
5719 |
+
#@ gravityforms
|
5720 |
+
msgid "Recurring Payments"
|
5721 |
+
msgstr "پرداخت تمدید"
|
5722 |
+
|
5723 |
+
#: includes/addon/class-gf-payment-addon.php:1577
|
5724 |
+
#: includes/addon/class-gf-payment-addon.php:1585
|
5725 |
+
#@ gravityforms
|
5726 |
+
msgid "Recurring Times"
|
5727 |
+
msgstr "زمان تمدید"
|
5728 |
+
|
5729 |
+
#: form_detail.php:267
|
5730 |
+
#@ gravityforms
|
5731 |
+
msgid "Red"
|
5732 |
+
msgstr "قرمز"
|
5733 |
+
|
5734 |
+
#: form_settings.php:1267
|
5735 |
+
#: form_settings.php:1952
|
5736 |
+
#@ gravityforms
|
5737 |
+
msgid "Redirect"
|
5738 |
+
msgstr "انتقال"
|
5739 |
+
|
5740 |
+
#: tooltips.php:50
|
5741 |
+
#@ gravityforms
|
5742 |
+
msgid "Redirect Form to Page"
|
5743 |
+
msgstr "تغییر مسیر فرم به برگه"
|
5744 |
+
|
5745 |
+
#: tooltips.php:51
|
5746 |
+
#@ gravityforms
|
5747 |
+
msgid "Redirect Form to URL"
|
5748 |
+
msgstr "تغییر مسیر فرم به آدرس "
|
5749 |
+
|
5750 |
+
#: form_settings.php:1309
|
5751 |
+
#: form_settings.php:1343
|
5752 |
+
#@ gravityforms
|
5753 |
+
msgid "Redirect Query String"
|
5754 |
+
msgstr "تغییر مسیر عبارات کوئری"
|
5755 |
+
|
5756 |
+
#: form_settings.php:1331
|
5757 |
+
#@ gravityforms
|
5758 |
+
msgid "Redirect URL"
|
5759 |
+
msgstr "تغییر مسیر URL"
|
5760 |
+
|
5761 |
+
#: includes/addon/class-gf-payment-addon.php:2078
|
5762 |
+
#@ gravityforms
|
5763 |
+
msgid "Refunds"
|
5764 |
+
msgstr "استرداد وجه"
|
5765 |
+
|
5766 |
+
#: includes/locking/class-gf-locking.php:508
|
5767 |
+
#@ gravityforms
|
5768 |
+
msgid "Reject Request"
|
5769 |
+
msgstr "رد درخواست"
|
5770 |
+
|
5771 |
+
#: entry_list.php:1178
|
5772 |
+
#@ gravityforms
|
5773 |
+
msgid "Remove Star"
|
5774 |
+
msgstr "حذف ستاره"
|
5775 |
+
|
5776 |
+
#: common.php:3826
|
5777 |
+
#@ gravityforms
|
5778 |
+
msgid "Remove a condition"
|
5779 |
+
msgstr "حذف یک شرط"
|
5780 |
+
|
5781 |
+
#: includes/fields/class-gf-field-list.php:168
|
5782 |
+
#@ gravityforms
|
5783 |
+
msgid "Remove this row"
|
5784 |
+
msgstr "حذف این ردیف"
|
5785 |
+
|
5786 |
+
#: notification.php:962
|
5787 |
+
#: tooltips.php:31
|
5788 |
+
#@ gravityforms
|
5789 |
+
msgid "Reply To"
|
5790 |
+
msgstr "پاسخ به"
|
5791 |
+
|
5792 |
+
#: includes/locking/class-gf-locking.php:491
|
5793 |
+
#@ gravityforms
|
5794 |
+
msgid "Request Control"
|
5795 |
+
msgstr "درخواست کنترل"
|
5796 |
+
|
5797 |
+
#: includes/locking/class-gf-locking.php:208
|
5798 |
+
#@ gravityforms
|
5799 |
+
msgid "Request again"
|
5800 |
+
msgstr "درخواست دوباره"
|
5801 |
+
|
5802 |
+
#: form_settings.php:888
|
5803 |
+
#: tooltips.php:117
|
5804 |
+
#@ gravityforms
|
5805 |
+
msgid "Require Login Message"
|
5806 |
+
msgstr "پیام ضروری بودن وارد شدن کاربر"
|
5807 |
+
|
5808 |
+
#: form_settings.php:875
|
5809 |
+
#: form_settings.php:879
|
5810 |
+
#: tooltips.php:116
|
5811 |
+
#@ gravityforms
|
5812 |
+
msgid "Require user to be logged in"
|
5813 |
+
msgstr "نیاز به وارد شدن کاربر"
|
5814 |
+
|
5815 |
+
#: form_detail.php:1851
|
5816 |
+
#@ gravityforms
|
5817 |
+
msgid "Required"
|
5818 |
+
msgstr "ضروری"
|
5819 |
+
|
5820 |
+
#: tooltips.php:84
|
5821 |
+
#@ gravityforms
|
5822 |
+
msgid "Required Field"
|
5823 |
+
msgstr "فیلد ها ضروری"
|
5824 |
+
|
5825 |
+
#: common.php:536
|
5826 |
+
#@ gravityforms
|
5827 |
+
msgid "Required form fields"
|
5828 |
+
msgstr "فیلدهای اجباری"
|
5829 |
+
|
5830 |
+
#: includes/webapi/webapi.php:178
|
5831 |
+
#@ gravityforms
|
5832 |
+
msgid "Requirements check"
|
5833 |
+
msgstr "بررسی موارد مورد نیاز"
|
5834 |
+
|
5835 |
+
#: entry_detail.php:1364
|
5836 |
+
#: entry_list.php:1179
|
5837 |
+
#: entry_list.php:1521
|
5838 |
+
#: entry_list.php:1856
|
5839 |
+
#: entry_list.php:1923
|
5840 |
+
#@ gravityforms
|
5841 |
+
msgid "Resend Notifications"
|
5842 |
+
msgstr "ارسال اعلان"
|
5843 |
+
|
5844 |
+
#: entry_detail.php:1366
|
5845 |
+
#: entry_list.php:1925
|
5846 |
+
#@ gravityforms
|
5847 |
+
msgid "Resending..."
|
5848 |
+
msgstr "درحال ارسال ...."
|
5849 |
+
|
5850 |
+
#: form_list.php:501
|
5851 |
+
#@ gravityforms
|
5852 |
+
msgid "Reset Views"
|
5853 |
+
msgstr "بازنشانی بازدید ها"
|
5854 |
+
|
5855 |
+
#: form_detail.php:1456
|
5856 |
+
#@ gravityforms
|
5857 |
+
msgid "Restaurant/Food Service"
|
5858 |
+
msgstr "رستوران / خدمات غذایی"
|
5859 |
+
|
5860 |
+
#: entry_detail.php:1269
|
5861 |
+
#: entry_list.php:1031
|
5862 |
+
#: entry_list.php:1166
|
5863 |
+
#: form_list.php:494
|
5864 |
+
#: form_list.php:636
|
5865 |
+
#: form_list.php:637
|
5866 |
+
#@ gravityforms
|
5867 |
+
msgid "Restore"
|
5868 |
+
msgstr "بازگردانی"
|
5869 |
+
|
5870 |
+
#: entry_list.php:1031
|
5871 |
+
#@ gravityforms
|
5872 |
+
msgid "Restore this entry"
|
5873 |
+
msgstr "بازگردانی این پیام ورودی"
|
5874 |
+
|
5875 |
+
#: form_settings.php:909
|
5876 |
+
#@ gravityforms
|
5877 |
+
msgid "Restrictions"
|
5878 |
+
msgstr "محدودیت ها"
|
5879 |
+
|
5880 |
+
#: includes/addon/class-gf-results.php:150
|
5881 |
+
#: includes/addon/class-gf-results.php:156
|
5882 |
+
#@ gravityforms
|
5883 |
+
msgid "Results"
|
5884 |
+
msgstr "نتایج"
|
5885 |
+
|
5886 |
+
#: includes/addon/class-gf-results.php:21
|
5887 |
+
#@ gravityforms
|
5888 |
+
msgid "Results Filters"
|
5889 |
+
msgstr "فیلتر نتایج"
|
5890 |
+
|
5891 |
+
#: form_detail.php:1456
|
5892 |
+
#@ gravityforms
|
5893 |
+
msgid "Retail"
|
5894 |
+
msgstr "خرده فروشی"
|
5895 |
+
|
5896 |
+
#: form_detail.php:1454
|
5897 |
+
#@ gravityforms
|
5898 |
+
msgid "Retired"
|
5899 |
+
msgstr "باز نشسته"
|
5900 |
+
|
5901 |
+
#: form_detail.php:495
|
5902 |
+
#@ gravityforms
|
5903 |
+
msgid "Return to Form List"
|
5904 |
+
msgstr "بازگشت به لیست فرم ها"
|
5905 |
+
|
5906 |
+
#: js.php:956
|
5907 |
+
#@ gravityforms
|
5908 |
+
msgid "Rev."
|
5909 |
+
msgstr "روحانی"
|
5910 |
+
|
5911 |
+
#: includes/addon/class-gf-payment-addon.php:2070
|
5912 |
+
#: includes/addon/class-gf-payment-addon.php:2079
|
5913 |
+
#@ gravityforms
|
5914 |
+
msgid "Revenue"
|
5915 |
+
msgstr "درآمد"
|
5916 |
+
|
5917 |
+
#: form_detail.php:1931
|
5918 |
+
#: form_settings.php:379
|
5919 |
+
#@ gravityforms
|
5920 |
+
msgid "Right aligned"
|
5921 |
+
msgstr "تراز راست"
|
5922 |
+
|
5923 |
+
#: form_detail.php:1821
|
5924 |
+
#: tooltips.php:89
|
5925 |
+
#@ gravityforms
|
5926 |
+
msgid "Rounding"
|
5927 |
+
msgstr "گرد کردن"
|
5928 |
+
|
5929 |
+
#: form_detail.php:1845
|
5930 |
+
#@ gravityforms
|
5931 |
+
msgid "Rules"
|
5932 |
+
msgstr "قوانین"
|
5933 |
+
|
5934 |
+
#: form_detail.php:217
|
5935 |
+
#@ gravityforms
|
5936 |
+
msgid "START PAGING"
|
5937 |
+
msgstr "شروع صفحه "
|
5938 |
+
|
5939 |
+
#: form_detail.php:1456
|
5940 |
+
#@ gravityforms
|
5941 |
+
msgid "Sales"
|
5942 |
+
msgstr "فروش"
|
5943 |
+
|
5944 |
+
#: js.php:300
|
5945 |
+
#@ gravityforms
|
5946 |
+
msgid "Same as previous"
|
5947 |
+
msgstr "همان قبلی"
|
5948 |
+
|
5949 |
+
#: includes/addon/class-gf-payment-addon.php:1827
|
5950 |
+
#@ gravityforms
|
5951 |
+
msgid "Sample Option"
|
5952 |
+
msgstr "گزینه نمونه"
|
5953 |
+
|
5954 |
+
#: form_settings.php:1320
|
5955 |
+
#: form_settings.php:1356
|
5956 |
+
#@ gravityforms
|
5957 |
+
msgid "Sample: phone={Phone:1}&email={Email:2}"
|
5958 |
+
msgstr "مثال : تلفن={Phone:1} و ایمیل={Email:2}"
|
5959 |
+
|
5960 |
+
#: form_detail.php:1462
|
5961 |
+
#@ gravityforms
|
5962 |
+
msgid "Satisfaction"
|
5963 |
+
msgstr "رضایت"
|
5964 |
+
|
5965 |
+
#: form_detail.php:1462
|
5966 |
+
#@ gravityforms
|
5967 |
+
msgid "Satisfied"
|
5968 |
+
msgstr "راضی"
|
5969 |
+
|
5970 |
+
#: form_detail.php:1458
|
5971 |
+
#@ gravityforms
|
5972 |
+
msgid "Saturday"
|
5973 |
+
msgstr "شنبه"
|
5974 |
+
|
5975 |
+
#: common.php:3769
|
5976 |
+
#: common.php:3799
|
5977 |
+
#: form_detail.php:1507
|
5978 |
+
#: select_columns.php:244
|
5979 |
+
#@ gravityforms
|
5980 |
+
msgid "Save"
|
5981 |
+
msgstr "ذخیره"
|
5982 |
+
|
5983 |
+
#: notification.php:257
|
5984 |
+
#@ gravityforms
|
5985 |
+
msgid "Save & Continue Link"
|
5986 |
+
msgstr "لینک ذخیره و ادامه"
|
5987 |
+
|
5988 |
+
#: notification.php:258
|
5989 |
+
#@ gravityforms
|
5990 |
+
msgid "Save & Continue Token"
|
5991 |
+
msgstr "نشانی ادامه و ذخیره"
|
5992 |
+
|
5993 |
+
#: form_settings.php:1159
|
5994 |
+
#@ gravityforms
|
5995 |
+
msgid "Save & Continue Email Input"
|
5996 |
+
msgstr "ذخیره & ورود ایمیل ادامه"
|
5997 |
+
|
5998 |
+
#: form_settings.php:1154
|
5999 |
+
#@ gravityforms
|
6000 |
+
msgid "Save & Continue Link"
|
6001 |
+
msgstr "ذخیره &smp; لینک ادمه"
|
6002 |
+
|
6003 |
+
#: form_settings.php:1155
|
6004 |
+
#@ gravityforms
|
6005 |
+
msgid "Save & Continue Token"
|
6006 |
+
msgstr "ذخیره &smp; نشانی ادمه"
|
6007 |
+
|
6008 |
+
#: form_settings.php:1198
|
6009 |
+
#@ gravityforms
|
6010 |
+
msgid "Save Confirmation"
|
6011 |
+
msgstr "ذخیره تاییدیه"
|
6012 |
+
|
6013 |
+
#: form_detail.php:2480
|
6014 |
+
#@ gravityforms
|
6015 |
+
msgid "Save Form"
|
6016 |
+
msgstr "ذخیره فرم"
|
6017 |
+
|
6018 |
+
#: notification.php:519
|
6019 |
+
#@ gravityforms
|
6020 |
+
msgid "Save Notification"
|
6021 |
+
msgstr "ذخیره اعلان"
|
6022 |
+
|
6023 |
+
#: settings.php:516
|
6024 |
+
#@ gravityforms
|
6025 |
+
msgid "Save Settings"
|
6026 |
+
msgstr "ذخیره تنظیمات"
|
6027 |
+
|
6028 |
+
#: form_detail.php:393
|
6029 |
+
#@ gravityforms
|
6030 |
+
msgid "Save Your Form"
|
6031 |
+
msgstr "فرم خود را ذخیره کنید."
|
6032 |
+
|
6033 |
+
#: form_detail.php:398
|
6034 |
+
#@ gravityforms
|
6035 |
+
msgid "Save Your New Form"
|
6036 |
+
msgstr "فرم رو ذخیره کن"
|
6037 |
+
|
6038 |
+
#: form_settings.php:580
|
6039 |
+
#: form_settings.php:908
|
6040 |
+
#@ gravityforms
|
6041 |
+
msgid "Save and Continue"
|
6042 |
+
msgstr "ذخیره و ادامه"
|
6043 |
+
|
6044 |
+
#: form_settings.php:1698
|
6045 |
+
#@ gravityforms
|
6046 |
+
msgid "Save and Continue Confirmation"
|
6047 |
+
msgstr "تاییدیه ذخیره و ادامه"
|
6048 |
+
|
6049 |
+
#: form_settings.php:1674
|
6050 |
+
#@ gravityforms
|
6051 |
+
msgid "Save and Continue Email"
|
6052 |
+
msgstr "ایمیل ذخیره و ادامه"
|
6053 |
+
|
6054 |
+
#: form_settings.php:1710
|
6055 |
+
#@ gravityforms
|
6056 |
+
msgid "Save and Continue Email Sent Confirmation"
|
6057 |
+
msgstr "ایمیل ذخیره و ادامه تاییدیه را فرستاد."
|
6058 |
+
|
6059 |
+
#: form_settings.php:575
|
6060 |
+
#@ gravityforms
|
6061 |
+
msgid "Save and Continue Later"
|
6062 |
+
msgstr "ذخیره کنید و بعداً ادامه دهید."
|
6063 |
+
|
6064 |
+
#: notification.php:1155
|
6065 |
+
#@ gravityforms
|
6066 |
+
msgid "Save and continue email is requested"
|
6067 |
+
msgstr "ایمیل ذخیره و ادامه ضروری است."
|
6068 |
+
|
6069 |
+
#: form_detail.php:1505
|
6070 |
+
#@ gravityforms
|
6071 |
+
msgid "Save as"
|
6072 |
+
msgstr "ذخیره به عنوان"
|
6073 |
+
|
6074 |
+
#: form_detail.php:1502
|
6075 |
+
#@ gravityforms
|
6076 |
+
msgid "Save as new custom choice"
|
6077 |
+
msgstr "ذخیره کردن به عنوان گزینه سفارشی جدید"
|
6078 |
+
|
6079 |
+
#: form_list.php:359
|
6080 |
+
#@ gravityforms
|
6081 |
+
msgid "Saved! Redirecting..."
|
6082 |
+
msgstr "ذخیره شد . در حال انتقال ..."
|
6083 |
+
|
6084 |
+
#: common.php:3800
|
6085 |
+
#@ gravityforms
|
6086 |
+
msgid "Saving..."
|
6087 |
+
msgstr "در حال ذخیره ..."
|
6088 |
+
|
6089 |
+
#: tooltips.php:35
|
6090 |
+
#@ gravityforms
|
6091 |
+
msgid "Schedule Form"
|
6092 |
+
msgstr "مدیریت فرم"
|
6093 |
+
|
6094 |
+
#: form_settings.php:786
|
6095 |
+
#@ gravityforms
|
6096 |
+
msgid "Schedule Form End Date/Time"
|
6097 |
+
msgstr "تاریخ/زمان پایان فرم"
|
6098 |
+
|
6099 |
+
#: form_settings.php:761
|
6100 |
+
#@ gravityforms
|
6101 |
+
msgid "Schedule Start Date/Time"
|
6102 |
+
msgstr "تاریخ/زمان شروع فرم"
|
6103 |
+
|
6104 |
+
#: tooltips.php:35
|
6105 |
+
#@ gravityforms
|
6106 |
+
msgid "Schedule a time period the form is active."
|
6107 |
+
msgstr "مدیریت زمان فعال بود فرم"
|
6108 |
+
|
6109 |
+
#: form_settings.php:748
|
6110 |
+
#: form_settings.php:752
|
6111 |
+
#@ gravityforms
|
6112 |
+
msgid "Schedule form"
|
6113 |
+
msgstr "زمان بندی فرم"
|
6114 |
+
|
6115 |
+
#: form_detail.php:1456
|
6116 |
+
#@ gravityforms
|
6117 |
+
msgid "Science/Research"
|
6118 |
+
msgstr "علمی / پژوهش"
|
6119 |
+
|
6120 |
+
#: includes/addon/class-gf-results.php:344
|
6121 |
+
#@ gravityforms
|
6122 |
+
msgid "Scores are weighted calculations. Items ranked higher are given a greater score than items that are ranked lower. The total score for each item is the sum of the weighted scores."
|
6123 |
+
msgstr "امتیازات سنجیده شده هستند. آنهایی که در رتبه بندی بالاتر هستند امتیاز بیشتری نسبت به آنهایی که در رتبه پایین تر هستند دریافت می کنند. امتیاز کل هر یک با جمع امتیازات محاسبه می شود"
|
6124 |
+
|
6125 |
+
#: entry_list.php:229
|
6126 |
+
#@ gravityforms
|
6127 |
+
msgid "Search"
|
6128 |
+
msgstr "جستجو"
|
6129 |
+
|
6130 |
+
#: form_detail.php:1455
|
6131 |
+
#@ gravityforms
|
6132 |
+
msgid "Seasonal"
|
6133 |
+
msgstr "فصلی"
|
6134 |
+
|
6135 |
+
#: js.php:592
|
6136 |
+
#: js.php:606
|
6137 |
+
#: js.php:607
|
6138 |
+
#: js.php:618
|
6139 |
+
#: js.php:619
|
6140 |
+
#@ gravityforms
|
6141 |
+
msgid "Second Choice"
|
6142 |
+
msgstr "انتخاب دوم"
|
6143 |
+
|
6144 |
+
#: js.php:789
|
6145 |
+
#@ gravityforms
|
6146 |
+
msgid "Second Option"
|
6147 |
+
msgstr "گزینه دوم"
|
6148 |
+
|
6149 |
+
#: includes/fields/class-gf-field-section.php:12
|
6150 |
+
#@ gravityforms
|
6151 |
+
msgid "Section"
|
6152 |
+
msgstr "جداکننده"
|
6153 |
+
|
6154 |
+
#: js.php:547
|
6155 |
+
#@ gravityforms
|
6156 |
+
msgid "Section Break"
|
6157 |
+
msgstr "جدا کننده بخش"
|
6158 |
+
|
6159 |
+
#: includes/fields/class-gf-field-creditcard.php:236
|
6160 |
+
#: js.php:640
|
6161 |
+
#@ gravityforms
|
6162 |
+
msgid "Security Code"
|
6163 |
+
msgstr "کد امنیتی"
|
6164 |
+
|
6165 |
+
#: form_detail.php:349
|
6166 |
+
#@ gravityforms
|
6167 |
+
msgid "Select A Field Type"
|
6168 |
+
msgstr "یک نوع فیلد انتخاب کنید."
|
6169 |
+
|
6170 |
+
#: export.php:483
|
6171 |
+
#@ gravityforms
|
6172 |
+
msgid "Select A Form"
|
6173 |
+
msgstr "یک فرم انتخاب کنید"
|
6174 |
+
|
6175 |
+
#: export.php:404
|
6176 |
+
#@ gravityforms
|
6177 |
+
msgid "Select All"
|
6178 |
+
msgstr "انتخاب کردن همه"
|
6179 |
+
|
6180 |
+
#: form_detail.php:1010
|
6181 |
+
#@ gravityforms
|
6182 |
+
msgid "Select Categories"
|
6183 |
+
msgstr "انتخاب دسته بندی"
|
6184 |
+
|
6185 |
+
#: export.php:523
|
6186 |
+
#@ gravityforms
|
6187 |
+
msgid "Select Date Range"
|
6188 |
+
msgstr "یک بازه زمانی انتخاب نمایید"
|
6189 |
+
|
6190 |
+
#: export.php:503
|
6191 |
+
#@ gravityforms
|
6192 |
+
msgid "Select Fields"
|
6193 |
+
msgstr "انتخاب فیلدها"
|
6194 |
+
|
6195 |
+
#: export.php:294
|
6196 |
+
#: tooltips.php:153
|
6197 |
+
#@ gravityforms
|
6198 |
+
msgid "Select File"
|
6199 |
+
msgstr "فایل را انتخاب نمایید"
|
6200 |
+
|
6201 |
+
#: export.php:327
|
6202 |
+
#@ gravityforms
|
6203 |
+
msgid "Select Forms"
|
6204 |
+
msgstr "انتخاب فرم ها"
|
6205 |
+
|
6206 |
+
#: tooltips.php:157
|
6207 |
+
#@ gravityforms
|
6208 |
+
msgid "Select On or Off to enable or disable no-conflict mode. Setting this to On will prevent extraneous scripts and styles from being printed on Gravity Forms admin pages, reducing conflicts with other plugins and themes."
|
6209 |
+
msgstr "برای فعال سازی یا غیرفعال سازی حالت no-conflict رابر روی روشن یا خاموش را انتخاب کنید. برای جلوگیری از نمایش اسکریپت خارجی و استایل ها در صفحات مدیریت Gravity Forms و کاهش تداخل با پلاگین ها و پوسته ها بر روی روشن قرار دهید"
|
6210 |
+
|
6211 |
+
#: includes/addon/class-gf-addon.php:1933
|
6212 |
+
#: includes/addon/class-gf-addon.php:2238
|
6213 |
+
#, php-format
|
6214 |
+
#@ gravityforms
|
6215 |
+
msgid "Select a %s Field"
|
6216 |
+
msgstr "یک فیلد %s انتخاب کنید."
|
6217 |
+
|
6218 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:28
|
6219 |
+
#: settings.php:369
|
6220 |
+
#@ gravityforms
|
6221 |
+
msgid "Select a Currency"
|
6222 |
+
msgstr "واحد پول را انتخاب کنید"
|
6223 |
+
|
6224 |
+
#: includes/addon/class-gf-addon.php:1926
|
6225 |
+
#: includes/addon/class-gf-addon.php:2231
|
6226 |
+
#: notification.php:790
|
6227 |
+
#@ gravityforms
|
6228 |
+
msgid "Select a Field"
|
6229 |
+
msgstr "یک فیلد انتخاب کنید"
|
6230 |
+
|
6231 |
+
#: gravityforms.php:4841
|
6232 |
+
#: widget.php:123
|
6233 |
+
#@ gravityforms
|
6234 |
+
msgid "Select a Form"
|
6235 |
+
msgstr "یک فرم انتخاب نمایید"
|
6236 |
+
|
6237 |
+
#: form_detail.php:1736
|
6238 |
+
#@ gravityforms
|
6239 |
+
msgid "Select a Mask"
|
6240 |
+
msgstr "یک قاب انتخاب نمایید"
|
6241 |
+
|
6242 |
+
#: js.php:152
|
6243 |
+
#@ gravityforms
|
6244 |
+
msgid "Select a category"
|
6245 |
+
msgstr "دسته بندی را انتخاب کنید"
|
6246 |
+
|
6247 |
+
#: form_detail.php:1476
|
6248 |
+
#@ gravityforms
|
6249 |
+
msgid "Select a category and customize the predefined choices or paste your own list to bulk add choices."
|
6250 |
+
msgstr "یک دسته بندی انتخاب نمایید و گزینه های از پیش تعریف شده را سفارشی نمایید یا اینکه لیست خود را برای افزودن دسته جمعی گزینه های وارد کنید ."
|
6251 |
+
|
6252 |
+
#: js.php:1234
|
6253 |
+
#@ gravityforms
|
6254 |
+
msgid "Select a field"
|
6255 |
+
msgstr "یک فیلد را انتخاب کنید"
|
6256 |
+
|
6257 |
+
#: export.php:488
|
6258 |
+
#@ gravityforms
|
6259 |
+
msgid "Select a form"
|
6260 |
+
msgstr "یک فرم انتخاب کنید"
|
6261 |
+
|
6262 |
+
#: gravityforms.php:4848
|
6263 |
+
#@ gravityforms
|
6264 |
+
msgid "Select a form below to add it to your post or page."
|
6265 |
+
msgstr "یکی از فرم های زیر را برای قرار دادن در نوشته یا برگه انتخاب نمایید"
|
6266 |
+
|
6267 |
+
#: export.php:475
|
6268 |
+
#@ gravityforms
|
6269 |
+
msgid "Select a form below to export entries. Once you have selected a form you may select the fields you would like to export and then define optional filters for field values and the date range. When you click the download button below, Gravity Forms will create a CSV file for you to save to your computer."
|
6270 |
+
msgstr "یکی از فرم های زیر را برای گرفتن خروجی انتخاب نمایید. هنگامی که شما یک فرم را انتخاب می کنید می توانید فیلدهایی که مایل به گرفتن خروجی هستید را انتخاب نمایید و بازه زمانی و فیلتر های اختیاری را بر روی مقادیر فیلدها اعمال کنید. هنگامی که بر روی دکمه دانلود کلیک کنید یک فایل CVS بر روی کامپیوتر شما ذخیره می شود."
|
6271 |
+
|
6272 |
+
#: gravityforms.php:4849
|
6273 |
+
#@ gravityforms
|
6274 |
+
msgid "Select a form from the list to add it to your post or page."
|
6275 |
+
msgstr "برای اضافه کردن فرم به برگه یا نوشته خود یک فرم از لیست انتخاب کنید."
|
6276 |
+
|
6277 |
+
#: common.php:3772
|
6278 |
+
#@ gravityforms
|
6279 |
+
msgid "Select a format"
|
6280 |
+
msgstr "یک قالب انتخاب کنید"
|
6281 |
+
|
6282 |
+
#: form_settings.php:1300
|
6283 |
+
#@ gravityforms
|
6284 |
+
msgid "Select a page"
|
6285 |
+
msgstr "یک برگه انتخاب نمایید"
|
6286 |
+
|
6287 |
+
#: includes/addon/class-gf-payment-addon.php:1875
|
6288 |
+
#@ gravityforms
|
6289 |
+
msgid "Select a product field"
|
6290 |
+
msgstr "یک فیلد محصول انتخاب نمایید"
|
6291 |
+
|
6292 |
+
#: includes/addon/class-gf-payment-addon.php:1541
|
6293 |
+
#@ gravityforms
|
6294 |
+
msgid "Select a transaction type"
|
6295 |
+
msgstr "یک نوع تراکنش انتخاب نمایید ."
|
6296 |
+
|
6297 |
+
#: includes/addon/class-gf-payment-addon.php:1550
|
6298 |
+
#@ gravityforms
|
6299 |
+
msgid "Select a transaction type."
|
6300 |
+
msgstr "نوع تراکنش را انتخاب کنید."
|
6301 |
+
|
6302 |
+
#: entry_list.php:1695
|
6303 |
+
#, php-format
|
6304 |
+
#@ gravityforms
|
6305 |
+
msgid "Select all %s{0}%s entries."
|
6306 |
+
msgstr "همه %s{0}%s پیام ورودی را انتخاب نمایید."
|
6307 |
+
|
6308 |
+
#: gravityforms.php:4896
|
6309 |
+
#@ gravityforms
|
6310 |
+
msgid "Select an action"
|
6311 |
+
msgstr "اقدامی را انتخاب کنید"
|
6312 |
+
|
6313 |
+
#: gravityforms.php:4908
|
6314 |
+
#@ gravityforms
|
6315 |
+
msgid "Select an action for this shortcode. Actions are added by some add-ons."
|
6316 |
+
msgstr "یک اقدام برای این شورت کد انتخاب کنید. اقدامات به وسیله بعضی از افزودنی ها ( Add-ons ) اضافه می شوند."
|
6317 |
+
|
6318 |
+
#: notification.php:835
|
6319 |
+
#@ gravityforms
|
6320 |
+
msgid "Select an email field"
|
6321 |
+
msgstr "انتخاب فیلد ایمیل"
|
6322 |
+
|
6323 |
+
#: form_detail.php:882
|
6324 |
+
#@ gravityforms
|
6325 |
+
msgid "Select an existing custom field"
|
6326 |
+
msgstr "یک زمینه دلخواه موجود انتخاب نمایید"
|
6327 |
+
|
6328 |
+
#: includes/fields/class-gf-field-fileupload.php:205
|
6329 |
+
#@ gravityforms
|
6330 |
+
msgid "Select files"
|
6331 |
+
msgstr "فایل ها را انتخاب نمایید"
|
6332 |
+
|
6333 |
+
#: includes/addon/class-gf-payment-addon.php:1585
|
6334 |
+
#@ gravityforms
|
6335 |
+
msgid "Select how many times the recurring payment should be made. The default is to bill the customer until the subscription is canceled."
|
6336 |
+
msgstr "انتخاب کنید که پرداخت تمدید چند بار باید انجام شود. حالت پیش فرض دادن صورت حساب به مشتری تا موقعی است که اشتراک لغو شود."
|
6337 |
+
|
6338 |
+
#: includes/addon/class-gf-payment-addon.php:2409
|
6339 |
+
#@ gravityforms
|
6340 |
+
msgid "Select how you would like the sales data to be displayed."
|
6341 |
+
msgstr "نحوه نمایش اطلاعات فروش را انتخاب نمایید."
|
6342 |
+
|
6343 |
+
#: common.php:641
|
6344 |
+
#@ gravityforms
|
6345 |
+
msgid "Select image size"
|
6346 |
+
msgstr "سایز تصاویر را انتخاب کنید"
|
6347 |
+
|
6348 |
+
#: tooltips.php:136
|
6349 |
+
#@ gravityforms
|
6350 |
+
msgid "Select one or more image metadata field to be displayed along with the image upload field. They enable users to enter additional information about the uploaded image."
|
6351 |
+
msgstr "یک یا چند فیلد متا داده تصاویر برای نمایش با فیلد بارگذاری تصویر انتخاب کنید. این فیلدها به کاربران اجازه می هد اطلاعت بیشتری درباره تصاویر بارگذاری شده وارد کنند."
|
6352 |
+
|
6353 |
+
#: export.php:283
|
6354 |
+
#@ gravityforms
|
6355 |
+
msgid "Select the Gravity Forms export file you would like to import. When you click the import button below, Gravity Forms will import the forms."
|
6356 |
+
msgstr "فایل درون ریز Gravity Forms که می خواهید درون ریزی کنید را انتخاب کنید. وقتی که بر روی دکمه وارد کردن کلیک کنید Gravity Forms فرم ها را درون ریزی می کند."
|
6357 |
+
|
6358 |
+
#: tooltips.php:130
|
6359 |
+
#@ gravityforms
|
6360 |
+
msgid "Select the author that will be used for the post that is created by the form entry."
|
6361 |
+
msgstr "نویسنده ای را برای ارسال هایی که از ورودی این فرم ساخته می شود انتخاب کنید."
|
6362 |
+
|
6363 |
+
#: tooltips.php:134
|
6364 |
+
#@ gravityforms
|
6365 |
+
msgid "Select the category that will be used for the post that is created by the form entry."
|
6366 |
+
msgstr "دسته بندی برای نوشته هایی که از ورودی های این فرم ایجاد می شود را انتخاب کنید."
|
6367 |
+
|
6368 |
+
#: tooltips.php:66
|
6369 |
+
#@ gravityforms
|
6370 |
+
msgid "Select the country you would like to be selected by default when the form gets displayed."
|
6371 |
+
msgstr "کشوری که می خواهید به صورت پیش فرض در هنگام نمایش فرم انتخاب شده باشد را انتخاب کنید."
|
6372 |
+
|
6373 |
+
#: tooltips.php:58
|
6374 |
+
#@ gravityforms
|
6375 |
+
msgid "Select the custom field name from available existing custom fields, or enter a new custom field name."
|
6376 |
+
msgstr "نام فیلد سفارشی را از فیلد های سفارشی موجود انتخاب کنید یا یک نام جدید وارد کنید."
|
6377 |
+
|
6378 |
+
#: tooltips.php:41
|
6379 |
+
#@ gravityforms
|
6380 |
+
msgid "Select the default description placement. Descriptions can be placed above the field inputs or below the field inputs. This setting can be overridden in the appearance settings for each field."
|
6381 |
+
msgstr "محل پیش فرض توضیحات را انتخاب کنید. توضیحات می توانند بالا یا پایین فیلد های ورودی قرار گیرند. این تنظیمات از قسمت تنظیمات پیشرفته هر فیلد قابل تغییر است."
|
6382 |
+
|
6383 |
+
#: tooltips.php:42
|
6384 |
+
#@ gravityforms
|
6385 |
+
msgid "Select the default sub-label placement. Sub-labels can be placed above the field inputs or below the field inputs. This setting can be overridden in the appearance settings for each field."
|
6386 |
+
msgstr "محل پیش فرض برچسب فرعی را انتخاب کنید. برچسب فرعی می توانند بالا یا پایین فیلد های ورودی قرار گیرند. این تنظیمات از قسمت تنظیمات پیشرفته هر فیلد قابل تغییر است."
|
6387 |
+
|
6388 |
+
#: tooltips.php:93
|
6389 |
+
#@ gravityforms
|
6390 |
+
msgid "Select the description placement. Descriptions can be placed above the field inputs or below the field inputs."
|
6391 |
+
msgstr "محل توضیحات را انتخاب کنید. توضیحات می توانند در بالا یا پایین فیلد های ورودی قرار گیرد."
|
6392 |
+
|
6393 |
+
#: tooltips.php:105
|
6394 |
+
#@ gravityforms
|
6395 |
+
msgid "Select the field to be used as the source for the values for this field."
|
6396 |
+
msgstr "فیلدی که برای منبع این فیلد استفاده می شود را وارد کنید."
|
6397 |
+
|
6398 |
+
#: tooltips.php:151
|
6399 |
+
#@ gravityforms
|
6400 |
+
msgid "Select the fields you would like to include in the export."
|
6401 |
+
msgstr "فیلد های که می خواهید در برون ریز باشد را انتخاب کنید."
|
6402 |
+
|
6403 |
+
#: tooltips.php:98
|
6404 |
+
#@ gravityforms
|
6405 |
+
msgid "Select the fields you'd like to use in this Address Field and customize the Sub-Labels by entering new ones."
|
6406 |
+
msgstr "فیلدی که می خواهید برای استفاده آدرس استفاده کنید را انتخاب کنید و برچسب فرعی را با وارد کردن مقداری جدید سفارشی کنید."
|
6407 |
+
|
6408 |
+
#: tooltips.php:96
|
6409 |
+
#@ gravityforms
|
6410 |
+
msgid "Select the fields you'd like to use in this Name field and customize the Sub-Labels by entering new ones."
|
6411 |
+
msgstr "فیلدی که می خواهید برای این فیلد نام استفاده کنید را انتخاب کنید و برچسب فرعی را برای سفارشی کردن وارد کنید."
|
6412 |
+
|
6413 |
+
#: tooltips.php:148
|
6414 |
+
#@ gravityforms
|
6415 |
+
msgid "Select the form you would like to export entry data from. You may only export data from one form at a time."
|
6416 |
+
msgstr "فرمی که می خواهید ورودی ها آن برون ریزی شود انتخاب کنید. هر بار فقط از ورودی های یک فرم می توان برون ریزی کرد."
|
6417 |
+
|
6418 |
+
#: tooltips.php:73
|
6419 |
+
#@ gravityforms
|
6420 |
+
msgid "Select the format of numbers that are allowed in this field. You have the option to use a comma or a dot as the decimal separator."
|
6421 |
+
msgstr "قالب اعدادی که برای این فیلد مجاز است انتخاب کنید. می توانید از کاما یا دات برای جداکننده اعشاری استفاده کنید. "
|
6422 |
+
|
6423 |
+
#: tooltips.php:72
|
6424 |
+
#@ gravityforms
|
6425 |
+
msgid "Select the format you would like to use for the Name field. There are 3 options, Normal which includes First and Last Name, Extended which adds Prefix and Suffix, or Simple which is a single input field."
|
6426 |
+
msgstr "قالبی که می خواهید برای فیلد نام استفاده شود را انتخاب کنید. سه انتخاب وجود دارد، حالت عادی که شامل نام و نام خانوادگی است، حالت پیشرفته که پیشوند وپسوند اضافه می کند، حالت ساده که یک فیلد است. "
|
6427 |
+
|
6428 |
+
#: tooltips.php:82
|
6429 |
+
#@ gravityforms
|
6430 |
+
msgid "Select the format you would like to use for the phone input. Available options are domestic US/CANADA style phone number and international long format phone number."
|
6431 |
+
msgstr "قالبی که می خواهید برای شماره تلفن ها استفاده شود را وارد کنید."
|
6432 |
+
|
6433 |
+
#: tooltips.php:77
|
6434 |
+
#@ gravityforms
|
6435 |
+
msgid "Select the format you would like to use for the time field. Available options are 12 hour (i.e. 8:30 pm) and 24 hour (i.e. 20:30)."
|
6436 |
+
msgstr "قالبی که می خواهید برای فیلد زمان استفاده شود را انتخاب کنید. گزینه های موجود 12 ساعته و 24 ساعته است ."
|
6437 |
+
|
6438 |
+
#: tooltips.php:149
|
6439 |
+
#@ gravityforms
|
6440 |
+
msgid "Select the forms you would like to export."
|
6441 |
+
msgstr "فرمی را که می خواهید برون ریزی کنید انتخاب کنید."
|
6442 |
+
|
6443 |
+
#: export.php:320
|
6444 |
+
#@ gravityforms
|
6445 |
+
msgid "Select the forms you would like to export. When you click the download button below, Gravity Forms will create a JSON file for you to save to your computer. Once you've saved the download file, you can use the Import tool to import the forms."
|
6446 |
+
msgstr "فرم هایی که می خواهید خروجی بگیرید انتخاب کنید. وقتی که بر روی دکمه دانلود کلیک کنید Gravity Forms یک فایل JSON برای ذخیره کردن بر روی کامپیوترتان می سازد. با ذخیره کردن فایل می توانید از ابزار درون ریزی فرم ها را درون ریزی کنید."
|
6447 |
+
|
6448 |
+
#: tooltips.php:92
|
6449 |
+
#@ gravityforms
|
6450 |
+
msgid "Select the label visibility for this field. Labels can either inherit the form setting or be hidden."
|
6451 |
+
msgstr "حالت نمایش برچسب این فیلد را انتخاب کنید. برچسب ها می توانند در فرم قرار گیرند یا به صورت مخفی باشند."
|
6452 |
+
|
6453 |
+
#: tooltips.php:108
|
6454 |
+
#@ gravityforms
|
6455 |
+
msgid "Select the language you would like to use for the reCAPTCHA display from the available options."
|
6456 |
+
msgstr "زبانی که می خواهید برای re CAPTCHA نمایش داده شود را از گزینه های موجود انتخاب کنید."
|
6457 |
+
|
6458 |
+
#: tooltips.php:50
|
6459 |
+
#@ gravityforms
|
6460 |
+
msgid "Select the page you would like the user to be redirected to after they have submitted the form."
|
6461 |
+
msgstr "برگه ای که می خواهید کاربر بعد از ارسال فرم به آن هدایت شود را انتخاب کنید."
|
6462 |
+
|
6463 |
+
#: tooltips.php:131
|
6464 |
+
#@ gravityforms
|
6465 |
+
msgid "Select the post format that will be used for the post that is created by the form entry."
|
6466 |
+
msgstr "قالبی را برای ارسال هایی که از ورودی این فرم ساخته می شود انتخاب کنید."
|
6467 |
+
|
6468 |
+
#: tooltips.php:129
|
6469 |
+
#@ gravityforms
|
6470 |
+
msgid "Select the post status that will be used for the post that is created by the form entry."
|
6471 |
+
msgstr "وضعیت نوشته رابرای ارسال هایی که از ورودی این فرم ساخته می شود انتخاب کنید."
|
6472 |
+
|
6473 |
+
#: tooltips.php:65
|
6474 |
+
#@ gravityforms
|
6475 |
+
msgid "Select the province you would like to be selected by default when the form gets displayed."
|
6476 |
+
msgstr "شهری که می خواهید به صورت پیش فرض در هنگام نمایش فرم انتخاب شده باشد را انتخاب کنید."
|
6477 |
+
|
6478 |
+
#: tooltips.php:64
|
6479 |
+
#@ gravityforms
|
6480 |
+
msgid "Select the state you would like to be selected by default when the form gets displayed."
|
6481 |
+
msgstr "ایالتی که می خواهید به صورت پیش فرض در هنگام نمایش فرم انتخاب شده باشد را انتخاب کنید."
|
6482 |
+
|
6483 |
+
#: tooltips.php:75
|
6484 |
+
#@ gravityforms
|
6485 |
+
msgid "Select the style you would like to use for the credit card icons."
|
6486 |
+
msgstr "استایلی که می خواهید برای آیکون های کارت اعتباری استفاده شود را انتخاب کنید."
|
6487 |
+
|
6488 |
+
#: tooltips.php:94
|
6489 |
+
#@ gravityforms
|
6490 |
+
msgid "Select the sub-label placement. Sub-labels can be placed above the field inputs or below the field inputs."
|
6491 |
+
msgstr "محل برچسب فرعی را انتخاب کنید. برچسب های فرعی می توانند بالا یا پایین فیلد ورودی قرار گیرند."
|
6492 |
+
|
6493 |
+
#: tooltips.php:57
|
6494 |
+
#@ gravityforms
|
6495 |
+
msgid "Select the type of CAPTCHA you would like to use."
|
6496 |
+
msgstr "نوع CAPTCHA را که می خواهید استفاده کنید انتخاب کنید."
|
6497 |
+
|
6498 |
+
#: tooltips.php:63
|
6499 |
+
#@ gravityforms
|
6500 |
+
msgid "Select the type of address you would like to use."
|
6501 |
+
msgstr "نوع آدرسی را که می خواهید استفاده کنید، انتخاب کنید."
|
6502 |
+
|
6503 |
+
#: tooltips.php:59
|
6504 |
+
#@ gravityforms
|
6505 |
+
msgid "Select the type of field from the available form fields."
|
6506 |
+
msgstr "نوع فیلد را از فیلد های موجود فرم انتخاب کنید."
|
6507 |
+
|
6508 |
+
#: tooltips.php:62
|
6509 |
+
#@ gravityforms
|
6510 |
+
msgid "Select the type of inputs you would like to use for the date field. Date Picker will let users select a date from a calendar. Date Field will let users free type the date."
|
6511 |
+
msgstr "نوع ورودی که می خواهید برای فیلد تاریخ استفاده شود را انتخاب کنید. انتخابگر تاریخ به کاربران امکان می دهد تاریخ را از تقویم انتخاب کنند. فیلد تاریخ به کاربران امکان می دهد یک تاریخ بنویسند."
|
6512 |
+
|
6513 |
+
#: tooltips.php:110
|
6514 |
+
#@ gravityforms
|
6515 |
+
msgid "Select the visibility for this field. Field visibility set to Everyone will be visible by the user submitting the form. Form field visibility set to Admin Only will only be visible within the Gravity Forms administration tool.<br /><br />Setting a field to Admin Only is useful for creating fields that can be used to set a status or priority level on submitted entries."
|
6516 |
+
msgstr "حالت نمایش این فیلد را انتخاب کنید. فیلدی که حالت نمایش آن بر روی همه باشد کاربر در هنگام ارسال فرم آن را می بیند. فیلدی که حالت نمایش آن بر روی فقط مدیر باشد فقط در بخش مدیریت Gravity Forms دیده می شود.<br /><br /> قرار دادن حالت نمایش یک فیلد بر روی فقط مدیر برای ساختن فیلدهایی که برای تعیین وضعیت یا اولویت بندی ورودی ها است کاربرد دارد."
|
6517 |
+
|
6518 |
+
#: tooltips.php:56
|
6519 |
+
#@ gravityforms
|
6520 |
+
msgid "Select the visual theme for the reCAPTCHA field from the available options to better match your site design."
|
6521 |
+
msgstr "قالبی برای reCAPTCHA انتخاب کنید تا بیشتر با طراحی سایت شما هماهنگ شود."
|
6522 |
+
|
6523 |
+
#: tooltips.php:79
|
6524 |
+
#@ gravityforms
|
6525 |
+
msgid "Select this option to enable multiple files to be uploaded for this field."
|
6526 |
+
msgstr "برای اینکه چند فایل از این فیلد بارگذاری شوند این گزینه را فعال کنید."
|
6527 |
+
|
6528 |
+
#: tooltips.php:85
|
6529 |
+
#@ gravityforms
|
6530 |
+
msgid "Select this option to limit user input to unique values only. This will require that a value entered in a field does not currently exist in the entry database for that field."
|
6531 |
+
msgstr "برای محدود کردن کاربران برای وارد کردن داده های منحصر به فرد این گزینه را انتخاب کنید. این کار باعث می شود مقداری که در این فیلد وارد می شود از قبل در دیتابیس برای این فیلد وارد نشده باشد."
|
6532 |
+
|
6533 |
+
#: tooltips.php:84
|
6534 |
+
#@ gravityforms
|
6535 |
+
msgid "Select this option to make the form field required. A required field will prevent the form from being submitted if it is not filled out or selected."
|
6536 |
+
msgstr "برای ضروری کردن فیلد این گزینه را انتخاب کنید. فیلد های ضروری از ارسال فرم هایی که این فیلد ها پر یا انتخاب نشده است جلوگیری می کنند."
|
6537 |
+
|
6538 |
+
#: tooltips.php:106
|
6539 |
+
#@ gravityforms
|
6540 |
+
msgid "Select this setting to display the option as activated by default when the form first loads."
|
6541 |
+
msgstr "این تنظیمات را برای اینکه در اولین بارگذاری فرم این گزینه به صورت پیش فرض نمایش داده شود انتخاب کنید."
|
6542 |
+
|
6543 |
+
#: tooltips.php:142
|
6544 |
+
#@ gravityforms
|
6545 |
+
msgid "Select which Product this field is tied to."
|
6546 |
+
msgstr "محصولاتی که به این فیلد ارتباط دارند را انتخاب کنید."
|
6547 |
+
|
6548 |
+
#: tooltips.php:128
|
6549 |
+
#@ gravityforms
|
6550 |
+
msgid "Select which categories are displayed. You can choose to display all of them or select individual ones."
|
6551 |
+
msgstr "دسته بندی هایی که نمایش داده می شوند را انتخاب کنید. می توانید همه یا فقط آنهایی که می خواهید را نمایش بدهید."
|
6552 |
+
|
6553 |
+
#: includes/addon/class-gf-payment-addon.php:1615
|
6554 |
+
#@ gravityforms
|
6555 |
+
msgid "Select which field determines the payment amount, or select 'Form Total' to use the total of all pricing fields as the payment amount."
|
6556 |
+
msgstr "انتخاب کنید که مقدار کدام فیلد برای محاسبه هزینه پرداخت لحاظ شود یا اینکه 'مجموع مبالغ فرم' را انتخاب نمایید تا مجموع همه مبالغ فیلدها را به عنوان هزینه لحاظ نماید ."
|
6557 |
+
|
6558 |
+
#: includes/addon/class-gf-payment-addon.php:1567
|
6559 |
+
#@ gravityforms
|
6560 |
+
msgid "Select which field determines the recurring payment amount, or select 'Form Total' to use the total of all pricing fields as the recurring amount."
|
6561 |
+
msgstr "انتخاب کنید که مقدار کدام فیلد برای محاسبه هزینه تمدید پرداخت لحاظ شود یا اینکه 'مجموع مبالغ فرم' را انتخاب نمایید تا مجموع همه مبالغ فیلدها را به عنوان هزینه لحاظ نماید ."
|
6562 |
+
|
6563 |
+
#: tooltips.php:120
|
6564 |
+
#@ gravityforms
|
6565 |
+
msgid "Select which progress bar style you would like to use. Select custom to choose your own text and background color."
|
6566 |
+
msgstr "استایلی را که می خواهید برای نوار پیشرفت استفاده کنید را انتخاب کنید. برای انتخاب رنگ متن و زمینه سفارشی را انتخاب کنید."
|
6567 |
+
|
6568 |
+
#: tooltips.php:119
|
6569 |
+
#@ gravityforms
|
6570 |
+
msgid "Select which type of visual progress indicator you would like to display. Progress Bar, Steps or None."
|
6571 |
+
msgstr "نوع نشانگر پیشرفت که می خواهید نمایش داده شود را وارد کنید. نوار پیشرفت، مرحله ای یا هیچ کدام."
|
6572 |
+
|
6573 |
+
#: tooltips.php:155
|
6574 |
+
#@ gravityforms
|
6575 |
+
msgid "Select yes or no to enable or disable CSS output. Setting this to no will disable the standard Gravity Forms CSS from being included in your theme."
|
6576 |
+
msgstr "برای فعال سازی یا غیرفعال سازی خروجیCSS بله یا خیر را انتخاب کنید.. اگر خیر را انتخاب کنید Gravity Forms CSS در قالب فراخوانی نمی شود "
|
6577 |
+
|
6578 |
+
#: tooltips.php:156
|
6579 |
+
#@ gravityforms
|
6580 |
+
msgid "Select yes or no to enable or disable HTML5 output. Setting this to no will disable the standard Gravity Forms HTML5 form field output."
|
6581 |
+
msgstr "برای فعال سازی یا غیرفعال سازی خروجی HTML5 بله یا خیر را انتخاب کنید.. اگر خیر را انتخاب کنید از خروجی استاندارد Gravity Forms HTML5 جلوگیری می شود. "
|
6582 |
+
|
6583 |
+
#: includes/addon/class-gf-payment-addon.php:1573
|
6584 |
+
#@ gravityforms
|
6585 |
+
msgid "Select your billing cycle. This determines how often the recurring payment should occur."
|
6586 |
+
msgstr "چرخه صدور صورت حساب خود را انتخاب نمایید . این قسمت معین می کند که هر چند وقت باید هزینه تمدید پرداخت صورت بگیرد. "
|
6587 |
+
|
6588 |
+
#: includes/addon/class-gf-addon.php:1996
|
6589 |
+
#: includes/addon/class-gf-addon.php:2390
|
6590 |
+
#@ gravityforms
|
6591 |
+
msgid "Selected"
|
6592 |
+
msgstr "انتخاب شده"
|
6593 |
+
|
6594 |
+
#: tooltips.php:135
|
6595 |
+
#@ gravityforms
|
6596 |
+
msgid "Selecting this option will set the post author to the WordPress user that submitted the form."
|
6597 |
+
msgstr "انتخاب این گزینه فرستنده این فرم را به عنوان نویسنده قرار می دهد."
|
6598 |
+
|
6599 |
+
#: form_detail.php:1454
|
6600 |
+
#@ gravityforms
|
6601 |
+
msgid "Self-employed"
|
6602 |
+
msgstr "خود اشتغال"
|
6603 |
+
|
6604 |
+
#: form_display.php:3066
|
6605 |
+
#@ gravityforms
|
6606 |
+
msgid "Send Email"
|
6607 |
+
msgstr "ارسال ایمیل"
|
6608 |
+
|
6609 |
+
#: entry_detail.php:1358
|
6610 |
+
#: entry_list.php:1918
|
6611 |
+
#: notification.php:777
|
6612 |
+
#@ gravityforms
|
6613 |
+
msgid "Send To"
|
6614 |
+
msgstr "ارسال به"
|
6615 |
+
|
6616 |
+
#: tooltips.php:26
|
6617 |
+
#@ gravityforms
|
6618 |
+
msgid "Send To Email Address"
|
6619 |
+
msgstr "ارسال به "
|
6620 |
+
|
6621 |
+
#: common.php:3798
|
6622 |
+
#@ gravityforms
|
6623 |
+
msgid "Send this notification if"
|
6624 |
+
msgstr "این اعلان را ارسال کن اگر"
|
6625 |
+
|
6626 |
+
#: notification.php:307
|
6627 |
+
#: notification.php:887
|
6628 |
+
#@ gravityforms
|
6629 |
+
msgid "Send to"
|
6630 |
+
msgstr "ارسال به"
|
6631 |
+
|
6632 |
+
#: notification.php:810
|
6633 |
+
#@ gravityforms
|
6634 |
+
msgid "Send to Email"
|
6635 |
+
msgstr "ارسال به ایمیل"
|
6636 |
+
|
6637 |
+
#: notification.php:829
|
6638 |
+
#@ gravityforms
|
6639 |
+
msgid "Send to Field"
|
6640 |
+
msgstr "فیلد ارسالی"
|
6641 |
+
|
6642 |
+
#: form_detail.php:1313
|
6643 |
+
#@ gravityforms
|
6644 |
+
msgid "Separated with commas (i.e. jpg, gif, png, pdf)"
|
6645 |
+
msgstr "بوسیله کاما جدا کنید . مانند : (jpg, gif, png, pdf)"
|
6646 |
+
|
6647 |
+
#: form_detail.php:1459
|
6648 |
+
#@ gravityforms
|
6649 |
+
msgid "September"
|
6650 |
+
msgstr "سپتامبر"
|
6651 |
+
|
6652 |
+
#: form_detail.php:1121
|
6653 |
+
#: tooltips.php:137
|
6654 |
+
#@ gravityforms
|
6655 |
+
msgid "Set as Featured Image"
|
6656 |
+
msgstr "انتخاب به عنوان تصویر شاخص"
|
6657 |
+
|
6658 |
+
#: settings.php:325
|
6659 |
+
#@ gravityforms
|
6660 |
+
msgid "Set this to No if you would like to disable the plugin from outputting HTML5 form fields."
|
6661 |
+
msgstr "اگر می خواهید خروجی HTML5 پلاگین را غیرفعال کنید بر روی خیر قرار دهید."
|
6662 |
+
|
6663 |
+
#: settings.php:314
|
6664 |
+
#@ gravityforms
|
6665 |
+
msgid "Set this to No if you would like to disable the plugin from outputting the form CSS."
|
6666 |
+
msgstr "اگر می خواهید خروجی CCS پلاگین را غیرفعال کنید برروی خیر قرار دهید."
|
6667 |
+
|
6668 |
+
#: settings.php:392
|
6669 |
+
#@ gravityforms
|
6670 |
+
msgid "Set this to ON to allow Gravity Forms to download and install bug fixes and security updates automatically in the background. Requires a valid license key."
|
6671 |
+
msgstr "برای اینکه Gravity Forms اجازه دانلود و نصب باگ های رفع شده و بروزرسانی های امنیتی را به صورت خودکار داشته باشد این گزینه را بر روی روشن قرار دهید. برای استفاده از این قابلیت به یک لایسنس معتبر نیاز دارید."
|
6672 |
+
|
6673 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:51
|
6674 |
+
#: settings.php:337
|
6675 |
+
#@ gravityforms
|
6676 |
+
msgid "Set this to ON to prevent extraneous scripts and styles from being printed on Gravity Forms admin pages, reducing conflicts with other plugins and themes."
|
6677 |
+
msgstr "برای جلوگیری از نمایش اسکریپت خارجی و استایل ها در صفحات مدیریت Gravity Forms و کاهش تداخل با پلاگین ها و پوسته ها بر روی روشن قرار دهید. "
|
6678 |
+
|
6679 |
+
#: gravityforms.php:1783
|
6680 |
+
#: gravityforms.php:2173
|
6681 |
+
#: gravityforms.php:4204
|
6682 |
+
#: gravityforms.php:4523
|
6683 |
+
#: includes/addon/class-gf-addon.php:3608
|
6684 |
+
#: includes/addon/class-gf-addon.php:3831
|
6685 |
+
#: includes/addon/class-gf-addon.php:3997
|
6686 |
+
#: settings.php:703
|
6687 |
+
#@ gravityforms
|
6688 |
+
msgid "Settings"
|
6689 |
+
msgstr "تنظیمات"
|
6690 |
+
|
6691 |
+
#: tooltips.php:154
|
6692 |
+
#@ gravityforms
|
6693 |
+
msgid "Settings License Key"
|
6694 |
+
msgstr "تنظیمات لایسنس"
|
6695 |
+
|
6696 |
+
#: settings.php:270
|
6697 |
+
#@ gravityforms
|
6698 |
+
msgid "Settings Updated"
|
6699 |
+
msgstr "تنظیمات بروز رسانی شد"
|
6700 |
+
|
6701 |
+
#: includes/addon/class-gf-addon.php:1287
|
6702 |
+
#@ gravityforms
|
6703 |
+
msgid "Settings updated"
|
6704 |
+
msgstr "تنظیمات بروز شدند."
|
6705 |
+
|
6706 |
+
#: form_detail.php:486
|
6707 |
+
#@ gravityforms
|
6708 |
+
msgid "Setup Email Notifications for this Form"
|
6709 |
+
msgstr "ایمیل اعلان این فرم را تنظیم نمایید"
|
6710 |
+
|
6711 |
+
#: includes/addon/class-gf-payment-addon.php:1589
|
6712 |
+
#@ gravityforms
|
6713 |
+
msgid "Setup Fee"
|
6714 |
+
msgstr "هزینه راه اندازی"
|
6715 |
+
|
6716 |
+
#: form_detail.php:486
|
6717 |
+
#@ gravityforms
|
6718 |
+
msgid "Setup email notifications for this form"
|
6719 |
+
msgstr "ایمیل اعلان این فرم را تنظیم نمایید"
|
6720 |
+
|
6721 |
+
#: includes/fields/class-gf-field-shipping.php:26
|
6722 |
+
#: js.php:766
|
6723 |
+
#@ gravityforms
|
6724 |
+
msgid "Shipping"
|
6725 |
+
msgstr "هزینه حمل و نقل"
|
6726 |
+
|
6727 |
+
#: form_detail.php:1572
|
6728 |
+
#: form_display.php:2347
|
6729 |
+
#@ gravityforms
|
6730 |
+
msgid "Short"
|
6731 |
+
msgstr "کوتاه"
|
6732 |
+
|
6733 |
+
#: common.php:3784
|
6734 |
+
#: js.php:256
|
6735 |
+
#@ gravityforms
|
6736 |
+
msgid "Show"
|
6737 |
+
msgstr "نمایش"
|
6738 |
+
|
6739 |
+
#: includes/addon/class-gf-results.php:692
|
6740 |
+
#@ gravityforms
|
6741 |
+
msgid "Show more"
|
6742 |
+
msgstr "نمایش بیشتر"
|
6743 |
+
|
6744 |
+
#: includes/webapi/webapi.php:282
|
6745 |
+
#@ gravityforms
|
6746 |
+
msgid "Show/hide QR Code"
|
6747 |
+
msgstr "نمایش / مخفی کردن QR Code"
|
6748 |
+
|
6749 |
+
#: form_detail.php:1453
|
6750 |
+
#@ gravityforms
|
6751 |
+
msgid "Single"
|
6752 |
+
msgstr "مجرد"
|
6753 |
+
|
6754 |
+
#: includes/fields/class-gf-field-text.php:13
|
6755 |
+
#@ gravityforms
|
6756 |
+
msgid "Single Line Text"
|
6757 |
+
msgstr "متن تک خطی"
|
6758 |
+
|
6759 |
+
#: form_detail.php:583
|
6760 |
+
#@ gravityforms
|
6761 |
+
msgid "Single Method"
|
6762 |
+
msgstr "متد تکی"
|
6763 |
+
|
6764 |
+
#: form_detail.php:566
|
6765 |
+
#@ gravityforms
|
6766 |
+
msgid "Single Product"
|
6767 |
+
msgstr "محصول تکی"
|
6768 |
+
|
6769 |
+
#: form_detail.php:759
|
6770 |
+
#: form_detail.php:788
|
6771 |
+
#@ gravityforms
|
6772 |
+
msgid "Single line text"
|
6773 |
+
msgstr "متن تک خطی"
|
6774 |
+
|
6775 |
+
#: form_detail.php:817
|
6776 |
+
#: form_detail.php:1467
|
6777 |
+
#@ gravityforms
|
6778 |
+
msgid "Size"
|
6779 |
+
msgstr "اندازه"
|
6780 |
+
|
6781 |
+
#: form_detail.php:1456
|
6782 |
+
#@ gravityforms
|
6783 |
+
msgid "Skilled Labor"
|
6784 |
+
msgstr "کارگر ماهر"
|
6785 |
+
|
6786 |
+
#: form_detail.php:820
|
6787 |
+
#: form_detail.php:1467
|
6788 |
+
#: form_detail.php:2037
|
6789 |
+
#@ gravityforms
|
6790 |
+
msgid "Small"
|
6791 |
+
msgstr "کوچک"
|
6792 |
+
|
6793 |
+
#: form_detail.php:1703
|
6794 |
+
#@ gravityforms
|
6795 |
+
msgid "Social Security Number"
|
6796 |
+
msgstr "شماره تامین اجتماعی"
|
6797 |
+
|
6798 |
+
#: form_detail.php:1457
|
6799 |
+
#@ gravityforms
|
6800 |
+
msgid "Some College"
|
6801 |
+
msgstr "دانشکده"
|
6802 |
+
|
6803 |
+
#: form_detail.php:1465
|
6804 |
+
#@ gravityforms
|
6805 |
+
msgid "Somewhat Better"
|
6806 |
+
msgstr "تا حدودی بهتر"
|
6807 |
+
|
6808 |
+
#: form_detail.php:1463
|
6809 |
+
#@ gravityforms
|
6810 |
+
msgid "Somewhat Important"
|
6811 |
+
msgstr "تا حدودی مهم"
|
6812 |
+
|
6813 |
+
#: form_detail.php:1465
|
6814 |
+
#@ gravityforms
|
6815 |
+
msgid "Somewhat Worse"
|
6816 |
+
msgstr "تا حدودی بدتر"
|
6817 |
+
|
6818 |
+
#: form_display.php:2913
|
6819 |
+
#@ gravityforms
|
6820 |
+
msgid "Sorry. This form is no longer accepting new submissions."
|
6821 |
+
msgstr "متاسفانه این فرم ارسال ها جدید را نمی پذیرد."
|
6822 |
+
|
6823 |
+
#: form_display.php:2932
|
6824 |
+
#@ gravityforms
|
6825 |
+
msgid "Sorry. This form is no longer available."
|
6826 |
+
msgstr "متاسفانه این فرم دیگر در دسترس نیست ."
|
6827 |
+
|
6828 |
+
#: form_display.php:799
|
6829 |
+
#@ gravityforms
|
6830 |
+
msgid "Sorry. You must be logged in to view this form."
|
6831 |
+
msgstr "متاسفیم. شما برای مشاهده این فرم باید وارد سایت شوید ."
|
6832 |
+
|
6833 |
+
#: form_detail.php:2141
|
6834 |
+
#: tooltips.php:105
|
6835 |
+
#@ gravityforms
|
6836 |
+
msgid "Source Field"
|
6837 |
+
msgstr "فیلد منبع"
|
6838 |
+
|
6839 |
+
#: common.php:4256
|
6840 |
+
#@ gravityforms
|
6841 |
+
msgid "Source URL"
|
6842 |
+
msgstr "URL منبع"
|
6843 |
+
|
6844 |
+
#: export.php:853
|
6845 |
+
#: forms_model.php:4472
|
6846 |
+
#: includes/addon/class-gf-addon.php:1944
|
6847 |
+
#: select_columns.php:179
|
6848 |
+
#@ gravityforms
|
6849 |
+
msgid "Source Url"
|
6850 |
+
msgstr "URL منبع"
|
6851 |
+
|
6852 |
+
#: form_detail.php:1450
|
6853 |
+
#@ gravityforms
|
6854 |
+
msgid "South America"
|
6855 |
+
msgstr "آمریکای جنوبی"
|
6856 |
+
|
6857 |
+
#: entry_list.php:391
|
6858 |
+
#: entry_list.php:1100
|
6859 |
+
#: entry_list.php:1183
|
6860 |
+
#@ gravityforms
|
6861 |
+
msgid "Spam"
|
6862 |
+
msgstr "هرزنامه"
|
6863 |
+
|
6864 |
+
#: tooltips.php:88
|
6865 |
+
#@ gravityforms
|
6866 |
+
msgid "Specify a mathematical formula. The result of this formula will be dynamically populated as the value for this field."
|
6867 |
+
msgstr "فرمول ریاضی را مشخص کنید. جواب این فرمول به صورت دینامیک در مقدار این فیلد قرار می گیرد."
|
6868 |
+
|
6869 |
+
#: tooltips.php:89
|
6870 |
+
#@ gravityforms
|
6871 |
+
msgid "Specify how many decimal places the number should be rounded to."
|
6872 |
+
msgstr "مشخص کنید چند رقم اعشار باید گرد شود."
|
6873 |
+
|
6874 |
+
#: tooltips.php:81
|
6875 |
+
#@ gravityforms
|
6876 |
+
msgid "Specify the maximum file size in megabytes allowed for each of the files."
|
6877 |
+
msgstr "حداکثر اندازه مجاز فایل ها را بر حسب مگابایت مشخص کنید."
|
6878 |
+
|
6879 |
+
#: tooltips.php:80
|
6880 |
+
#@ gravityforms
|
6881 |
+
msgid "Specify the maximum number of files that can be uploaded using this field. Leave blank for unlimited. Note that the actual number of files permitted may be limited by this server's specifications and configuration."
|
6882 |
+
msgstr "تعداد حداکثر فایل هایی که می خواهید با این فیلد بارگذاری شود را مشخص کنید. برای تعداد نامحدود فیلد را خالی بگذارید. توجه کنید که مقدار واقعی تعداد فایل ها مجاز توسط سرور یا پیکربندی محدود شده باشد."
|
6883 |
+
|
6884 |
+
#: gravityforms.php:4883
|
6885 |
+
#@ gravityforms
|
6886 |
+
msgid "Specify the starting tab index for the fields of this form."
|
6887 |
+
msgstr "تعیین کردن شروع Tab Index برای فیلد های این فرم"
|
6888 |
+
|
6889 |
+
#: gravityforms.php:4877
|
6890 |
+
#@ gravityforms
|
6891 |
+
msgid "Specify whether or not to use AJAX to submit the form."
|
6892 |
+
msgstr "تعیین کردن استفاده از AJAX برای ارسال فرم"
|
6893 |
+
|
6894 |
+
#: entry_list.php:1902
|
6895 |
+
#@ gravityforms
|
6896 |
+
msgid "Specify which notifications you would like to resend for the selected entries."
|
6897 |
+
msgstr "مشخص کنید که ایمیل اعلان این پیام ورودی را برای کدام موردها می خواهید دوباره ارسال کنید."
|
6898 |
+
|
6899 |
+
#: form_detail.php:1641
|
6900 |
+
#: form_detail.php:1663
|
6901 |
+
#@ gravityforms
|
6902 |
+
msgid "Standard"
|
6903 |
+
msgstr "استاندارد"
|
6904 |
+
|
6905 |
+
#: form_detail.php:758
|
6906 |
+
#: form_detail.php:2427
|
6907 |
+
#: tooltips.php:144
|
6908 |
+
#@ gravityforms
|
6909 |
+
msgid "Standard Fields"
|
6910 |
+
msgstr "فیلدهای استاندارد"
|
6911 |
+
|
6912 |
+
#: tooltips.php:144
|
6913 |
+
#@ gravityforms
|
6914 |
+
msgid "Standard Fields provide basic form functionality."
|
6915 |
+
msgstr "فیلد ها استاندارد قابلیت های پایه ای فرم را فراهم می کنند. "
|
6916 |
+
|
6917 |
+
#: common.php:4238
|
6918 |
+
#@ gravityforms
|
6919 |
+
msgid "Starred"
|
6920 |
+
msgstr "ستاره دار"
|
6921 |
+
|
6922 |
+
#: export.php:529
|
6923 |
+
#: includes/addon/class-gf-results.php:269
|
6924 |
+
#@ gravityforms
|
6925 |
+
msgid "Start"
|
6926 |
+
msgstr "شروع"
|
6927 |
+
|
6928 |
+
#: entry_detail.php:1118
|
6929 |
+
#@ gravityforms
|
6930 |
+
msgid "Start Date"
|
6931 |
+
msgstr "تاریخ شروع"
|
6932 |
+
|
6933 |
+
#: form_detail.php:354
|
6934 |
+
#@ gravityforms
|
6935 |
+
msgid "Start Over There"
|
6936 |
+
msgstr "از همین جا شروع کن "
|
6937 |
+
|
6938 |
+
#: form_detail.php:351
|
6939 |
+
#@ gravityforms
|
6940 |
+
msgid "Start by selecting a field type from the nifty floating panels on the right."
|
6941 |
+
msgstr "با انتخاب یک فیلد از پنل های شناور سمت چپ شروع کنید."
|
6942 |
+
|
6943 |
+
#: form_detail.php:1159
|
6944 |
+
#: includes/addon/class-gf-addon.php:2289
|
6945 |
+
#: includes/addon/class-gf-payment-addon.php:1843
|
6946 |
+
#: includes/fields/class-gf-field-address.php:127
|
6947 |
+
#: includes/fields/class-gf-field-address.php:410
|
6948 |
+
#@ gravityforms
|
6949 |
+
msgid "State"
|
6950 |
+
msgstr "ایالت"
|
6951 |
+
|
6952 |
+
#: js.php:628
|
6953 |
+
#@ gravityforms
|
6954 |
+
msgid "State / Province"
|
6955 |
+
msgstr "ایالت / استان"
|
6956 |
+
|
6957 |
+
#: includes/fields/class-gf-field-address.php:405
|
6958 |
+
#@ gravityforms
|
6959 |
+
msgid "State / Province / Region"
|
6960 |
+
msgstr "ایالت / استان / ناحیه"
|
6961 |
+
|
6962 |
+
#: entry_detail.php:1102
|
6963 |
+
#@ gravityforms
|
6964 |
+
msgid "Status"
|
6965 |
+
msgstr "وضعیت"
|
6966 |
+
|
6967 |
+
#: form_display.php:2829
|
6968 |
+
#@ gravityforms
|
6969 |
+
msgid "Step"
|
6970 |
+
msgstr "مرحله"
|
6971 |
+
|
6972 |
+
#: form_detail.php:245
|
6973 |
+
#@ gravityforms
|
6974 |
+
msgid "Steps"
|
6975 |
+
msgstr "مرحله ها"
|
6976 |
+
|
6977 |
+
#: includes/fields/class-gf-field-address.php:150
|
6978 |
+
#: js.php:627
|
6979 |
+
#@ gravityforms
|
6980 |
+
msgid "Street Address"
|
6981 |
+
msgstr "خیابان"
|
6982 |
+
|
6983 |
+
#: form_display.php:2347
|
6984 |
+
#: includes/fields/class-gf-field-password.php:86
|
6985 |
+
#@ gravityforms
|
6986 |
+
msgid "Strength indicator"
|
6987 |
+
msgstr "شاخص قدرت"
|
6988 |
+
|
6989 |
+
#: form_detail.php:1575
|
6990 |
+
#: form_display.php:2347
|
6991 |
+
#@ gravityforms
|
6992 |
+
msgid "Strong"
|
6993 |
+
msgstr "قوی"
|
6994 |
+
|
6995 |
+
#: form_detail.php:1464
|
6996 |
+
#@ gravityforms
|
6997 |
+
msgid "Strongly Agree"
|
6998 |
+
msgstr "خیلی موافق"
|
6999 |
+
|
7000 |
+
#: form_detail.php:1464
|
7001 |
+
#@ gravityforms
|
7002 |
+
msgid "Strongly Disagree"
|
7003 |
+
msgstr "خیلی مخالف"
|
7004 |
+
|
7005 |
+
#: form_detail.php:1454
|
7006 |
+
#@ gravityforms
|
7007 |
+
msgid "Student"
|
7008 |
+
msgstr "دانشجو"
|
7009 |
+
|
7010 |
+
#: form_detail.php:1977
|
7011 |
+
#: form_settings.php:446
|
7012 |
+
#: tooltips.php:42
|
7013 |
+
#: tooltips.php:94
|
7014 |
+
#@ gravityforms
|
7015 |
+
msgid "Sub-Label Placement"
|
7016 |
+
msgstr "محل قرار گیری برچسب فرعی"
|
7017 |
+
|
7018 |
+
#: js.php:250
|
7019 |
+
#@ gravityforms
|
7020 |
+
msgid "Sub-Label:"
|
7021 |
+
msgstr "برچسب فرعی"
|
7022 |
+
|
7023 |
+
#: form_detail.php:1600
|
7024 |
+
#: tooltips.php:91
|
7025 |
+
#@ gravityforms
|
7026 |
+
msgid "Sub-Labels"
|
7027 |
+
msgstr "برچسب های فرعی"
|
7028 |
+
|
7029 |
+
#: notification.php:1011
|
7030 |
+
#: notification.php:1568
|
7031 |
+
#@ gravityforms
|
7032 |
+
msgid "Subject"
|
7033 |
+
msgstr "موضوع"
|
7034 |
+
|
7035 |
+
#: entry_detail.php:841
|
7036 |
+
#@ gravityforms
|
7037 |
+
msgid "Subject:"
|
7038 |
+
msgstr "موضوع:"
|
7039 |
+
|
7040 |
+
#: common.php:3778
|
7041 |
+
#: form_display.php:1174
|
7042 |
+
#: form_list.php:336
|
7043 |
+
#@ gravityforms
|
7044 |
+
msgid "Submit"
|
7045 |
+
msgstr "ارسال"
|
7046 |
+
|
7047 |
+
#: entry_detail.php:1211
|
7048 |
+
#@ gravityforms
|
7049 |
+
msgid "Submitted on"
|
7050 |
+
msgstr "ارسال شده در"
|
7051 |
+
|
7052 |
+
#: includes/addon/class-gf-payment-addon.php:1474
|
7053 |
+
#: includes/addon/class-gf-payment-addon.php:1548
|
7054 |
+
#@ gravityforms
|
7055 |
+
msgid "Subscription"
|
7056 |
+
msgstr "پرداخت هزینه عضویت"
|
7057 |
+
|
7058 |
+
#: entry_detail.php:59
|
7059 |
+
#: entry_detail.php:1076
|
7060 |
+
#@ gravityforms
|
7061 |
+
msgid "Subscription Details"
|
7062 |
+
msgstr "جزییات اشتراک"
|
7063 |
+
|
7064 |
+
#: entry_detail.php:1135
|
7065 |
+
#@ gravityforms
|
7066 |
+
msgid "Subscription Id"
|
7067 |
+
msgstr "شماره اشتراک"
|
7068 |
+
|
7069 |
+
#: includes/addon/class-gf-payment-addon.php:513
|
7070 |
+
#, php-format
|
7071 |
+
#@ gravityforms
|
7072 |
+
msgid "Subscription failed to be created. Reason: %s"
|
7073 |
+
msgstr "ایجاد عضویت ناموفق بود . دلیل : %s"
|
7074 |
+
|
7075 |
+
#: includes/addon/class-gf-payment-addon.php:1358
|
7076 |
+
#, php-format
|
7077 |
+
#@ gravityforms
|
7078 |
+
msgid "Subscription has been cancelled. Subscription Id: %s."
|
7079 |
+
msgstr "وضعیت عضویت : لغو شده . شماره اشتراک : %s . "
|
7080 |
+
|
7081 |
+
#: includes/addon/class-gf-payment-addon.php:1209
|
7082 |
+
#, php-format
|
7083 |
+
#@ gravityforms
|
7084 |
+
msgid "Subscription has been created. Subscription Id: %s."
|
7085 |
+
msgstr "ایجاد عضویت انجام شد . شماره اشتراک : %s ."
|
7086 |
+
|
7087 |
+
#: includes/addon/class-gf-payment-addon.php:1253
|
7088 |
+
#, php-format
|
7089 |
+
#@ gravityforms
|
7090 |
+
msgid "Subscription has been paid. Amount: %s. Subscription Id: %s"
|
7091 |
+
msgstr "هزینه عضویت پرداخت شد . مبلغ : %s . شماره اشتراک : %s"
|
7092 |
+
|
7093 |
+
#: includes/addon/class-gf-payment-addon.php:1391
|
7094 |
+
#, php-format
|
7095 |
+
#@ gravityforms
|
7096 |
+
msgid "Subscription has expired. Subscriber Id: %s"
|
7097 |
+
msgstr "وضعیت عضویت : منقضی . شماره اشتراک : %s"
|
7098 |
+
|
7099 |
+
#: includes/addon/class-gf-payment-addon.php:1303
|
7100 |
+
#, php-format
|
7101 |
+
#@ gravityforms
|
7102 |
+
msgid "Subscription payment has failed. Amount: %s. Subscription Id: %s."
|
7103 |
+
msgstr "وضعیت عضویت : ناموفق . مبلغ : %s . شماره اشتراک : %s"
|
7104 |
+
|
7105 |
+
#: includes/addon/class-gf-payment-addon.php:2076
|
7106 |
+
#@ gravityforms
|
7107 |
+
msgid "Subscriptions"
|
7108 |
+
msgstr "اشتراک ها"
|
7109 |
+
|
7110 |
+
#: includes/webapi/webapi.php:964
|
7111 |
+
#: includes/webapi/webapi.php:995
|
7112 |
+
#@ gravityforms
|
7113 |
+
msgid "Success"
|
7114 |
+
msgstr "با موفقیت انجام شد"
|
7115 |
+
|
7116 |
+
#: includes/fields/class-gf-field-name.php:121
|
7117 |
+
#: js.php:869
|
7118 |
+
#@ gravityforms
|
7119 |
+
msgid "Suffix"
|
7120 |
+
msgstr "پسوند"
|
7121 |
+
|
7122 |
+
#: form_detail.php:1458
|
7123 |
+
#@ gravityforms
|
7124 |
+
msgid "Sunday"
|
7125 |
+
msgstr "یکشنبه"
|
7126 |
+
|
7127 |
+
#: settings.php:286
|
7128 |
+
#@ gravityforms
|
7129 |
+
msgid "Support License Key"
|
7130 |
+
msgstr "لایسنس پشتیبانی"
|
7131 |
+
|
7132 |
+
#: form_detail.php:1616
|
7133 |
+
#@ gravityforms
|
7134 |
+
msgid "Supported Credit Cards"
|
7135 |
+
msgstr "پشتیبانی از کارت اعتباری"
|
7136 |
+
|
7137 |
+
#: gravityforms.php:3892
|
7138 |
+
#@ gravityforms
|
7139 |
+
msgid "Switch Form"
|
7140 |
+
msgstr "تغییر فرم"
|
7141 |
+
|
7142 |
+
#: widget.php:151
|
7143 |
+
#@ gravityforms
|
7144 |
+
msgid "Tab Index Start"
|
7145 |
+
msgstr "شروع تب شاخص (Tab Index Start)"
|
7146 |
+
|
7147 |
+
#: tooltips.php:163
|
7148 |
+
#@ gravityforms
|
7149 |
+
msgid "Tab Index Start Value"
|
7150 |
+
msgstr "مقدار شروع Tab Index"
|
7151 |
+
|
7152 |
+
#: includes/fields/class-gf-field-post-tags.php:12
|
7153 |
+
#@ gravityforms
|
7154 |
+
msgid "Tags"
|
7155 |
+
msgstr "برچسب ها"
|
7156 |
+
|
7157 |
+
#: includes/locking/class-gf-locking.php:490
|
7158 |
+
#@ gravityforms
|
7159 |
+
msgid "Take Over"
|
7160 |
+
msgstr "بیش تر از"
|
7161 |
+
|
7162 |
+
#: form_detail.php:1456
|
7163 |
+
#@ gravityforms
|
7164 |
+
msgid "Technology"
|
7165 |
+
msgstr "فناوری"
|
7166 |
+
|
7167 |
+
#: form_detail.php:1456
|
7168 |
+
#@ gravityforms
|
7169 |
+
msgid "Telecommunications"
|
7170 |
+
msgstr "ارتباطات"
|
7171 |
+
|
7172 |
+
#: form_detail.php:1455
|
7173 |
+
#@ gravityforms
|
7174 |
+
msgid "Temporary"
|
7175 |
+
msgstr "موقت"
|
7176 |
+
|
7177 |
+
#: form_settings.php:497
|
7178 |
+
#: form_settings.php:1255
|
7179 |
+
#: form_settings.php:1946
|
7180 |
+
#@ gravityforms
|
7181 |
+
msgid "Text"
|
7182 |
+
msgstr "متن"
|
7183 |
+
|
7184 |
+
#: form_detail.php:274
|
7185 |
+
#@ gravityforms
|
7186 |
+
msgid "Text Color"
|
7187 |
+
msgstr "رنگ متن"
|
7188 |
+
|
7189 |
+
#: form_detail.php:687
|
7190 |
+
#: form_detail.php:725
|
7191 |
+
#@ gravityforms
|
7192 |
+
msgid "Text:"
|
7193 |
+
msgstr "متن :"
|
7194 |
+
|
7195 |
+
#: form_settings.php:1679
|
7196 |
+
#@ gravityforms
|
7197 |
+
msgid "Thank you for saving {form_title}. Please use the unique link below to return to the form from any computer. <br /><br /> {save_link} <br /><br /> Remember that the link will expire after 30 days so please return via the provided link to complete your form submission."
|
7198 |
+
msgstr "برای ذخیره کردن فرم {form_title} متشکریم. لطفاً از لینک منحصر به فرد زیر برای برگشت به فرم استفاده کنید.<br /><br /> {save_link} <br /><br /> به خاطر داشته باشید که این لینک بعد از 30 روز منقضی می شود بنابراین برای تکمیل و ارسال فرم دوباره برگردید."
|
7199 |
+
|
7200 |
+
#: common.php:3777
|
7201 |
+
#: common.php:3807
|
7202 |
+
#: form_detail.php:2893
|
7203 |
+
#@ gravityforms
|
7204 |
+
msgid "Thanks for contacting us! We will get in touch with you shortly."
|
7205 |
+
msgstr "از تماس شما متشکریم! به زودی با شما تماس می گیریم."
|
7206 |
+
|
7207 |
+
#: gravityforms.php:3330
|
7208 |
+
#, php-format
|
7209 |
+
#@ gravityforms
|
7210 |
+
msgid "The %sSend To%s email address provided is not valid."
|
7211 |
+
msgstr "آدرس ایمیل در قسمت %s ارسال به %s نامعتبر می باشد."
|
7212 |
+
|
7213 |
+
#: includes/fields/class-gf-field-captcha.php:42
|
7214 |
+
#: includes/fields/class-gf-field-captcha.php:79
|
7215 |
+
#@ gravityforms
|
7216 |
+
msgid "The CAPTCHA wasn't entered correctly. Go back and try it again."
|
7217 |
+
msgstr "CAPTCHA وارد شده صحیح نمی باشد . مجددا تلاش نمایید ."
|
7218 |
+
|
7219 |
+
#: includes/webapi/webapi.php:174
|
7220 |
+
#: includes/webapi/webapi.php:195
|
7221 |
+
#@ gravityforms
|
7222 |
+
msgid "The Gravity Forms API allows developers to interact with this install via a JSON REST API."
|
7223 |
+
msgstr "API گرویتی فرم به توسعه دهندگان اجازه تعامل از طریق JSON REST API را می دهد ."
|
7224 |
+
|
7225 |
+
#: tooltips.php:101
|
7226 |
+
#@ gravityforms
|
7227 |
+
msgid "The Placeholder will not be submitted along with the form. Use the Placeholder to give a hint at the expected value or format."
|
7228 |
+
msgstr "نگهدارنده های متن همراه با فرم ارسال نمی شوند. از نگه دارنده ها برای راهنمایی درباره مقادیر و قالب ها استفاده کنید."
|
7229 |
+
|
7230 |
+
#: includes/addon/class-gf-results.php:345
|
7231 |
+
#@ gravityforms
|
7232 |
+
msgid "The aggregate rank is the overall rank for all entries based on the weighted scores for each item."
|
7233 |
+
msgstr "رتبه جمع شده رتبه کلی همه پیام های ورودی براساس امتیازهای وزن شده برای هر آیتم هستند ."
|
7234 |
+
|
7235 |
+
#: includes/addon/class-gf-results.php:348
|
7236 |
+
#@ gravityforms
|
7237 |
+
msgid "The average (mean) score for each row: the sum of all the scores for each row divided by the total number of entries."
|
7238 |
+
msgstr "میانگین امتیاز برای هر سطر : مجموع همه امتیارات یک سطر تقسیم بر تعداد کل ورودی ها."
|
7239 |
+
|
7240 |
+
#: includes/addon/class-gf-results.php:349
|
7241 |
+
#@ gravityforms
|
7242 |
+
msgid "The average (mean) score for the whole field. The sum of the total scores divided by the number of entries."
|
7243 |
+
msgstr "میانگین امتیاز برای تمام فیلد : مجموع امتیازات کل تقسیم بر تعداد ورودی ها."
|
7244 |
+
|
7245 |
+
#: includes/addon/class-gf-results.php:350
|
7246 |
+
#@ gravityforms
|
7247 |
+
msgid "The average (mean) score: The sum of the scores divided by the number of entries."
|
7248 |
+
msgstr "میانگین امتیاز : مجموع امتیازات تقسیم بر تعداد ورودی ها."
|
7249 |
+
|
7250 |
+
#: includes/api.php:777
|
7251 |
+
#@ gravityforms
|
7252 |
+
msgid "The entry object must be an array"
|
7253 |
+
msgstr "موضوع پیام ورودی باید به صورت آرایه باشد"
|
7254 |
+
|
7255 |
+
#: includes/api.php:608
|
7256 |
+
#: includes/api.php:787
|
7257 |
+
#@ gravityforms
|
7258 |
+
msgid "The form for this entry does not exist"
|
7259 |
+
msgstr "فرمی برای این پیام ورودی وجود ندارد"
|
7260 |
+
|
7261 |
+
#: includes/api.php:783
|
7262 |
+
#@ gravityforms
|
7263 |
+
msgid "The form id must be specified"
|
7264 |
+
msgstr "شماره فرم باید مشخص شده باشد"
|
7265 |
+
|
7266 |
+
#: includes/api.php:325
|
7267 |
+
#@ gravityforms
|
7268 |
+
msgid "The form title is missing"
|
7269 |
+
msgstr "عنوان فرم از دست رفته است"
|
7270 |
+
|
7271 |
+
#: form_settings.php:311
|
7272 |
+
#@ gravityforms
|
7273 |
+
msgid "The form title you have entered has already been used. Please enter a unique form title."
|
7274 |
+
msgstr "این عنوان فرم وارد شده ، قبلا به کار رفته است . عنوان فرم می بایست منحصر به فرد باشد ."
|
7275 |
+
|
7276 |
+
#: js.php:426
|
7277 |
+
#@ gravityforms
|
7278 |
+
msgid "The form title you have entered is already taken. Please enter a unique form title"
|
7279 |
+
msgstr "نامی که برای عنوان وارد کرده اید قبلا استفاده شده است. لطفاً یک نام یکتا برای عنوان فرم وارد کنید"
|
7280 |
+
|
7281 |
+
#: form_detail.php:176
|
7282 |
+
#@ gravityforms
|
7283 |
+
msgid "The form title you have entered is already taken. Please enter a unique form title."
|
7284 |
+
msgstr "عنوانی که برای فرم وارد کرده اید قبلا استفاده شده است. لطفاً یک عنوان واحد وارد نمایید."
|
7285 |
+
|
7286 |
+
#: form_detail.php:1817
|
7287 |
+
#@ gravityforms
|
7288 |
+
msgid "The formula appears to be valid."
|
7289 |
+
msgstr "این فرمول به ظاهر معتبر است."
|
7290 |
+
|
7291 |
+
#: settings.php:303
|
7292 |
+
#@ gravityforms
|
7293 |
+
msgid "The license key is used for access to automatic upgrades and support."
|
7294 |
+
msgstr "کد لایسنس که برای دسترسی خودکار به بروزرسانی و پشتیبانی استفاده شده است."
|
7295 |
+
|
7296 |
+
#: form_settings.php:1713
|
7297 |
+
#@ gravityforms
|
7298 |
+
msgid "The link was sent to the following email address: {save_email}"
|
7299 |
+
msgstr "لینک ادمه به ایمیل زیر ارسال شد : {save_email}"
|
7300 |
+
|
7301 |
+
#: includes/webapi/webapi.php:212
|
7302 |
+
#@ gravityforms
|
7303 |
+
msgid "The settings below are only required to authenticate external applications. WordPress cookie authentication is supported for logged in users."
|
7304 |
+
msgstr "تنظیمات زیر به تایید هویت برنامه خارجی نیاز دارند. تایید هویت کوکی وردپرس از کاربران وارد شده پشتیبانی می کند."
|
7305 |
+
|
7306 |
+
#: includes/addon/class-gf-payment-addon.php:2494
|
7307 |
+
#@ gravityforms
|
7308 |
+
msgid "The subscription could not be canceled. Please try again later."
|
7309 |
+
msgstr "این اشتراک نمی تواند لغو شود . لطفاً دوباره تلاش کنید."
|
7310 |
+
|
7311 |
+
#: includes/fields/class-gf-field-fileupload.php:79
|
7312 |
+
#: includes/fields/class-gf-field-fileupload.php:95
|
7313 |
+
#: includes/upload.php:104
|
7314 |
+
#@ gravityforms
|
7315 |
+
msgid "The uploaded file type is not allowed."
|
7316 |
+
msgstr "نوع فایل بارگذاری شده غیر مجاز است ."
|
7317 |
+
|
7318 |
+
#: includes/fields/class-gf-field-fileupload.php:101
|
7319 |
+
#: includes/upload.php:110
|
7320 |
+
#, php-format
|
7321 |
+
#@ gravityforms
|
7322 |
+
msgid "The uploaded file type is not allowed. Must be one of the following: %s"
|
7323 |
+
msgstr "نوع فایل بارگذاری شده غیر مجاز است . و می بایست همانند یکی از موارد زیر باشد : %s"
|
7324 |
+
|
7325 |
+
#: form_detail.php:850
|
7326 |
+
#@ gravityforms
|
7327 |
+
msgid "Theme"
|
7328 |
+
msgstr "قالب"
|
7329 |
+
|
7330 |
+
#: form_detail.php:1817
|
7331 |
+
#@ gravityforms
|
7332 |
+
msgid "There appears to be a problem with the formula."
|
7333 |
+
msgstr "به نظر می رسد این فرمول دارای مشکل است."
|
7334 |
+
|
7335 |
+
#: form_list.php:699
|
7336 |
+
#@ gravityforms
|
7337 |
+
msgid "There are no forms in the trash."
|
7338 |
+
msgstr "هیچ فرمی در زباله دان یافت نشد."
|
7339 |
+
|
7340 |
+
#: common.php:3805
|
7341 |
+
#@ gravityforms
|
7342 |
+
msgid "There are unsaved changes to the current confirmation. Would you like to discard these changes?"
|
7343 |
+
msgstr "تغییرات اعمالی ذخیره نشده اند . آیا مایل به از دست دادن تغییرات هستید؟"
|
7344 |
+
|
7345 |
+
#: includes/addon/class-gf-payment-addon.php:1958
|
7346 |
+
#@ gravityforms
|
7347 |
+
msgid "There aren't any transactions that match your criteria."
|
7348 |
+
msgstr "تراکنشی مطابق با معیار شما یافت نشد ."
|
7349 |
+
|
7350 |
+
#: includes/addon/class-gf-payment-addon.php:2883
|
7351 |
+
#@ gravityforms
|
7352 |
+
msgid "There hasn't been any sales in the specified date range."
|
7353 |
+
msgstr "هیچ فروشی در بازه زمانی مشخص شده وجود ندارد ."
|
7354 |
+
|
7355 |
+
#: includes/addon/class-gf-auto-upgrade.php:239
|
7356 |
+
#, php-format
|
7357 |
+
#@ gravityforms
|
7358 |
+
msgid "There is a new version of %1$s available. %s."
|
7359 |
+
msgstr "نسخه جدید %1$s موجود است. %s."
|
7360 |
+
|
7361 |
+
#: includes/addon/class-gf-auto-upgrade.php:62
|
7362 |
+
#, php-format
|
7363 |
+
#@ gravityforms
|
7364 |
+
msgid "There is a new version of %s available."
|
7365 |
+
msgstr "نسخه جدید %s موجود است."
|
7366 |
+
|
7367 |
+
#: gravityforms.php:2197
|
7368 |
+
#: update.php:51
|
7369 |
+
#@ gravityforms
|
7370 |
+
msgid "There is a new version of Gravity Forms available."
|
7371 |
+
msgstr "نسخه جدید Gravity Forms موجود است."
|
7372 |
+
|
7373 |
+
#: includes/api.php:848
|
7374 |
+
#@ gravityforms
|
7375 |
+
msgid "There was a problem while inserting one of the input values for the entry"
|
7376 |
+
msgstr "در حین قرار دادن یکی از مقادیر فیلدها برای این پیام ورودی مشکلی رخ داده است"
|
7377 |
+
|
7378 |
+
#: includes/api.php:827
|
7379 |
+
#@ gravityforms
|
7380 |
+
msgid "There was a problem while inserting the entry properties"
|
7381 |
+
msgstr "در حین قرار دادن خصوصیات پیام ورودی مشکلی رخ داده است"
|
7382 |
+
|
7383 |
+
#: includes/api.php:857
|
7384 |
+
#@ gravityforms
|
7385 |
+
msgid "There was a problem while inserting the field values"
|
7386 |
+
msgstr "در حین قرار دادن مقادیر پیام ورودی مشکلی رخ داده است"
|
7387 |
+
|
7388 |
+
#: includes/api.php:360
|
7389 |
+
#@ gravityforms
|
7390 |
+
msgid "There was a problem while inserting the form"
|
7391 |
+
msgstr "در حین قرار دادن فرم مشکلی بوجود آمده است"
|
7392 |
+
|
7393 |
+
#: common.php:4407
|
7394 |
+
#@ gravityforms
|
7395 |
+
msgid "There was a problem while saving the file on the server"
|
7396 |
+
msgstr "هنگام ذخیره فایل برروی سرور خطایی رخ داده است"
|
7397 |
+
|
7398 |
+
#: includes/api.php:695
|
7399 |
+
#@ gravityforms
|
7400 |
+
msgid "There was a problem while updating one of the input values for the entry"
|
7401 |
+
msgstr "در حین بروز رسانی یکی از مقادیر فیلد ورودی این ورودی مشکلی رخ داده است"
|
7402 |
+
|
7403 |
+
#: includes/api.php:668
|
7404 |
+
#@ gravityforms
|
7405 |
+
msgid "There was a problem while updating the entry properties"
|
7406 |
+
msgstr "در حین بروز رسانی خصوصیات فرم مشکلی رخ داده است"
|
7407 |
+
|
7408 |
+
#: includes/api.php:708
|
7409 |
+
#: includes/api.php:744
|
7410 |
+
#@ gravityforms
|
7411 |
+
msgid "There was a problem while updating the field values"
|
7412 |
+
msgstr "در حین بروز رسانی مقادیر فیلد ورودی مشکلی رخ داده است"
|
7413 |
+
|
7414 |
+
#: form_display.php:910
|
7415 |
+
#@ gravityforms
|
7416 |
+
msgid "There was a problem with your submission."
|
7417 |
+
msgstr "مشکلی با این ارسال پیش آمده است."
|
7418 |
+
|
7419 |
+
#: includes/addon/class-gf-feed-addon.php:1015
|
7420 |
+
#@ gravityforms
|
7421 |
+
msgid "There was an error updating this feed. Please review all errors below and try again."
|
7422 |
+
msgstr "در حین بروزرسانی این خوراک خطایی رخ داده است . لطفاً خطاها را بررسی نمایید یا مجددا تلاش نمایید ."
|
7423 |
+
|
7424 |
+
#: includes/addon/class-gf-results.php:396
|
7425 |
+
#@ gravityforms
|
7426 |
+
msgid "There was an error while processing the entries. Please contact support."
|
7427 |
+
msgstr "یک خطا در حین پردازش پیام های ورودی رخ داده است . با پشتیبانی تماس بگیرید ."
|
7428 |
+
|
7429 |
+
#: includes/api.php:1045
|
7430 |
+
#: includes/api.php:1049
|
7431 |
+
#@ gravityforms
|
7432 |
+
msgid "There was an error while processing the form:"
|
7433 |
+
msgstr "خطایی در هنگام پردازش فرم بوجود آمده است."
|
7434 |
+
|
7435 |
+
#: gravityforms.php:3320
|
7436 |
+
#@ gravityforms
|
7437 |
+
msgid "There was an error while resending the notifications."
|
7438 |
+
msgstr "در هنگام ارسال دوباره اعلان خطایی رخ داده است ."
|
7439 |
+
|
7440 |
+
#: form_detail.php:167
|
7441 |
+
#: form_detail.php:2500
|
7442 |
+
#: form_settings.php:300
|
7443 |
+
#@ gravityforms
|
7444 |
+
msgid "There was an error while saving your form."
|
7445 |
+
msgstr "در حین ذخیره فرم خطایی رخ داده است."
|
7446 |
+
|
7447 |
+
#: includes/addon/class-gf-addon.php:1293
|
7448 |
+
#@ gravityforms
|
7449 |
+
msgid "There was an error while saving your settings"
|
7450 |
+
msgstr "در هنگام ذخیره تنظیمات خطایی رخ داده است ."
|
7451 |
+
|
7452 |
+
#: includes/fields/class-gf-field-fileupload.php:55
|
7453 |
+
#, php-format
|
7454 |
+
#@ gravityforms
|
7455 |
+
msgid "There was an error while uploading the file. Error code: %d"
|
7456 |
+
msgstr "یک خطا در حین بارگذاری فایل رخ داده است . کد خطا : %d"
|
7457 |
+
|
7458 |
+
#: settings.php:293
|
7459 |
+
#@ gravityforms
|
7460 |
+
msgid "There was an error while validating your license key. Gravity Forms will continue to work, but automatic upgrades will not be available. Please contact support to resolve this issue."
|
7461 |
+
msgstr "مشکلی در هنگام تایید لایسنس شما وجود دارد.Gravity Formsکار می کند اما بروزرسانی خودکار موجود نیست. لطفاً برای حل این مشکل با پشتیبانی تماس بگیرید."
|
7462 |
+
|
7463 |
+
#: form_list.php:234
|
7464 |
+
#: form_list.php:254
|
7465 |
+
#@ gravityforms
|
7466 |
+
msgid "There was an issue creating your form."
|
7467 |
+
msgstr "یک مشکل در حین ایجاد این فرم رخ داده است ."
|
7468 |
+
|
7469 |
+
#: common.php:3804
|
7470 |
+
#: form_settings.php:1585
|
7471 |
+
#@ gravityforms
|
7472 |
+
msgid "There was an issue deleting this confirmation."
|
7473 |
+
msgstr "مشکلی در هنگام حذف کردن رخ داده است ."
|
7474 |
+
|
7475 |
+
#: notification.php:639
|
7476 |
+
#@ gravityforms
|
7477 |
+
msgid "There was an issue deleting this notification."
|
7478 |
+
msgstr "مشکلی برای حذف این اعلان وجود دارد."
|
7479 |
+
|
7480 |
+
#: notification.php:647
|
7481 |
+
#@ gravityforms
|
7482 |
+
msgid "There was an issue duplicating this notification."
|
7483 |
+
msgstr "مشکلی در تکثیر این اعلان وجود دارد."
|
7484 |
+
|
7485 |
+
#: common.php:3802
|
7486 |
+
#: form_settings.php:1565
|
7487 |
+
#@ gravityforms
|
7488 |
+
msgid "There was an issue saving this confirmation."
|
7489 |
+
msgstr "یک مشکلی در ذخیره رخ داده است ."
|
7490 |
+
|
7491 |
+
#: includes/locking/locking.php:107
|
7492 |
+
#, php-format
|
7493 |
+
#@ gravityforms
|
7494 |
+
msgid "These form settings are currently locked. Click on the \"Request Control\" button to let %s know you'd like to take over."
|
7495 |
+
msgstr "تنظیمات این فرم در حال حاضر قفل می باشد . بر روی دکمه ی درخواست کنترل کلیک نمایید تا بعدا %s به شما اجازه دهد ."
|
7496 |
+
|
7497 |
+
#: includes/locking/locking.php:149
|
7498 |
+
#, php-format
|
7499 |
+
#@ gravityforms
|
7500 |
+
msgid "These settings are currently locked. Click on the \"Request Control\" button to let %s know you'd like to take over."
|
7501 |
+
msgstr "این تنظیمات در حال حاضر قفل می باشد . بر روی دکمه ی درخواست کنترل کلیک نمایید تا بعدا %s به شما اجازه دهد ."
|
7502 |
+
|
7503 |
+
#: js.php:592
|
7504 |
+
#: js.php:606
|
7505 |
+
#: js.php:607
|
7506 |
+
#: js.php:618
|
7507 |
+
#: js.php:619
|
7508 |
+
#@ gravityforms
|
7509 |
+
msgid "Third Choice"
|
7510 |
+
msgstr "انتخاب سوم"
|
7511 |
+
|
7512 |
+
#: js.php:789
|
7513 |
+
#@ gravityforms
|
7514 |
+
msgid "Third Option"
|
7515 |
+
msgstr "گزینه سوم"
|
7516 |
+
|
7517 |
+
#: includes/addon/class-gf-addon.php:3850
|
7518 |
+
#@ gravityforms
|
7519 |
+
msgid "This add-on needs to be updated. Please contact the developer."
|
7520 |
+
msgstr "این افزودنی نیاز به آپدیت دارد. لطفاً با توسعه دهنده تماس بگیرید."
|
7521 |
+
|
7522 |
+
#: js.php:37
|
7523 |
+
#@ gravityforms
|
7524 |
+
msgid "This custom choice name is already in use. Please enter another name."
|
7525 |
+
msgstr "این نام برای گزینه سفارشی قبلاً استفاده شده است. لطفاً یک نام دیگر وارد کنید."
|
7526 |
+
|
7527 |
+
#: form_display.php:1561
|
7528 |
+
#@ gravityforms
|
7529 |
+
msgid "This date has already been taken. Please select a new date."
|
7530 |
+
msgstr "این تاریخ قبلاً انتخاب شده است. لطفاً تاریخ جدیدی را انتخاب نمایید ."
|
7531 |
+
|
7532 |
+
#: includes/locking/locking.php:61
|
7533 |
+
#, php-format
|
7534 |
+
#@ gravityforms
|
7535 |
+
msgid "This entry is currently locked. Click on the \"Request Control\" button to let %s know you'd like to take over."
|
7536 |
+
msgstr "این پیام ورودی در حال حاضر قفل می باشد . بر روی دکمه ی درخواست کنترل کلیک نمایید تا بعدا %s به شما اجازه دهد ."
|
7537 |
+
|
7538 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:24
|
7539 |
+
#@ gravityforms
|
7540 |
+
msgid "This feature is activated by default unless you opt to disable it below. We only recommend disabling background updates if you intend on managing updates manually."
|
7541 |
+
msgstr "این قابلیت به صورت پیش فرض فعال است مگر اینکه شما آن را از تنظیمات زیر غیر فعال کنید. توصیه می شود فقط در حالتی که قصد دارید بروزرسانی ها را به صورت دستی مدیریت کنید بروزرسانی خودکار را غیرفعال کنید."
|
7542 |
+
|
7543 |
+
#: form_settings.php:598
|
7544 |
+
#@ gravityforms
|
7545 |
+
msgid "This feature stores potentially private and sensitive data on this server and protects it with a unique link which is displayed to the user on the page in plain, unencrypted text. The link is similar to a password so it's strongly advisable to ensure that the page enforces a secure connection (HTTPS) before activating this setting."
|
7546 |
+
msgstr "این ویژگی اطلاعات حساس و خصوصی را بر روی سرور ذخیره می کند و با استفاده از یک لینک منحصر به فرد محافظت می شود که به کاربر به صورت ساده و کد نشده نمایش داده می شود. این لینک شبیه پسورد عمل می کند بنابراین شدیداً توصیه می شود که قبل از فعال سازی این تنظیمات از اجرای امن صفحه (HTTPS ) اطمینان داشته باشید."
|
7547 |
+
|
7548 |
+
#: form_display.php:1252
|
7549 |
+
#@ gravityforms
|
7550 |
+
msgid "This field is for validation purposes and should be left unchanged."
|
7551 |
+
msgstr "این فیلد برای اعتبار سنجی است و باید بدون تغییر باقی بماند ."
|
7552 |
+
|
7553 |
+
#: js.php:355
|
7554 |
+
#@ gravityforms
|
7555 |
+
msgid "This field is not associated with a product. Please add a Product Field to the form."
|
7556 |
+
msgstr "این فیلد ارتباطی با یک محصول ندارد. لطفاً یک فیلد محصول به فرم اضافه کنید."
|
7557 |
+
|
7558 |
+
#: form_display.php:1552
|
7559 |
+
#: includes/addon/class-gf-addon.php:3056
|
7560 |
+
#: includes/fields/class-gf-field-calculation.php:32
|
7561 |
+
#: includes/fields/class-gf-field-hiddenproduct.php:28
|
7562 |
+
#: includes/fields/class-gf-field-radio.php:45
|
7563 |
+
#: includes/fields/class-gf-field-singleproduct.php:34
|
7564 |
+
#: includes/fields/class-gf-field-website.php:44
|
7565 |
+
#@ gravityforms
|
7566 |
+
msgid "This field is required."
|
7567 |
+
msgstr "این فیلد ضروری است ."
|
7568 |
+
|
7569 |
+
#: includes/fields/class-gf-field-address.php:61
|
7570 |
+
#@ gravityforms
|
7571 |
+
msgid "This field is required. Please enter a complete address."
|
7572 |
+
msgstr "این فیلد ضروری است . لطفاً یک آدرس کامل وارد نمایید ."
|
7573 |
+
|
7574 |
+
#: includes/fields/class-gf-field-name.php:27
|
7575 |
+
#@ gravityforms
|
7576 |
+
msgid "This field is required. Please enter the first and last name."
|
7577 |
+
msgstr "این فیلد ضروری است . لطفاً نام و نام خانوادگی را وارد نمایید."
|
7578 |
+
|
7579 |
+
#: form_display.php:1566
|
7580 |
+
#, php-format
|
7581 |
+
#@ gravityforms
|
7582 |
+
msgid "This field requires a unique entry and '%s' has already been used"
|
7583 |
+
msgstr "این فیلد نیازمند یک ورودی واحد است و '%s' قبلا استفاده شده است ."
|
7584 |
+
|
7585 |
+
#: common.php:3813
|
7586 |
+
#@ gravityforms
|
7587 |
+
msgid "This form contains conditional logic dependent upon this choice. Are you sure you want to delete this choice? 'OK' to delete, 'Cancel' to abort."
|
7588 |
+
msgstr "این فرم شامل یک منطق شرطی وابسته به این انتخاب می باشد . آیا برای حذف این انتخاب اطمینان دارید ؟ برای حذف برروی OK و برای انصراف برروی Cancel کلیک کنید."
|
7589 |
+
|
7590 |
+
#: common.php:3814
|
7591 |
+
#@ gravityforms
|
7592 |
+
msgid "This form contains conditional logic dependent upon this choice. Are you sure you want to modify this choice? 'OK' to delete, 'Cancel' to abort."
|
7593 |
+
msgstr "این فرم شامل یک منطق شرطی وابسته به این انتخاب می باشد . آیا برای تغییر این انتخاب اطمینان دارید ؟ برای حذف برروی OK و برای انصراف برروی Cancel کلیک کنید."
|
7594 |
+
|
7595 |
+
#: common.php:3812
|
7596 |
+
#@ gravityforms
|
7597 |
+
msgid "This form contains conditional logic dependent upon this field. Are you sure you want to delete this field? 'OK' to delete, 'Cancel' to abort."
|
7598 |
+
msgstr "این فرم شامل یک منطق شرطی وابسته به این فیلد می باشد . آیا برای حذف این فیلد اطمینان دارید ؟ برای حذف برروی OK و برای انصراف برروی Cancel کلیک کنید."
|
7599 |
+
|
7600 |
+
#: entry_list.php:986
|
7601 |
+
#@ gravityforms
|
7602 |
+
msgid "This form does not have any entries in the trash matching the search criteria."
|
7603 |
+
msgstr "این فرم هیچ پیام ورودی هرزنامه مطابق با جستجوی شما ندارد."
|
7604 |
+
|
7605 |
+
#: entry_list.php:986
|
7606 |
+
#@ gravityforms
|
7607 |
+
msgid "This form does not have any entries in the trash."
|
7608 |
+
msgstr "این فرم هیچ پیام ورودی موجود در زباله دان ندارد."
|
7609 |
+
|
7610 |
+
#: entry_list.php:990
|
7611 |
+
#@ gravityforms
|
7612 |
+
msgid "This form does not have any entries matching the search criteria."
|
7613 |
+
msgstr "این فرم هیچ پیام ورودی مطابق با جستجوی شما ندارد."
|
7614 |
+
|
7615 |
+
#: entry_list.php:990
|
7616 |
+
#@ gravityforms
|
7617 |
+
msgid "This form does not have any entries yet."
|
7618 |
+
msgstr "این فرم هنوز هیچ پیام ورودی ندارد."
|
7619 |
+
|
7620 |
+
#: includes/addon/class-gf-results.php:335
|
7621 |
+
#@ gravityforms
|
7622 |
+
msgid "This form does not have any fields that can be used for results"
|
7623 |
+
msgstr "این فرم هیچ فیلدی که بتواند برای نتایج بکار برود را ندارد ."
|
7624 |
+
|
7625 |
+
#: entry_list.php:982
|
7626 |
+
#@ gravityforms
|
7627 |
+
msgid "This form does not have any spam."
|
7628 |
+
msgstr "این فرم هیچ پیام ورودی هرزنامه ندارد."
|
7629 |
+
|
7630 |
+
#: entry_list.php:978
|
7631 |
+
#@ gravityforms
|
7632 |
+
msgid "This form does not have any starred entries matching the search criteria."
|
7633 |
+
msgstr "این فرم هیچ پیام ورودی ستاره دار مطابق با جستجوی شما ندارد."
|
7634 |
+
|
7635 |
+
#: entry_list.php:978
|
7636 |
+
#@ gravityforms
|
7637 |
+
msgid "This form does not have any starred entries."
|
7638 |
+
msgstr "این فرم هیچ پیام ورودی ستاره دار ندارد."
|
7639 |
+
|
7640 |
+
#: entry_list.php:974
|
7641 |
+
#@ gravityforms
|
7642 |
+
msgid "This form does not have any unread entries matching the search criteria."
|
7643 |
+
msgstr "این فرم هیچ پیام ورودی خوانده نشده مطابق با جستجوی شما ندارد."
|
7644 |
+
|
7645 |
+
#: entry_list.php:974
|
7646 |
+
#@ gravityforms
|
7647 |
+
msgid "This form does not have any unread entries."
|
7648 |
+
msgstr "این فرم هیچ پیام ورودی خوانده نشده ندارد."
|
7649 |
+
|
7650 |
+
#: form_detail.php:344
|
7651 |
+
#@ gravityforms
|
7652 |
+
msgid "This form doesn't have any fields yet. Follow the steps below to get started."
|
7653 |
+
msgstr "این فرم هنوز هیچ فیلدی ندارد . برای شروع مراحل زیر را دنبال کنید."
|
7654 |
+
|
7655 |
+
#: notification.php:1783
|
7656 |
+
#, php-format
|
7657 |
+
#@ gravityforms
|
7658 |
+
msgid "This form doesn't have any notifications. Let's go %screate one%s."
|
7659 |
+
msgstr " %s این فرم هیچ اعلانی ندارد. %s برای ساختن بروید."
|
7660 |
+
|
7661 |
+
#: includes/locking/locking.php:20
|
7662 |
+
#, php-format
|
7663 |
+
#@ gravityforms
|
7664 |
+
msgid "This form is currently locked. Click on the \"Request Control\" button to let %s know you'd like to take over."
|
7665 |
+
msgstr "این فرم در حال حاضر قفل می باشد . بر روی دکمه ی درخواست کنترل کلیک نمایید تا بعدا %s به شما اجازه دهد ."
|
7666 |
+
|
7667 |
+
#: form_display.php:2930
|
7668 |
+
#@ gravityforms
|
7669 |
+
msgid "This form is not yet available."
|
7670 |
+
msgstr "این فرم هنوز در دسترس نیست ."
|
7671 |
+
|
7672 |
+
#: includes/fields/class-gf-field-html.php:32
|
7673 |
+
#@ gravityforms
|
7674 |
+
msgid "This is a content placeholder. HTML content is not displayed in the form admin. Preview this form to view the content."
|
7675 |
+
msgstr "این یک نگه دارنده محتوا است . محتوای HTML در فرم مدیریت نمایش داده نمی شوند . برای مشاهده محتوا فرم را پیش نمایش کنید ."
|
7676 |
+
|
7677 |
+
#: settings.php:174
|
7678 |
+
#@ gravityforms
|
7679 |
+
msgid "This operation deletes ALL Gravity Forms data."
|
7680 |
+
msgstr "این کار باعث حذف تمام اطلاعات Gravity Forms می شود"
|
7681 |
+
|
7682 |
+
#: includes/locking/class-gf-locking.php:199
|
7683 |
+
#, php-format
|
7684 |
+
#@ gravityforms
|
7685 |
+
msgid "This page is currently locked. Click on the \"Request Control\" button to let %s know you'd like to take over."
|
7686 |
+
msgstr "این صفحه در حال حاضر قفل می باشد . بر روی دکمه ی درخواست کنترل کلیک نمایید تا بعدا %s به شما اجازه دهد ."
|
7687 |
+
|
7688 |
+
#: form_display.php:2781
|
7689 |
+
#@ gravityforms
|
7690 |
+
msgid "This page is unsecured. Do not enter a real credit card number! Use this field only for testing purposes. "
|
7691 |
+
msgstr "این صفحه نا امن است. شماره کارت واقعی را در این صفحه وارد نکنید! از این فیلد فقط برای تست استفاده کنید. "
|
7692 |
+
|
7693 |
+
#: common.php:4405
|
7694 |
+
#@ gravityforms
|
7695 |
+
msgid "This type of file is not allowed."
|
7696 |
+
msgstr "نوع فایل مجاز نمی باشد"
|
7697 |
+
|
7698 |
+
#: common.php:4401
|
7699 |
+
#@ gravityforms
|
7700 |
+
msgid "This type of file is not allowed. Must be one of the following: "
|
7701 |
+
msgstr "نوع فایل غیرمجاز می باشد . نوع فایل باید یکی از موارد زیر باشد : "
|
7702 |
+
|
7703 |
+
#: includes/addon/class-gf-payment-addon.php:850
|
7704 |
+
#, php-format
|
7705 |
+
#@ gravityforms
|
7706 |
+
msgid "This webhook has already been processed (Event Id: %s)"
|
7707 |
+
msgstr "این webhook با انجام شده است . (Event Id: %s)"
|
7708 |
+
|
7709 |
+
#: common.php:642
|
7710 |
+
#@ gravityforms
|
7711 |
+
msgid "Thumbnail"
|
7712 |
+
msgstr "تصویر بندانگشتی"
|
7713 |
+
|
7714 |
+
#: common.php:644
|
7715 |
+
#@ gravityforms
|
7716 |
+
msgid "Thumbnail - Centered"
|
7717 |
+
msgstr "تصویر بندانگشتی - تراز شده وسط"
|
7718 |
+
|
7719 |
+
#: common.php:643
|
7720 |
+
#@ gravityforms
|
7721 |
+
msgid "Thumbnail - Left Aligned"
|
7722 |
+
msgstr "تصویر بندانگشتی - تراز شده سمت چپ"
|
7723 |
+
|
7724 |
+
#: common.php:645
|
7725 |
+
#@ gravityforms
|
7726 |
+
msgid "Thumbnail - Right Aligned"
|
7727 |
+
msgstr "تصویر بندانگشتی - تراز شده سمت راست"
|
7728 |
+
|
7729 |
+
#: form_detail.php:1458
|
7730 |
+
#@ gravityforms
|
7731 |
+
msgid "Thursday"
|
7732 |
+
msgstr "پنجشنبه"
|
7733 |
+
|
7734 |
+
#: form_detail.php:770
|
7735 |
+
#: includes/fields/class-gf-field-time.php:13
|
7736 |
+
#: js.php:678
|
7737 |
+
#@ gravityforms
|
7738 |
+
msgid "Time"
|
7739 |
+
msgstr "زمان"
|
7740 |
+
|
7741 |
+
#: form_detail.php:1391
|
7742 |
+
#: tooltips.php:77
|
7743 |
+
#@ gravityforms
|
7744 |
+
msgid "Time Format"
|
7745 |
+
msgstr "قالب زمان"
|
7746 |
+
|
7747 |
+
#: form_detail.php:1100
|
7748 |
+
#: form_list.php:514
|
7749 |
+
#: gravityforms.php:2290
|
7750 |
+
#: includes/fields/class-gf-field-post-image.php:75
|
7751 |
+
#: includes/fields/class-gf-field-post-image.php:124
|
7752 |
+
#: includes/fields/class-gf-field-post-title.php:13
|
7753 |
+
#: widget.php:119
|
7754 |
+
#@ gravityforms
|
7755 |
+
msgid "Title"
|
7756 |
+
msgstr "عنوان"
|
7757 |
+
|
7758 |
+
#: form_detail.php:2130
|
7759 |
+
#@ gravityforms
|
7760 |
+
msgid "To activate this option, please add a field to be used as the source."
|
7761 |
+
msgstr "برای فعال سازی این گزینه لطفاً یک فیلد برای منبع اضافه کنید."
|
7762 |
+
|
7763 |
+
#: includes/addon/class-gf-feed-addon.php:1175
|
7764 |
+
#, php-format
|
7765 |
+
#@ gravityforms
|
7766 |
+
msgid "To get started, please configure your %s."
|
7767 |
+
msgstr "برای شروع لطفاً %s خود را پیکربندی کنید."
|
7768 |
+
|
7769 |
+
#: tooltips.php:52
|
7770 |
+
#@ gravityforms
|
7771 |
+
msgid "To pass field data to the confirmation page, build a Query String using the 'Insert Merge Tag' drop down. <a href='http://en.wikipedia.org/wiki/Query_string' target='_blank'>..more info on querystrings »</a>"
|
7772 |
+
msgstr "برای ارسال اطلاعات به صفحه تاییدیه با استفاده از \" قرار دادن برچسب ادغام\" یک Query String بسازید. <a href='http://en.wikipedia.org/wiki/Query_string' target='_blank'> اطلاعات بیشتر درباره Query String </a>"
|
7773 |
+
|
7774 |
+
#: js.php:67
|
7775 |
+
#: js.php:390
|
7776 |
+
#@ gravityforms
|
7777 |
+
msgid "To use conditional logic, please create a field that supports conditional logic."
|
7778 |
+
msgstr "برای استفاده از منطق شرطی یک فیلد بسازید که این نوع را پشتیبانی کند."
|
7779 |
+
|
7780 |
+
#: notification.php:869
|
7781 |
+
#@ gravityforms
|
7782 |
+
msgid "To use notification routing, your form must have a field supported by conditional logic."
|
7783 |
+
msgstr "برای استفاده از اعلان فرمتان باید فیلدی که منطق شرطی را پشتیبانی می کند داشته باشد."
|
7784 |
+
|
7785 |
+
#: includes/addon/class-gf-payment-addon.php:1918
|
7786 |
+
#@ gravityforms
|
7787 |
+
msgid "Today"
|
7788 |
+
msgstr "امروز"
|
7789 |
+
|
7790 |
+
#: form_detail.php:1935
|
7791 |
+
#: form_settings.php:377
|
7792 |
+
#@ gravityforms
|
7793 |
+
msgid "Top aligned"
|
7794 |
+
msgstr "تراز بالا"
|
7795 |
+
|
7796 |
+
#: common.php:1327
|
7797 |
+
#: entry_detail.php:1042
|
7798 |
+
#: gravityforms.php:2294
|
7799 |
+
#: includes/addon/class-gf-payment-addon.php:1921
|
7800 |
+
#: includes/fields/class-gf-field-total.php:24
|
7801 |
+
#: js.php:777
|
7802 |
+
#@ gravityforms
|
7803 |
+
msgid "Total"
|
7804 |
+
msgstr "مجموع"
|
7805 |
+
|
7806 |
+
#: includes/addon/class-gf-results.php:344
|
7807 |
+
#: includes/addon/class-gf-results.php:651
|
7808 |
+
#@ gravityforms
|
7809 |
+
msgid "Total Score"
|
7810 |
+
msgstr "مجموع امتیازها"
|
7811 |
+
|
7812 |
+
#: common.php:1431
|
7813 |
+
#@ gravityforms
|
7814 |
+
msgid "Total:"
|
7815 |
+
msgstr "مجموع: "
|
7816 |
+
|
7817 |
+
#: common.php:4308
|
7818 |
+
#@ gravityforms
|
7819 |
+
msgid "Transaction ID"
|
7820 |
+
msgstr "کد رهگیری"
|
7821 |
+
|
7822 |
+
#: entry_detail.php:1135
|
7823 |
+
#: export.php:854
|
7824 |
+
#: forms_model.php:4478
|
7825 |
+
#: select_columns.php:181
|
7826 |
+
#@ gravityforms
|
7827 |
+
msgid "Transaction Id"
|
7828 |
+
msgstr "کد رهگیری"
|
7829 |
+
|
7830 |
+
#: includes/addon/class-gf-payment-addon.php:1466
|
7831 |
+
#: includes/addon/class-gf-payment-addon.php:1536
|
7832 |
+
#: includes/addon/class-gf-payment-addon.php:1550
|
7833 |
+
#@ gravityforms
|
7834 |
+
msgid "Transaction Type"
|
7835 |
+
msgstr "نوع تراکنش "
|
7836 |
+
|
7837 |
+
#: form_detail.php:1456
|
7838 |
+
#@ gravityforms
|
7839 |
+
msgid "Transportation/Logistics"
|
7840 |
+
msgstr "حمل و نقل / تدارکات"
|
7841 |
+
|
7842 |
+
#: entry_list.php:398
|
7843 |
+
#: entry_list.php:1109
|
7844 |
+
#: entry_list.php:1186
|
7845 |
+
#: form_list.php:674
|
7846 |
+
#@ gravityforms
|
7847 |
+
msgid "Trash"
|
7848 |
+
msgstr "زباله دان"
|
7849 |
+
|
7850 |
+
#: includes/addon/class-gf-payment-addon.php:1594
|
7851 |
+
#@ gravityforms
|
7852 |
+
msgid "Trial"
|
7853 |
+
msgstr "آزمایشی"
|
7854 |
+
|
7855 |
+
#: includes/addon/class-gf-payment-addon.php:1597
|
7856 |
+
#@ gravityforms
|
7857 |
+
msgid "Trial Period"
|
7858 |
+
msgstr "دوره آزمایشی"
|
7859 |
+
|
7860 |
+
#: form_detail.php:1458
|
7861 |
+
#@ gravityforms
|
7862 |
+
msgid "Tuesday"
|
7863 |
+
msgstr "سه شنبه"
|
7864 |
+
|
7865 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:52
|
7866 |
+
#@ gravityforms
|
7867 |
+
msgid "Turn off background updates"
|
7868 |
+
msgstr "غیرفعال بودن بروزرسانی خودکار"
|
7869 |
+
|
7870 |
+
#: form_detail.php:804
|
7871 |
+
#: form_settings.php:1799
|
7872 |
+
#@ gravityforms
|
7873 |
+
msgid "Type"
|
7874 |
+
msgstr "نوع"
|
7875 |
+
|
7876 |
+
#: form_detail.php:1448
|
7877 |
+
#@ gravityforms
|
7878 |
+
msgid "U.S. States"
|
7879 |
+
msgstr "ایالات U.S."
|
7880 |
+
|
7881 |
+
#: form_detail.php:1452
|
7882 |
+
#@ gravityforms
|
7883 |
+
msgid "Under 18"
|
7884 |
+
msgstr "زیر 18 سال"
|
7885 |
+
|
7886 |
+
#: includes/addon/class-gf-addon.php:4009
|
7887 |
+
#: settings.php:722
|
7888 |
+
#@ gravityforms
|
7889 |
+
msgid "Uninstall"
|
7890 |
+
msgstr "Uninstall"
|
7891 |
+
|
7892 |
+
#: includes/addon/class-gf-addon.php:4329
|
7893 |
+
#@ gravityforms
|
7894 |
+
msgid "Uninstall Add-On"
|
7895 |
+
msgstr "Unistall افزودنی ها"
|
7896 |
+
|
7897 |
+
#: includes/addon/class-gf-addon.php:4038
|
7898 |
+
#: includes/addon/class-gf-addon.php:4052
|
7899 |
+
#, php-format
|
7900 |
+
#@ gravityforms
|
7901 |
+
msgid "Uninstall %s"
|
7902 |
+
msgstr "غیر فعال کردن %s"
|
7903 |
+
|
7904 |
+
#: includes/addon/class-gf-addon.php:4323
|
7905 |
+
#, php-format
|
7906 |
+
#@ gravityforms
|
7907 |
+
msgid "Uninstall %s Add-On"
|
7908 |
+
msgstr "Uninstall %s افزودنی"
|
7909 |
+
|
7910 |
+
#: settings.php:114
|
7911 |
+
#: settings.php:166
|
7912 |
+
#: settings.php:178
|
7913 |
+
#@ gravityforms
|
7914 |
+
msgid "Uninstall Gravity Forms"
|
7915 |
+
msgstr "Uninstall Gravity Forms"
|
7916 |
+
|
7917 |
+
#: common.php:1355
|
7918 |
+
#: entry_detail.php:981
|
7919 |
+
#@ gravityforms
|
7920 |
+
msgid "Unit Price"
|
7921 |
+
msgstr "قیمت واحد"
|
7922 |
+
|
7923 |
+
#: gravityforms.php:2292
|
7924 |
+
#@ gravityforms
|
7925 |
+
msgid "Unread"
|
7926 |
+
msgstr "خوانده نشده"
|
7927 |
+
|
7928 |
+
#: form_detail.php:1462
|
7929 |
+
#@ gravityforms
|
7930 |
+
msgid "Unsatisfied"
|
7931 |
+
msgstr "ناراضی"
|
7932 |
+
|
7933 |
+
#: includes/addon/class-gf-payment-addon.php:1485
|
7934 |
+
#@ gravityforms
|
7935 |
+
msgid "Unsupported transaction type"
|
7936 |
+
msgstr "نوع تراکنش نامعتبر"
|
7937 |
+
|
7938 |
+
#: js.php:589
|
7939 |
+
#: js.php:602
|
7940 |
+
#: js.php:614
|
7941 |
+
#: js.php:843
|
7942 |
+
#@ gravityforms
|
7943 |
+
msgid "Untitled"
|
7944 |
+
msgstr "بدون عنوان"
|
7945 |
+
|
7946 |
+
#: common.php:3806
|
7947 |
+
#@ gravityforms
|
7948 |
+
msgid "Untitled Confirmation"
|
7949 |
+
msgstr "تاییدیه بدون عنوان"
|
7950 |
+
|
7951 |
+
#: common.php:3775
|
7952 |
+
#@ gravityforms
|
7953 |
+
msgid "Untitled Form"
|
7954 |
+
msgstr "فرم بدون عنوان"
|
7955 |
+
|
7956 |
+
#: common.php:3770
|
7957 |
+
#: entry_detail.php:1299
|
7958 |
+
#: gravityforms.php:3792
|
7959 |
+
#: includes/webapi/webapi.php:184
|
7960 |
+
#: includes/webapi/webapi.php:256
|
7961 |
+
#@ gravityforms
|
7962 |
+
msgid "Update"
|
7963 |
+
msgstr "بروزرسانی"
|
7964 |
+
|
7965 |
+
#: gravityforms.php:1760
|
7966 |
+
#@ gravityforms
|
7967 |
+
msgid "Update Available"
|
7968 |
+
msgstr "بروزرسانی موجود"
|
7969 |
+
|
7970 |
+
#: form_detail.php:2480
|
7971 |
+
#: includes/templates/edit-shortcode-form.tpl.php:20
|
7972 |
+
#@ gravityforms
|
7973 |
+
msgid "Update Form"
|
7974 |
+
msgstr "بروز رسانی فرم"
|
7975 |
+
|
7976 |
+
#: form_settings.php:984
|
7977 |
+
#@ gravityforms
|
7978 |
+
msgid "Update Form Settings"
|
7979 |
+
msgstr "بروزرسانی تنظیمات فرم"
|
7980 |
+
|
7981 |
+
#: notification.php:519
|
7982 |
+
#@ gravityforms
|
7983 |
+
msgid "Update Notification"
|
7984 |
+
msgstr "بروز رسانی اعلان"
|
7985 |
+
|
7986 |
+
#: includes/addon/class-gf-addon.php:2535
|
7987 |
+
#@ gravityforms
|
7988 |
+
msgid "Update Settings"
|
7989 |
+
msgstr "بروز رسانی تنظیمات"
|
7990 |
+
|
7991 |
+
#: gravityforms.php:1788
|
7992 |
+
#@ gravityforms
|
7993 |
+
msgid "Updates"
|
7994 |
+
msgstr "بروز رسانی ها"
|
7995 |
+
|
7996 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:35
|
7997 |
+
#@ gravityforms
|
7998 |
+
msgid "Updates will only be available if you have entered a valid License Key"
|
7999 |
+
msgstr "بروزرسانی ها فقط در صورتی موجود است که شما یک لایسنس معتبر وارد کنید."
|
8000 |
+
|
8001 |
+
#: includes/upload.php:233
|
8002 |
+
#@ gravityforms
|
8003 |
+
msgid "Upload unsuccessful"
|
8004 |
+
msgstr "بارگذاری فایل ناموق بود."
|
8005 |
+
|
8006 |
+
#: form_detail.php:1685
|
8007 |
+
#@ gravityforms
|
8008 |
+
msgid "Usage"
|
8009 |
+
msgstr "کارکرد"
|
8010 |
+
|
8011 |
+
#: tooltips.php:135
|
8012 |
+
#@ gravityforms
|
8013 |
+
msgid "Use Current User as Author"
|
8014 |
+
msgstr "استفاده از کاربر فعلی به عنوان نویسنده"
|
8015 |
+
|
8016 |
+
#: form_detail.php:1962
|
8017 |
+
#: form_detail.php:1983
|
8018 |
+
#, php-format
|
8019 |
+
#@ gravityforms
|
8020 |
+
msgid "Use Form Setting (%s)"
|
8021 |
+
msgstr "استفاده از تنظیمات فرم (%s)"
|
8022 |
+
|
8023 |
+
#: tooltips.php:103
|
8024 |
+
#@ gravityforms
|
8025 |
+
msgid "Use Values Submitted in a Different Field"
|
8026 |
+
msgstr "استفاده از مقادیر ارسال شده در فیلد دیگر"
|
8027 |
+
|
8028 |
+
#: form_detail.php:1687
|
8029 |
+
#@ gravityforms
|
8030 |
+
msgid "Use a '9' to indicate a numerical character."
|
8031 |
+
msgstr "برای نشان دادن کارکتر عددی از یک '9' استفاده کنید."
|
8032 |
+
|
8033 |
+
#: form_detail.php:1688
|
8034 |
+
#@ gravityforms
|
8035 |
+
msgid "Use a lower case 'a' to indicate an alphabetical character."
|
8036 |
+
msgstr "برای نشان دادن کاراکتر الفبایی از یک 'a' استفاده کنید."
|
8037 |
+
|
8038 |
+
#: form_detail.php:1690
|
8039 |
+
#@ gravityforms
|
8040 |
+
msgid "Use a question mark '?' to indicate optional characters. Note: All characters after the question mark will be optional."
|
8041 |
+
msgstr "برای نشان دادن کاراکتر های دلخواه از '?' استفاده کنید. توجه : تمام کاراکترها بعد از علامت سوال اختیاری خواهند بود."
|
8042 |
+
|
8043 |
+
#: form_detail.php:1689
|
8044 |
+
#@ gravityforms
|
8045 |
+
msgid "Use an asterisk '*' to indicate any alphanumeric character."
|
8046 |
+
msgstr "برای نشان دادن یک کاراکتر الفبایی یا عددی از '*' استفاده کنید."
|
8047 |
+
|
8048 |
+
#: form_detail.php:930
|
8049 |
+
#@ gravityforms
|
8050 |
+
msgid "Use logged in user as author"
|
8051 |
+
msgstr "استفاده از کاربر وارد شده به عنوان نویسنده"
|
8052 |
+
|
8053 |
+
#: common.php:3797
|
8054 |
+
#@ gravityforms
|
8055 |
+
msgid "Use this confirmation if"
|
8056 |
+
msgstr "از این تاییدیه استفاده کن اگر"
|
8057 |
+
|
8058 |
+
#: common.php:4312
|
8059 |
+
#: entry_detail.php:1218
|
8060 |
+
#: forms_model.php:4487
|
8061 |
+
#: select_columns.php:184
|
8062 |
+
#@ gravityforms
|
8063 |
+
msgid "User"
|
8064 |
+
msgstr "کاربر"
|
8065 |
+
|
8066 |
+
#: export.php:860
|
8067 |
+
#@ gravityforms
|
8068 |
+
msgid "User Agent"
|
8069 |
+
msgstr "کاربر"
|
8070 |
+
|
8071 |
+
#: form_detail.php:569
|
8072 |
+
#: form_detail.php:633
|
8073 |
+
#@ gravityforms
|
8074 |
+
msgid "User Defined Price"
|
8075 |
+
msgstr "تعریف شده توسط کاربر"
|
8076 |
+
|
8077 |
+
#: common.php:522
|
8078 |
+
#: form_detail.php:2688
|
8079 |
+
#@ gravityforms
|
8080 |
+
msgid "User Display Name"
|
8081 |
+
msgstr "نام نمایشی کاربر"
|
8082 |
+
|
8083 |
+
#: common.php:523
|
8084 |
+
#: form_detail.php:2689
|
8085 |
+
#@ gravityforms
|
8086 |
+
msgid "User Email"
|
8087 |
+
msgstr "ایمیل کاربر"
|
8088 |
+
|
8089 |
+
#: entry_detail.php:1213
|
8090 |
+
#: export.php:861
|
8091 |
+
#: forms_model.php:4466
|
8092 |
+
#: includes/addon/class-gf-addon.php:1943
|
8093 |
+
#: select_columns.php:178
|
8094 |
+
#@ gravityforms
|
8095 |
+
msgid "User IP"
|
8096 |
+
msgstr "آی پی کاربر"
|
8097 |
+
|
8098 |
+
#: common.php:504
|
8099 |
+
#: form_detail.php:2680
|
8100 |
+
#: js.php:1234
|
8101 |
+
#@ gravityforms
|
8102 |
+
msgid "User IP Address"
|
8103 |
+
msgstr "IPکاربر "
|
8104 |
+
|
8105 |
+
#: common.php:524
|
8106 |
+
#: form_detail.php:2690
|
8107 |
+
#@ gravityforms
|
8108 |
+
msgid "User Login"
|
8109 |
+
msgstr "نام کاربری"
|
8110 |
+
|
8111 |
+
#: forms_model.php:896
|
8112 |
+
#@ gravityforms
|
8113 |
+
msgid "User Notification"
|
8114 |
+
msgstr "اعلان کاربر"
|
8115 |
+
|
8116 |
+
#: form_detail.php:1699
|
8117 |
+
#: form_detail.php:1706
|
8118 |
+
#: form_detail.php:1713
|
8119 |
+
#: form_detail.php:1720
|
8120 |
+
#: form_detail.php:1727
|
8121 |
+
#@ gravityforms
|
8122 |
+
msgid "Valid Input"
|
8123 |
+
msgstr "فیلد ورودی معتبر"
|
8124 |
+
|
8125 |
+
#: settings.php:295
|
8126 |
+
#@ gravityforms
|
8127 |
+
msgid "Valid Key : Your license key has been successfully validated."
|
8128 |
+
msgstr "کد معتبر: لایسنس شما با موفقیت اعتبار سنجی شد."
|
8129 |
+
|
8130 |
+
#: form_detail.php:1817
|
8131 |
+
#@ gravityforms
|
8132 |
+
msgid "Validate Formula"
|
8133 |
+
msgstr "معتبرسازی فرمول"
|
8134 |
+
|
8135 |
+
#: includes/addon/class-gf-addon.php:3093
|
8136 |
+
#: settings.php:293
|
8137 |
+
#@ gravityforms
|
8138 |
+
msgid "Validation Error"
|
8139 |
+
msgstr "خطای اعتبارسنجی"
|
8140 |
+
|
8141 |
+
#: tooltips.php:107
|
8142 |
+
#@ gravityforms
|
8143 |
+
msgid "Validation Message"
|
8144 |
+
msgstr "پیام اعتبارسنجی"
|
8145 |
+
|
8146 |
+
#: form_detail.php:1435
|
8147 |
+
#: form_detail.php:2098
|
8148 |
+
#@ gravityforms
|
8149 |
+
msgid "Value"
|
8150 |
+
msgstr "مقدار"
|
8151 |
+
|
8152 |
+
#: form_detail.php:1463
|
8153 |
+
#@ gravityforms
|
8154 |
+
msgid "Very Important"
|
8155 |
+
msgstr "خیلی مهم"
|
8156 |
+
|
8157 |
+
#: form_detail.php:1462
|
8158 |
+
#@ gravityforms
|
8159 |
+
msgid "Very Satisfied"
|
8160 |
+
msgstr "بسیار راضی"
|
8161 |
+
|
8162 |
+
#: form_detail.php:1462
|
8163 |
+
#@ gravityforms
|
8164 |
+
msgid "Very Unsatisfied"
|
8165 |
+
msgstr "خیلی ناراضی"
|
8166 |
+
|
8167 |
+
#: entry_list.php:1026
|
8168 |
+
#: entry_list.php:1057
|
8169 |
+
#: entry_list.php:1089
|
8170 |
+
#: includes/addon/class-gf-payment-addon.php:2408
|
8171 |
+
#: includes/addon/class-gf-payment-addon.php:2409
|
8172 |
+
#@ gravityforms
|
8173 |
+
msgid "View"
|
8174 |
+
msgstr "نمایش"
|
8175 |
+
|
8176 |
+
#: gravityforms.php:2306
|
8177 |
+
#: gravityforms.php:2312
|
8178 |
+
#@ gravityforms
|
8179 |
+
msgid "View All Entries"
|
8180 |
+
msgstr "نمایش تمام پیام های ورودی"
|
8181 |
+
|
8182 |
+
#: gravityforms.php:2324
|
8183 |
+
#@ gravityforms
|
8184 |
+
msgid "View All Forms"
|
8185 |
+
msgstr "مشاهده همه فرم ها"
|
8186 |
+
|
8187 |
+
#: gravityforms.php:4223
|
8188 |
+
#@ gravityforms
|
8189 |
+
msgid "View entries generated by this form"
|
8190 |
+
msgstr "مشاهده پیام های ورودی ایجاد شده برای این فرم"
|
8191 |
+
|
8192 |
+
#: includes/addon/class-gf-results.php:128
|
8193 |
+
#: includes/addon/class-gf-results.php:158
|
8194 |
+
#@ gravityforms
|
8195 |
+
msgid "View results generated by this form"
|
8196 |
+
msgstr "مشاهده نتایج ایجاد شده توسط این فرم"
|
8197 |
+
|
8198 |
+
#: entry_list.php:872
|
8199 |
+
#: entry_list.php:1026
|
8200 |
+
#: entry_list.php:1057
|
8201 |
+
#: entry_list.php:1089
|
8202 |
+
#@ gravityforms
|
8203 |
+
msgid "View this entry"
|
8204 |
+
msgstr "نمایش این پیام ورودی"
|
8205 |
+
|
8206 |
+
#: entry_detail.php:1219
|
8207 |
+
#@ gravityforms
|
8208 |
+
msgid "View user profile"
|
8209 |
+
msgstr "مشاهده پروفایل کاربر"
|
8210 |
+
|
8211 |
+
#: gravityforms.php:2197
|
8212 |
+
#: includes/addon/class-gf-auto-upgrade.php:62
|
8213 |
+
#, php-format
|
8214 |
+
#@ gravityforms
|
8215 |
+
msgid "View version %s Details"
|
8216 |
+
msgstr "مشاهده جزییات نسخه %s"
|
8217 |
+
|
8218 |
+
#: includes/addon/class-gf-auto-upgrade.php:237
|
8219 |
+
#, php-format
|
8220 |
+
#@ gravityforms
|
8221 |
+
msgid "View version %s details"
|
8222 |
+
msgstr "مشاهده جزییات نسخه %s"
|
8223 |
+
|
8224 |
+
#: form_list.php:517
|
8225 |
+
#@ gravityforms
|
8226 |
+
msgid "Views"
|
8227 |
+
msgstr "بازدیدها"
|
8228 |
+
|
8229 |
+
#: form_list.php:792
|
8230 |
+
#, php-format
|
8231 |
+
#@ gravityforms
|
8232 |
+
msgid "Views for %s form have been reset."
|
8233 |
+
msgid_plural "Views for %s forms have been reset."
|
8234 |
+
msgstr[0] "بازدیدها برای فرم %s بازنشانی شد."
|
8235 |
+
msgstr[1] "بازدیدها برای فرم های %s بازنشانی شد."
|
8236 |
+
|
8237 |
+
#: form_detail.php:2269
|
8238 |
+
#: tooltips.php:110
|
8239 |
+
#@ gravityforms
|
8240 |
+
msgid "Visibility"
|
8241 |
+
msgstr "حالت نمایش"
|
8242 |
+
|
8243 |
+
#: form_detail.php:1950
|
8244 |
+
#, php-format
|
8245 |
+
#@ gravityforms
|
8246 |
+
msgid "Visible (%s)"
|
8247 |
+
msgstr "نمایش (%s)"
|
8248 |
+
|
8249 |
+
#: entry_list.php:1203
|
8250 |
+
#@ gravityforms
|
8251 |
+
msgid "WARNING! This operation cannot be undone. Empty trash? 'Ok' to empty trash. 'Cancel' to abort."
|
8252 |
+
msgstr "اخطار! عملیات خالی کردن سطل زباله غیرقابل بازگشت است . برای انجام عملیات برروی OK و برای انصراف برروی Cancel کلیک نمایید ."
|
8253 |
+
|
8254 |
+
#: entry_list.php:1203
|
8255 |
+
#@ gravityforms
|
8256 |
+
msgid "WARNING! This operation cannot be undone. Permanently delete all spam? 'Ok' to delete. 'Cancel' to abort."
|
8257 |
+
msgstr "اخطار! عملیات حذف هرزنامه ها غیرقابل بازگشت است . برای انجام عملیات برروی OK و برای انصراف برروی Cancel کلیک نمایید ."
|
8258 |
+
|
8259 |
+
#: form_list.php:197
|
8260 |
+
#@ gravityforms
|
8261 |
+
msgid "WARNING: You are about to delete ALL entries associated with the selected forms. "
|
8262 |
+
msgstr "اخطار : شما قصد حذف تمام ورودی های وابسته به فرم های انتخاب شده را دارید . "
|
8263 |
+
|
8264 |
+
#: form_list.php:193
|
8265 |
+
#@ gravityforms
|
8266 |
+
msgid "WARNING: You are about to delete these forms and ALL entries associated with them. "
|
8267 |
+
msgstr "اخطار : شما قصد حذف این فرم و تمام ورودی ها وابسته به آن را دارید . "
|
8268 |
+
|
8269 |
+
#: form_settings.php:1883
|
8270 |
+
#@ gravityforms
|
8271 |
+
msgid "WARNING: You are about to delete this confirmation."
|
8272 |
+
msgstr "تذکر : شما قصد حذف کردن این تاییدیه را دارید."
|
8273 |
+
|
8274 |
+
#: form_list.php:140
|
8275 |
+
#@ gravityforms
|
8276 |
+
msgid "WARNING: You are about to delete this form and ALL entries associated with it. "
|
8277 |
+
msgstr "اخطار : شما قصد حذف این فرم و تمام ورودی ها وابسته به آن را دارید . "
|
8278 |
+
|
8279 |
+
#: includes/addon/class-gf-feed-addon.php:1139
|
8280 |
+
#@ gravityforms
|
8281 |
+
msgid "WARNING: You are about to delete this item."
|
8282 |
+
msgstr "اخطار! در حال حذف این این آیتم هستید."
|
8283 |
+
|
8284 |
+
#: notification.php:1710
|
8285 |
+
#@ gravityforms
|
8286 |
+
msgid "WARNING: You are about to delete this notification."
|
8287 |
+
msgstr "هشدار: شما در حال حذف این اعلان هستید."
|
8288 |
+
|
8289 |
+
#: includes/addon/class-gf-addon.php:4044
|
8290 |
+
#: settings.php:171
|
8291 |
+
#@ gravityforms
|
8292 |
+
msgid "Warning"
|
8293 |
+
msgstr "اخطار"
|
8294 |
+
|
8295 |
+
#: includes/addon/class-gf-addon.php:4344
|
8296 |
+
#, php-format
|
8297 |
+
#@ gravityforms
|
8298 |
+
msgid "Warning! ALL %s settings will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
8299 |
+
msgstr "اخطار! همه تنظیمات %s حذف خواهد شد . این عملیات غیرقابل بازگشت است. برای حذف OK وبرای توقف Cancel را انتخاب کنید."
|
8300 |
+
|
8301 |
+
#: settings.php:178
|
8302 |
+
#@ gravityforms
|
8303 |
+
msgid "Warning! ALL Gravity Forms data, including form entries will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop"
|
8304 |
+
msgstr "اخطار! تمام اطلاعات Gravity Forms شامل تمام ورودی های حذف خواهند شد. این عملیات غیرقابل برگشت است. برای حذف OK و برای توقف Cancel را انتخاب کنید."
|
8305 |
+
|
8306 |
+
#: js.php:514
|
8307 |
+
#@ gravityforms
|
8308 |
+
msgid "Warning! Deleting this field will also delete all entry data associated with it. 'Cancel' to stop. 'OK' to delete"
|
8309 |
+
msgstr "اخطار! با حذف این فیلد تمام فیلد ها ورودی مرتبط نیز حذف خواهند شد. برای لغو Cancel و برای حذف کردن OK را انتخاب کنید."
|
8310 |
+
|
8311 |
+
#: includes/addon/class-gf-payment-addon.php:2491
|
8312 |
+
#@ gravityforms
|
8313 |
+
msgid "Warning! This subscription will be canceled. This cannot be undone. 'OK' to cancel subscription, 'Cancel' to stop"
|
8314 |
+
msgstr "اخطار! این اشتراک لغو خواهد شد.عملیات غیرقابل بازگشت است . برای انجام عملیات برروی OK و برای انصراف از عملیات برروی Cancel کلیک نمایید ."
|
8315 |
+
|
8316 |
+
#: common.php:3776
|
8317 |
+
#@ gravityforms
|
8318 |
+
msgid "We would love to hear from you! Please fill out this form and we will get in touch with you shortly."
|
8319 |
+
msgstr "ما خیلی از ارتباط با شما خوشحال خواهیم شد . لطفاً فرم را پر نمایید تا در اولین فرصت با شما تماس گرفته شود. "
|
8320 |
+
|
8321 |
+
#: form_detail.php:772
|
8322 |
+
#: includes/fields/class-gf-field-website.php:13
|
8323 |
+
#: js.php:683
|
8324 |
+
#@ gravityforms
|
8325 |
+
msgid "Website"
|
8326 |
+
msgstr "وب سایت"
|
8327 |
+
|
8328 |
+
#: form_detail.php:1458
|
8329 |
+
#@ gravityforms
|
8330 |
+
msgid "Wednesday"
|
8331 |
+
msgstr "چهارشنبه"
|
8332 |
+
|
8333 |
+
#: includes/addon/class-gf-payment-addon.php:2100
|
8334 |
+
#: includes/addon/class-gf-payment-addon.php:2101
|
8335 |
+
#@ gravityforms
|
8336 |
+
msgid "Week"
|
8337 |
+
msgstr "هفته"
|
8338 |
+
|
8339 |
+
#: includes/addon/class-gf-payment-addon.php:2402
|
8340 |
+
#@ gravityforms
|
8341 |
+
msgid "Weekly"
|
8342 |
+
msgstr "هفتگی"
|
8343 |
+
|
8344 |
+
#: includes/wizard/class-gf-installation-wizard.php:97
|
8345 |
+
#@ gravityforms
|
8346 |
+
msgid "Welcome to Gravity Forms"
|
8347 |
+
msgstr "به Gravity Forms خوش آمدید!"
|
8348 |
+
|
8349 |
+
#: form_detail.php:478
|
8350 |
+
#@ gravityforms
|
8351 |
+
msgid "What would you like to do next?"
|
8352 |
+
msgstr "مایلید در گام بعدی چه کار کنید ؟"
|
8353 |
+
|
8354 |
+
#: includes/addon/class-gf-payment-addon.php:1656
|
8355 |
+
#@ gravityforms
|
8356 |
+
msgid "When conditions are enabled, form submissions will only be sent to the payment gateway when the conditions are met. When disabled, all form submissions will be sent to the payment gateway."
|
8357 |
+
msgstr "وقتی شرایط فعال شوند ، ارسال فرم به دروازه پرداخت فقط در صورت برقراری شرایط انجام می شود . وقتی شرایط غیرفعال باشند همه فرم ها به دروازه پرداخت هدایت خواهند شد ."
|
8358 |
+
|
8359 |
+
#: tooltips.php:27
|
8360 |
+
#@ gravityforms
|
8361 |
+
msgid "When enabled, auto-formatting will insert paragraph breaks automatically. Disable auto-formatting when using HTML to create email notification content."
|
8362 |
+
msgstr "وقتی قالب خودکار فعال باشد جداکننده پاراگراف ها به صورت خودکار قرار داده می شوند. وقتی که می خواهید از HTML برای ساخت ایمیل اعلان استفاده کنید قالب خودکار را غیرفعال کنید."
|
8363 |
+
|
8364 |
+
#: tooltips.php:49
|
8365 |
+
#@ gravityforms
|
8366 |
+
msgid "When enabled, auto-formatting will insert paragraph breaks automatically. Disable auto-formatting when using HTML to create the confirmation content."
|
8367 |
+
msgstr "وقتی قالب خودکار فعال باشد جداکننده پاراگراف ها به صورت خودکار قرار داده می شود. وقتی که می خواهید از HTMLبرای ساخت محتوای تاییدیه ها استفاده کنید قالب خودکار را غیرفعال کنید."
|
8368 |
+
|
8369 |
+
#: tooltips.php:55
|
8370 |
+
#@ gravityforms
|
8371 |
+
msgid "When enabled, margins are added to properly align the HTML content with other form fields."
|
8372 |
+
msgstr "وقتی فعال است، حاشیه ها به محتوای HTML در کنار سایر فیلدها اضافه می شود."
|
8373 |
+
|
8374 |
+
#: form_settings.php:603
|
8375 |
+
#@ gravityforms
|
8376 |
+
msgid "When this setting is activated two confirmations and one notification are automatically generated and can be modified in their respective editors. When this setting is deactivated the confirmations and the notification will be deleted automatically and any modifications will be lost."
|
8377 |
+
msgstr "وقتی که این تنظیمات فعال باشد دو تاییدیه و یک اعلان به صورت خودکار ساخته می شود که می توانید در بخش مربوطه ویرایش کنید. وقتی که این تنظیمات غیرفعال شود تاییدیه ها و اعلان به صورت خودکار حذف می شوند و همه تغییرات از بین خواهند رفت."
|
8378 |
+
|
8379 |
+
#: form_detail.php:1453
|
8380 |
+
#@ gravityforms
|
8381 |
+
msgid "Widowed"
|
8382 |
+
msgstr "بیوه"
|
8383 |
+
|
8384 |
+
#: settings.php:596
|
8385 |
+
#@ gravityforms
|
8386 |
+
msgid "WordPress Version"
|
8387 |
+
msgstr "نسخه وردپرس"
|
8388 |
+
|
8389 |
+
#: form_detail.php:1466
|
8390 |
+
#@ gravityforms
|
8391 |
+
msgid "Would You"
|
8392 |
+
msgstr "تمایل"
|
8393 |
+
|
8394 |
+
#: entry_detail.php:391
|
8395 |
+
#@ gravityforms
|
8396 |
+
msgid "Would you like to delete this file? 'Cancel' to stop. 'OK' to delete"
|
8397 |
+
msgstr "آیا می خواهید این فایل را پاک کنید ؟ برای متوقف کردن Cancel و برای حذف OK را انتخاب کنید."
|
8398 |
+
|
8399 |
+
#: includes/fields/class-gf-field-creditcard.php:298
|
8400 |
+
#: includes/fields/class-gf-field-date.php:485
|
8401 |
+
#: js.php:894
|
8402 |
+
#: js.php:895
|
8403 |
+
#@ gravityforms
|
8404 |
+
msgid "Year"
|
8405 |
+
msgstr "سال"
|
8406 |
+
|
8407 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:72
|
8408 |
+
#: settings.php:311
|
8409 |
+
#: settings.php:322
|
8410 |
+
#: settings.php:351
|
8411 |
+
#@ gravityforms
|
8412 |
+
msgid "Yes"
|
8413 |
+
msgstr "بله"
|
8414 |
+
|
8415 |
+
#: includes/addon/class-gf-payment-addon.php:1919
|
8416 |
+
#@ gravityforms
|
8417 |
+
msgid "Yesterday"
|
8418 |
+
msgstr "دیروز"
|
8419 |
+
|
8420 |
+
#: entry_detail.php:1261
|
8421 |
+
#: entry_detail.php:1274
|
8422 |
+
#@ gravityforms
|
8423 |
+
msgid "You are about to delete this entry. 'Cancel' to stop, 'OK' to delete."
|
8424 |
+
msgstr "آیا برای حذف این پیام ورودی مطمئن هستید ؟ برای حذف برروی OK و برای انصراف برروی Cancel کلیک نمایید."
|
8425 |
+
|
8426 |
+
#: includes/addon/class-gf-auto-upgrade.php:243
|
8427 |
+
#: update.php:55
|
8428 |
+
#, php-format
|
8429 |
+
#@ gravityforms
|
8430 |
+
msgid "You can update to the latest version automatically or download the update and install it manually. %sUpdate Automatically%s %sDownload Update%s"
|
8431 |
+
msgstr "می توانید خودکار به آخرین نسخه بروز رسانی کنید یا فایل بروزرسانی را دانلود کنید و به صورت دستی نصب کنید. %sبروزرسانی خودکار%s %sدانلود فایل بروزرسانی%s"
|
8432 |
+
|
8433 |
+
#: entry_list.php:1896
|
8434 |
+
#@ gravityforms
|
8435 |
+
msgid "You cannot resend notifications for these entries because this form does not currently have any notifications configured."
|
8436 |
+
msgstr "شما نمی توانید برای این پیام ورودی ایمیل اعلان ارسال نمایید . زیرا برای این فرم ،اعلان ها تنظیم نشده است ."
|
8437 |
+
|
8438 |
+
#: entry_detail.php:1340
|
8439 |
+
#@ gravityforms
|
8440 |
+
msgid "You cannot resend notifications for this entry because this form does not currently have any notifications configured."
|
8441 |
+
msgstr "شما نمی توانید برای این پیام ورودی دوباره اعلان ارسال نمایید . زیرا برای این فرم ،اعلان تنظیم نشده است ."
|
8442 |
+
|
8443 |
+
#: forms_model.php:1399
|
8444 |
+
#@ gravityforms
|
8445 |
+
msgid "You don't have adequate permission to create forms."
|
8446 |
+
msgstr "شما مجوز کافی برای ایجاد فرم را ندارید."
|
8447 |
+
|
8448 |
+
#: entry_detail.php:359
|
8449 |
+
#: entry_list.php:1247
|
8450 |
+
#: entry_list.php:1273
|
8451 |
+
#: form_list.php:801
|
8452 |
+
#@ gravityforms
|
8453 |
+
msgid "You don't have adequate permission to delete entries."
|
8454 |
+
msgstr "شما دسترسی کافی برای حذف ورودی ها را ندارید."
|
8455 |
+
|
8456 |
+
#: form_list.php:735
|
8457 |
+
#@ gravityforms
|
8458 |
+
msgid "You don't have adequate permission to delete forms."
|
8459 |
+
msgstr "شما دسترسی کافی برای حذف فرم ها را ندارید."
|
8460 |
+
|
8461 |
+
#: entry_detail.php:328
|
8462 |
+
#@ gravityforms
|
8463 |
+
msgid "You don't have adequate permission to delete notes."
|
8464 |
+
msgstr "شما مجوز کافی برای حذف یادداشت ها را ندارید ."
|
8465 |
+
|
8466 |
+
#: forms_model.php:1868
|
8467 |
+
#@ gravityforms
|
8468 |
+
msgid "You don't have adequate permission to edit entries."
|
8469 |
+
msgstr "شما مجوز کافی برای ویرایش پیام های ورودی را ندارید ."
|
8470 |
+
|
8471 |
+
#: settings.php:224
|
8472 |
+
#@ gravityforms
|
8473 |
+
msgid "You don't have adequate permission to edit settings."
|
8474 |
+
msgstr "شما دسترسی لازم برای ویرایش تنظیمات را ندارید."
|
8475 |
+
|
8476 |
+
#: preview.php:22
|
8477 |
+
#@ gravityforms
|
8478 |
+
msgid "You don't have adequate permission to preview forms."
|
8479 |
+
msgstr "شما دسترسی کافی برای پیش نمایش فرم ها را ندارید."
|
8480 |
+
|
8481 |
+
#: settings.php:120
|
8482 |
+
#@ gravityforms
|
8483 |
+
msgid "You don't have adequate permission to uninstall Gravity Forms."
|
8484 |
+
msgstr "شما دسترسی کافی برای حذفکردن گرویتیفرم را ندارید."
|
8485 |
+
|
8486 |
+
#: print-entry.php:21
|
8487 |
+
#@ gravityforms
|
8488 |
+
msgid "You don't have adequate permission to view entries."
|
8489 |
+
msgstr "شما دسترسی کافی برای مشاهده ورودی ها را ندارید."
|
8490 |
+
|
8491 |
+
#: includes/addon/class-gf-addon.php:3734
|
8492 |
+
#: includes/addon/class-gf-addon.php:3740
|
8493 |
+
#@ gravityforms
|
8494 |
+
msgid "You don't have adequate permission to view this page"
|
8495 |
+
msgstr "شما دسترسی کافی برای نمایش این برگه را ندارید."
|
8496 |
+
|
8497 |
+
#: form_list.php:785
|
8498 |
+
#@ gravityforms
|
8499 |
+
msgid "You don't have adequate permissions to delete forms."
|
8500 |
+
msgstr "شما مجوز کافی برای حذف فرم ها را ندارید."
|
8501 |
+
|
8502 |
+
#: entry_list.php:21
|
8503 |
+
#, php-format
|
8504 |
+
#@ gravityforms
|
8505 |
+
msgid "You don't have any active forms. Let's go %screate one%s"
|
8506 |
+
msgstr "شما هیج فرم فعالی ندارید . برای %sایجاد فرم کلیک نمایید.%s "
|
8507 |
+
|
8508 |
+
#: includes/addon/class-gf-feed-addon.php:1155
|
8509 |
+
#, php-format
|
8510 |
+
#@ gravityforms
|
8511 |
+
msgid "You don't have any feeds configured. Let's go %screate one%s!"
|
8512 |
+
msgstr "شما هیچ خوراکی تنظیم نکرده اید . %sبرای ایجاد کلیک نمایید.%s"
|
8513 |
+
|
8514 |
+
#: gravityforms.php:2331
|
8515 |
+
#, php-format
|
8516 |
+
#@ gravityforms
|
8517 |
+
msgid "You don't have any forms. Let's go %s create one %s!"
|
8518 |
+
msgstr "شما هنوز هیچ فرمی ندارید . %s یک فرم بسازید %s ."
|
8519 |
+
|
8520 |
+
#: form_list.php:701
|
8521 |
+
#, php-format
|
8522 |
+
#@ gravityforms
|
8523 |
+
msgid "You don't have any forms. Let's go %screate one%s!"
|
8524 |
+
msgstr "شما هیچ فرمی ندارید . %s فرم جدید بسازید%s ."
|
8525 |
+
|
8526 |
+
#: update.php:15
|
8527 |
+
#@ gravityforms
|
8528 |
+
msgid "You don't have permissions to view this page"
|
8529 |
+
msgstr "شما دسترسی لازم برای مشاهده این برگه را ندارید"
|
8530 |
+
|
8531 |
+
#: form_detail.php:476
|
8532 |
+
#@ gravityforms
|
8533 |
+
msgid "You have successfully saved your form!"
|
8534 |
+
msgstr "فرم شما با موفقیت ذخیره شد!"
|
8535 |
+
|
8536 |
+
#: entry_list.php:1916
|
8537 |
+
#@ gravityforms
|
8538 |
+
msgid "You may override the default notification settings by entering a comma delimited list of emails to which the selected notifications should be sent."
|
8539 |
+
msgstr "شما می توانید تنظیمات پیش فرض اعلان را با وارد کردن یک لیست از ایمیل ها که اعلان های انتخاب شده باید به آنها ارسال شوند تغییر دهید."
|
8540 |
+
|
8541 |
+
#: includes/addon/class-gf-payment-addon.php:1516
|
8542 |
+
#, php-format
|
8543 |
+
#@ gravityforms
|
8544 |
+
msgid "You must add a Credit Card field to your form before creating a feed. Let's go %sadd one%s!"
|
8545 |
+
msgstr "شما باید یک فیلد کارت اعتباری در فرم خود اضافه نمایید و سپس برای ایجاد فید اقدام نمایید .%sیکی اضافه کنید.%s"
|
8546 |
+
|
8547 |
+
#: js.php:1022
|
8548 |
+
#@ gravityforms
|
8549 |
+
msgid "You must add a product field to the form first"
|
8550 |
+
msgstr "ابتدا باید یک فیلد محصول به فرم اضافه کنید"
|
8551 |
+
|
8552 |
+
#: form_settings.php:1533
|
8553 |
+
#@ gravityforms
|
8554 |
+
msgid "You must select a Confirmation Page."
|
8555 |
+
msgstr "باید برگه تاییدیه را انتخاب نمایید."
|
8556 |
+
|
8557 |
+
#: entry_detail.php:457
|
8558 |
+
#: entry_list.php:1564
|
8559 |
+
#@ gravityforms
|
8560 |
+
msgid "You must select at least one type of notification to resend."
|
8561 |
+
msgstr "شما باید حداقل یک نوع اعلان برای ارسال مجدد انتخاب نمایید ."
|
8562 |
+
|
8563 |
+
#: form_settings.php:1526
|
8564 |
+
#@ gravityforms
|
8565 |
+
msgid "You must specify a Confirmation Name."
|
8566 |
+
msgstr "باید نام تاییدیه را مشخص نمایید."
|
8567 |
+
|
8568 |
+
#: form_settings.php:1539
|
8569 |
+
#@ gravityforms
|
8570 |
+
msgid "You must specify a valid Redirect URL."
|
8571 |
+
msgstr "شما باید یک آدرس معتبر تعیین کنید."
|
8572 |
+
|
8573 |
+
#: includes/locking/class-gf-locking.php:205
|
8574 |
+
#: includes/locking/class-gf-locking.php:285
|
8575 |
+
#@ gravityforms
|
8576 |
+
msgid "You now have control"
|
8577 |
+
msgstr "اکنون کنترل به دست شماست "
|
8578 |
+
|
8579 |
+
#: form_detail.php:399
|
8580 |
+
#@ gravityforms
|
8581 |
+
msgid "You're done. That's it."
|
8582 |
+
msgstr "تمام شد. همین بود!"
|
8583 |
+
|
8584 |
+
#: tooltips.php:154
|
8585 |
+
#@ gravityforms
|
8586 |
+
msgid "Your Gravity Forms support license key is used to verify your support package, enable automatic updates and receive support."
|
8587 |
+
msgstr "لایسنس پشتیبانی شما که برای تایید بسته پشتیبانی، فعال سازی خودکار بروزرسانی ها و دریافت پشتیبانی استفاده می شود."
|
8588 |
+
|
8589 |
+
#: includes/fields/class-gf-field-email.php:55
|
8590 |
+
#@ gravityforms
|
8591 |
+
msgid "Your emails do not match."
|
8592 |
+
msgstr "ایمیل ها یکسان نمی باشند."
|
8593 |
+
|
8594 |
+
#: includes/api.php:1025
|
8595 |
+
#@ gravityforms
|
8596 |
+
msgid "Your form could not be found"
|
8597 |
+
msgstr "فرم شما یافت نمیشود"
|
8598 |
+
|
8599 |
+
#: js.php:451
|
8600 |
+
#@ gravityforms
|
8601 |
+
msgid ""
|
8602 |
+
"Your form currently has a product field with a blank label.\n"
|
8603 |
+
"Please enter a label for all product fields."
|
8604 |
+
msgstr ""
|
8605 |
+
"فرم شما یک فیلد محصول بدون برچسب دارد. \n"
|
8606 |
+
" لطفاً یک برچسب برای فیلدهای محصول وارد کنید."
|
8607 |
+
|
8608 |
+
#: js.php:460
|
8609 |
+
#@ gravityforms
|
8610 |
+
msgid ""
|
8611 |
+
"Your form currently has an option field without a product field.\n"
|
8612 |
+
"You must add a product field to your form."
|
8613 |
+
msgstr ""
|
8614 |
+
"در حال حاضر فرم شما یک فیلد گزینه ای بدون فیلد محصول را دارد. \n"
|
8615 |
+
" باید یک فیلد محصول به فرمتان اضافه کنید."
|
8616 |
+
|
8617 |
+
#: notification.php:849
|
8618 |
+
#@ gravityforms
|
8619 |
+
msgid "Your form does not have an email field. Add an email field to your form and try again."
|
8620 |
+
msgstr "فرم شما فیلد ایمیل ندارد. فیلد ایمیل اضافه کنید به فرمتان و دوباره امتحان کنید."
|
8621 |
+
|
8622 |
+
#: includes/fields/class-gf-field-password.php:54
|
8623 |
+
#, php-format
|
8624 |
+
#@ gravityforms
|
8625 |
+
msgid "Your password does not meet the required strength. %sHint: To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ %% ^ & )."
|
8626 |
+
msgstr "کلمه عبور انتخابی شما به اندازه کافی قوی نمی باشد %sراهنمایی: برای قوی تر شدن کلمه عبور از ترکیب حروف کوچک و بزرگ، اعداد و علائم رو به رو استفاده نمایید : ! \" ? $ %% ^ & )."
|
8627 |
+
|
8628 |
+
#: includes/fields/class-gf-field-password.php:47
|
8629 |
+
#@ gravityforms
|
8630 |
+
msgid "Your passwords do not match."
|
8631 |
+
msgstr "کلمه های عبور یکسان نیستند ."
|
8632 |
+
|
8633 |
+
#: includes/locking/class-gf-locking.php:290
|
8634 |
+
#, php-format
|
8635 |
+
#@ gravityforms
|
8636 |
+
msgid "Your request has been sent to %s."
|
8637 |
+
msgstr "درخواست شما برای %s فرستاده شد"
|
8638 |
+
|
8639 |
+
#: includes/locking/class-gf-locking.php:210
|
8640 |
+
#@ gravityforms
|
8641 |
+
msgid "Your request was rejected"
|
8642 |
+
msgstr "درخواست شما رد شده است"
|
8643 |
+
|
8644 |
+
#: includes/addon/class-gf-auto-upgrade.php:251
|
8645 |
+
#, php-format
|
8646 |
+
#@ gravityforms
|
8647 |
+
msgid "Your version of %s is up to date."
|
8648 |
+
msgstr "نسخه شما %s به روز است."
|
8649 |
+
|
8650 |
+
#: update.php:73
|
8651 |
+
#@ gravityforms
|
8652 |
+
msgid "Your version of Gravity Forms is up to date."
|
8653 |
+
msgstr "نسخه گرویتیفرم شما به روز است."
|
8654 |
+
|
8655 |
+
#: includes/fields/class-gf-field-address.php:404
|
8656 |
+
#: js.php:628
|
8657 |
+
#@ gravityforms
|
8658 |
+
msgid "ZIP / Postal Code"
|
8659 |
+
msgstr "کد پستی"
|
8660 |
+
|
8661 |
+
#: includes/fields/class-gf-field-address.php:409
|
8662 |
+
#@ gravityforms
|
8663 |
+
msgid "ZIP Code"
|
8664 |
+
msgstr "کد پستی"
|
8665 |
+
|
8666 |
+
#: includes/addon/class-gf-addon.php:2290
|
8667 |
+
#: includes/addon/class-gf-payment-addon.php:1844
|
8668 |
+
#@ gravityforms
|
8669 |
+
msgid "Zip"
|
8670 |
+
msgstr "کد پستی"
|
8671 |
+
|
8672 |
+
#: includes/fields/class-gf-field-address.php:128
|
8673 |
+
#@ gravityforms
|
8674 |
+
msgid "Zip Code"
|
8675 |
+
msgstr "کد پستی"
|
8676 |
+
|
8677 |
+
#: form_detail.php:1724
|
8678 |
+
#@ gravityforms
|
8679 |
+
msgid "Zip Code w/ Optional Plus Four"
|
8680 |
+
msgstr "کد پستی "
|
8681 |
+
|
8682 |
+
#: form_settings.php:1883
|
8683 |
+
#@ gravityforms
|
8684 |
+
msgid "\\'Cancel\\' to stop, \\'OK\\' to delete."
|
8685 |
+
msgstr "برای انصراف Cancel , برای عملیات حذف OK را انتخاب کنید."
|
8686 |
+
|
8687 |
+
#: entry_detail.php:803
|
8688 |
+
#@ gravityforms
|
8689 |
+
msgid "added on"
|
8690 |
+
msgstr "افزوده شد در"
|
8691 |
+
|
8692 |
+
#: form_detail.php:216
|
8693 |
+
#@ gravityforms
|
8694 |
+
msgid "begin form"
|
8695 |
+
msgstr "شروع فرم"
|
8696 |
+
|
8697 |
+
#: includes/fields/class-gf-field.php:787
|
8698 |
+
#@ gravityforms
|
8699 |
+
msgid "click to delete this field"
|
8700 |
+
msgstr "برای حذف فیلد کلیک نمایید"
|
8701 |
+
|
8702 |
+
#: includes/fields/class-gf-field.php:778
|
8703 |
+
#@ gravityforms
|
8704 |
+
msgid "click to duplicate this field"
|
8705 |
+
msgstr "برای تکثیر کردن فیلد کلیک نمایید"
|
8706 |
+
|
8707 |
+
#: form_detail.php:211
|
8708 |
+
#@ gravityforms
|
8709 |
+
msgid "click to edit page options"
|
8710 |
+
msgstr "برای ویرایش تنظیمات صفحه کلیک نمایید"
|
8711 |
+
|
8712 |
+
#: includes/fields/class-gf-field.php:801
|
8713 |
+
#@ gravityforms
|
8714 |
+
msgid "click to expand and edit the options for this field"
|
8715 |
+
msgstr "برای بازکردن و ویرایش تنظیمات این فیلد کلیک نمایید ."
|
8716 |
+
|
8717 |
+
#: entry_list.php:749
|
8718 |
+
#@ gravityforms
|
8719 |
+
msgid "click to select columns to display"
|
8720 |
+
msgstr "ستون های که می خواهید نمایش داده شود را با کلیک کردن انتخاب کنید."
|
8721 |
+
|
8722 |
+
#: print-entry.php:162
|
8723 |
+
#@ gravityforms
|
8724 |
+
msgid "close window"
|
8725 |
+
msgstr "بستن"
|
8726 |
+
|
8727 |
+
#: common.php:3793
|
8728 |
+
#: includes/addon/class-gf-addon.php:2597
|
8729 |
+
#: notification.php:314
|
8730 |
+
#: notification.php:896
|
8731 |
+
#@ gravityforms
|
8732 |
+
msgid "contains"
|
8733 |
+
msgstr "شامل می شود"
|
8734 |
+
|
8735 |
+
#: includes/addon/class-gf-payment-addon.php:1863
|
8736 |
+
#@ gravityforms
|
8737 |
+
msgid "day(s)"
|
8738 |
+
msgstr "روز"
|
8739 |
+
|
8740 |
+
#: includes/fields/class-gf-field-post-image.php:63
|
8741 |
+
#@ gravityforms
|
8742 |
+
msgid "delete"
|
8743 |
+
msgstr "حذف"
|
8744 |
+
|
8745 |
+
#: form_detail.php:423
|
8746 |
+
#@ gravityforms
|
8747 |
+
msgid "end of form"
|
8748 |
+
msgstr "انتهای فرم"
|
8749 |
+
|
8750 |
+
#: form_detail.php:421
|
8751 |
+
#@ gravityforms
|
8752 |
+
msgid "end of last page"
|
8753 |
+
msgstr "انتهای آخرین صفحه"
|
8754 |
+
|
8755 |
+
#: includes/fields/class-gf-field-page.php:27
|
8756 |
+
#@ gravityforms
|
8757 |
+
msgid "end of page"
|
8758 |
+
msgstr "انتهای صفحه"
|
8759 |
+
|
8760 |
+
#: common.php:3795
|
8761 |
+
#: includes/addon/class-gf-addon.php:2605
|
8762 |
+
#: notification.php:316
|
8763 |
+
#: notification.php:898
|
8764 |
+
#@ gravityforms
|
8765 |
+
msgid "ends with"
|
8766 |
+
msgstr "تمام می شود با"
|
8767 |
+
|
8768 |
+
#: form_detail.php:1506
|
8769 |
+
#@ gravityforms
|
8770 |
+
msgid "enter name"
|
8771 |
+
msgstr "نام را وارد نمایید"
|
8772 |
+
|
8773 |
+
#: entry_list.php:1591
|
8774 |
+
#@ gravityforms
|
8775 |
+
msgid "entries"
|
8776 |
+
msgstr "صندوق ورودی"
|
8777 |
+
|
8778 |
+
#: entry_list.php:1591
|
8779 |
+
#@ gravityforms
|
8780 |
+
msgid "entry"
|
8781 |
+
msgstr "پیام ورودی"
|
8782 |
+
|
8783 |
+
#: includes/addon/class-gf-feed-addon.php:1634
|
8784 |
+
#@ gravityforms
|
8785 |
+
msgid "feed"
|
8786 |
+
msgstr "خوراک"
|
8787 |
+
|
8788 |
+
#: includes/addon/class-gf-feed-addon.php:1635
|
8789 |
+
#@ gravityforms
|
8790 |
+
msgid "feeds"
|
8791 |
+
msgstr "خوراک ها"
|
8792 |
+
|
8793 |
+
#: export.php:271
|
8794 |
+
#@ gravityforms
|
8795 |
+
msgid "form"
|
8796 |
+
msgstr "فرم"
|
8797 |
+
|
8798 |
+
#: export.php:271
|
8799 |
+
#@ gravityforms
|
8800 |
+
msgid "forms"
|
8801 |
+
msgstr "فرم ها"
|
8802 |
+
|
8803 |
+
#: common.php:3791
|
8804 |
+
#: includes/addon/class-gf-addon.php:2589
|
8805 |
+
#: notification.php:312
|
8806 |
+
#: notification.php:894
|
8807 |
+
#@ gravityforms
|
8808 |
+
msgid "greater than"
|
8809 |
+
msgstr "بیشتر یا بزرگتر از"
|
8810 |
+
|
8811 |
+
#. translators: plugin header field 'PluginURI'
|
8812 |
+
#: gravityforms.php:0
|
8813 |
+
#@ gravityforms
|
8814 |
+
msgid "http://www.gravityforms.com"
|
8815 |
+
msgstr "http://www.gravityforms.ir"
|
8816 |
+
|
8817 |
+
#. translators: plugin header field 'AuthorURI'
|
8818 |
+
#: gravityforms.php:0
|
8819 |
+
#@ gravityforms
|
8820 |
+
msgid "http://www.rocketgenius.com"
|
8821 |
+
msgstr "http://www.rocketgenius.com"
|
8822 |
+
|
8823 |
+
#: notification.php:308
|
8824 |
+
#: notification.php:889
|
8825 |
+
#@ gravityforms
|
8826 |
+
msgid "if"
|
8827 |
+
msgstr "اگر"
|
8828 |
+
|
8829 |
+
#: common.php:4403
|
8830 |
+
#@ gravityforms
|
8831 |
+
msgid "in progress"
|
8832 |
+
msgstr "در حال پردازش"
|
8833 |
+
|
8834 |
+
#: entry_detail.php:617
|
8835 |
+
#@ gravityforms
|
8836 |
+
msgid "include notes"
|
8837 |
+
msgstr "شامل شدن یادداشت ها"
|
8838 |
+
|
8839 |
+
#: includes/addon/class-gf-payment-addon.php:1581
|
8840 |
+
#@ gravityforms
|
8841 |
+
msgid "infinite"
|
8842 |
+
msgstr "نامحدود"
|
8843 |
+
|
8844 |
+
#: common.php:3789
|
8845 |
+
#: includes/addon/class-gf-addon.php:2581
|
8846 |
+
#: notification.php:310
|
8847 |
+
#: notification.php:892
|
8848 |
+
#@ gravityforms
|
8849 |
+
msgid "is"
|
8850 |
+
msgstr "هست"
|
8851 |
+
|
8852 |
+
#: common.php:3790
|
8853 |
+
#: includes/addon/class-gf-addon.php:2585
|
8854 |
+
#: notification.php:311
|
8855 |
+
#: notification.php:893
|
8856 |
+
#@ gravityforms
|
8857 |
+
msgid "is not"
|
8858 |
+
msgstr "نیست"
|
8859 |
+
|
8860 |
+
#: includes/fields/class-gf-field-creditcard.php:59
|
8861 |
+
#@ gravityforms
|
8862 |
+
msgid "is not supported. Please enter one of the supported credit cards."
|
8863 |
+
msgstr "عدم پشتیبانی . لطفاً یکی از کارتهای اعتباری پشتیبانی شده را انتخاب نمایید ."
|
8864 |
+
|
8865 |
+
#: common.php:3792
|
8866 |
+
#: includes/addon/class-gf-addon.php:2593
|
8867 |
+
#: notification.php:313
|
8868 |
+
#: notification.php:895
|
8869 |
+
#@ gravityforms
|
8870 |
+
msgid "less than"
|
8871 |
+
msgstr "کمتر یا کوچکتر از"
|
8872 |
+
|
8873 |
+
#: form_display.php:2326
|
8874 |
+
#@ gravityforms
|
8875 |
+
msgid "max characters"
|
8876 |
+
msgstr "حداکثر کاراکتر"
|
8877 |
+
|
8878 |
+
#: includes/addon/class-gf-payment-addon.php:1892
|
8879 |
+
#@ gravityforms
|
8880 |
+
msgctxt "metabox title"
|
8881 |
+
msgid "Filter"
|
8882 |
+
msgstr "فیلتر"
|
8883 |
+
|
8884 |
+
#: includes/addon/class-gf-payment-addon.php:1865
|
8885 |
+
#@ gravityforms
|
8886 |
+
msgid "month(s)"
|
8887 |
+
msgstr "ماه"
|
8888 |
+
|
8889 |
+
#: form_display.php:2326
|
8890 |
+
#: form_display.php:2829
|
8891 |
+
#@ gravityforms
|
8892 |
+
msgid "of"
|
8893 |
+
msgstr "از"
|
8894 |
+
|
8895 |
+
#: common.php:3788
|
8896 |
+
#@ gravityforms
|
8897 |
+
msgid "of the following match:"
|
8898 |
+
msgstr "مطابق گزینه های زیر باشند:"
|
8899 |
+
|
8900 |
+
#: includes/addon/class-gf-payment-addon.php:702
|
8901 |
+
#@ gravityforms
|
8902 |
+
msgid "options: "
|
8903 |
+
msgstr "گزینه ها : "
|
8904 |
+
|
8905 |
+
#: includes/addon/class-gf-payment-addon.php:1928
|
8906 |
+
#: includes/addon/class-gf-payment-addon.php:1935
|
8907 |
+
#: includes/addon/class-gf-payment-addon.php:1943
|
8908 |
+
#: includes/addon/class-gf-payment-addon.php:1950
|
8909 |
+
#@ gravityforms
|
8910 |
+
msgid "orders"
|
8911 |
+
msgstr "سفارشات"
|
8912 |
+
|
8913 |
+
#: includes/addon/class-gf-payment-addon.php:2940
|
8914 |
+
#, php-format
|
8915 |
+
#@ gravityforms
|
8916 |
+
msgctxt "paging"
|
8917 |
+
msgid "%1$s of %2$s"
|
8918 |
+
msgstr "%1$s از %2$s"
|
8919 |
+
|
8920 |
+
#: form_settings.php:638
|
8921 |
+
#@ gravityforms
|
8922 |
+
msgid "per day"
|
8923 |
+
msgstr "در روز"
|
8924 |
+
|
8925 |
+
#: form_settings.php:640
|
8926 |
+
#@ gravityforms
|
8927 |
+
msgid "per month"
|
8928 |
+
msgstr "در ماه"
|
8929 |
+
|
8930 |
+
#: form_settings.php:639
|
8931 |
+
#@ gravityforms
|
8932 |
+
msgid "per week"
|
8933 |
+
msgstr "در هفته"
|
8934 |
+
|
8935 |
+
#: form_settings.php:641
|
8936 |
+
#@ gravityforms
|
8937 |
+
msgid "per year"
|
8938 |
+
msgstr "در سال"
|
8939 |
+
|
8940 |
+
#: settings.php:410
|
8941 |
+
#@ gravityforms
|
8942 |
+
msgid "reCAPTCHA Settings"
|
8943 |
+
msgstr "تنظیمات reCAPTCHA"
|
8944 |
+
|
8945 |
+
#: includes/addon/class-gf-payment-addon.php:2419
|
8946 |
+
#@ gravityforms
|
8947 |
+
msgctxt "regarding a payment method"
|
8948 |
+
msgid "Any"
|
8949 |
+
msgstr "حداقل یکی"
|
8950 |
+
|
8951 |
+
#. translators: plugin header field 'Author'
|
8952 |
+
#: gravityforms.php:0
|
8953 |
+
#@ gravityforms
|
8954 |
+
msgid "rocketgenius"
|
8955 |
+
msgstr "rocketgenius"
|
8956 |
+
|
8957 |
+
#: includes/addon/class-gf-payment-addon.php:2868
|
8958 |
+
#@ gravityforms
|
8959 |
+
msgid "sale"
|
8960 |
+
msgstr "فروش"
|
8961 |
+
|
8962 |
+
#: includes/addon/class-gf-payment-addon.php:2869
|
8963 |
+
#@ gravityforms
|
8964 |
+
msgid "sales"
|
8965 |
+
msgstr "فروش ها"
|
8966 |
+
|
8967 |
+
#: entry_detail.php:890
|
8968 |
+
#@ gravityforms
|
8969 |
+
msgid "show empty fields"
|
8970 |
+
msgstr "نمایش فیلدهای پرنشده"
|
8971 |
+
|
8972 |
+
#: form_detail.php:1428
|
8973 |
+
#@ gravityforms
|
8974 |
+
msgid "show values"
|
8975 |
+
msgstr "نمایش مقدارها"
|
8976 |
+
|
8977 |
+
#: common.php:3794
|
8978 |
+
#: includes/addon/class-gf-addon.php:2601
|
8979 |
+
#: notification.php:315
|
8980 |
+
#: notification.php:897
|
8981 |
+
#@ gravityforms
|
8982 |
+
msgid "starts with"
|
8983 |
+
msgstr "شروع می شود با"
|
8984 |
+
|
8985 |
+
#: includes/addon/class-gf-payment-addon.php:1927
|
8986 |
+
#: includes/addon/class-gf-payment-addon.php:1934
|
8987 |
+
#: includes/addon/class-gf-payment-addon.php:1942
|
8988 |
+
#: includes/addon/class-gf-payment-addon.php:1949
|
8989 |
+
#@ gravityforms
|
8990 |
+
msgid "subscriptions"
|
8991 |
+
msgstr "اشتراک ها"
|
8992 |
+
|
8993 |
+
#: common.php:3780
|
8994 |
+
#@ gravityforms
|
8995 |
+
msgid "this field if"
|
8996 |
+
msgstr "این فیلد اگر"
|
8997 |
+
|
8998 |
+
#: common.php:3783
|
8999 |
+
#@ gravityforms
|
9000 |
+
msgid "this form button if"
|
9001 |
+
msgstr "این دکمه فرم اگر"
|
9002 |
+
|
9003 |
+
#: common.php:3782
|
9004 |
+
#@ gravityforms
|
9005 |
+
msgid "this page"
|
9006 |
+
msgstr "این صفحه"
|
9007 |
+
|
9008 |
+
#: includes/addon/class-gf-payment-addon.php:1891
|
9009 |
+
#@ gravityforms
|
9010 |
+
msgctxt "toolbar label"
|
9011 |
+
msgid "Sales"
|
9012 |
+
msgstr "فروش"
|
9013 |
+
|
9014 |
+
#: includes/fields/class-gf-field-page.php:27
|
9015 |
+
#@ gravityforms
|
9016 |
+
msgid "top of new page"
|
9017 |
+
msgstr "بالای صفحه جدید"
|
9018 |
+
|
9019 |
+
#: form_detail.php:218
|
9020 |
+
#@ gravityforms
|
9021 |
+
msgid "top of the first page"
|
9022 |
+
msgstr "بالای اولین صفحه"
|
9023 |
+
|
9024 |
+
#: form_settings.php:637
|
9025 |
+
#@ gravityforms
|
9026 |
+
msgid "total entries"
|
9027 |
+
msgstr "تمام پیام های ورودی"
|
9028 |
+
|
9029 |
+
#: includes/addon/class-gf-payment-addon.php:1864
|
9030 |
+
#@ gravityforms
|
9031 |
+
msgid "week(s)"
|
9032 |
+
msgstr "هفته"
|
9033 |
+
|
9034 |
+
#: includes/addon/class-gf-payment-addon.php:1866
|
9035 |
+
#@ gravityforms
|
9036 |
+
msgid "year(s)"
|
9037 |
+
msgstr "سال"
|
9038 |
+
|
9039 |
+
#: common.php:514
|
9040 |
+
#: form_detail.php:2686
|
9041 |
+
#@ gravityforms
|
9042 |
+
msgid "HTTP User Agent"
|
9043 |
+
msgstr "عامل کاربری HTTP"
|
9044 |
+
|
9045 |
+
#: common.php:2124
|
9046 |
+
#, php-format
|
9047 |
+
#@ gravityforms
|
9048 |
+
msgid "Gravity Forms requires WordPress %s or greater. You must upgrade WordPress in order to use Gravity Forms"
|
9049 |
+
msgstr "گرویتیفرم به وردپرس نسخه %s یا بالاتر نیازمند است. به منظور استفاده از گرویتیفرم شما باید نسخه وردپرس خود را بهروز نمایید"
|
9050 |
+
|
9051 |
+
#: common.php:2831
|
9052 |
+
#@ default
|
9053 |
+
msgid "There was an problem while verifying your file."
|
9054 |
+
msgstr "یک مشکل با تایید فایل شما وجود دارد."
|
9055 |
+
|
9056 |
+
#: common.php:2834
|
9057 |
+
#@ default
|
9058 |
+
msgid "Sorry, this file extension is not permitted for security reasons."
|
9059 |
+
msgstr "متاسفیم! پسوند این فایل به دلیل مسائل امنیتی ممنوع شده است."
|
9060 |
+
|
9061 |
+
#: common.php:2837
|
9062 |
+
#@ default
|
9063 |
+
msgid "Sorry, this file type is not permitted for security reasons."
|
9064 |
+
msgstr "متاسفیم! نوع این فایل به دلیل مسائل امنیتی ممنوع شده است."
|
9065 |
+
|
9066 |
+
#: common.php:3781
|
9067 |
+
#@ gravityforms
|
9068 |
+
msgid "this section if"
|
9069 |
+
msgstr "این بخش اگر"
|
9070 |
+
|
9071 |
+
#: common.php:3815
|
9072 |
+
#@ gravityforms
|
9073 |
+
msgid "This form contains conditional logic dependent upon this field. Are you sure you want to mark this field as Admin Only? 'OK' to confirm, 'Cancel' to abort."
|
9074 |
+
msgstr "این فرم دارای منطق شرطی وابسته به این فیلد است. آیا به عنوان مدیر، مطمئن هستید که صرفا فقط میخواهید این فیلد را نشانهگذاری نمایید؟ 'OK' برای تایید, 'Cancel' برای عدم تایید."
|
9075 |
+
|
9076 |
+
#: common.php:4158
|
9077 |
+
#: common.php:4234
|
9078 |
+
#: common.php:4300
|
9079 |
+
#@ gravityforms
|
9080 |
+
msgid "yyyy-mm-dd"
|
9081 |
+
msgstr "yyyy-mm-dd"
|
9082 |
+
|
9083 |
+
#: currency.php:118
|
9084 |
+
#@ gravityforms
|
9085 |
+
msgid "U.S. Dollar"
|
9086 |
+
msgstr "دلار آمریکا"
|
9087 |
+
|
9088 |
+
#: currency.php:119
|
9089 |
+
#@ gravityforms
|
9090 |
+
msgid "Pound Sterling"
|
9091 |
+
msgstr "پوند استرلینگ"
|
9092 |
+
|
9093 |
+
#: currency.php:120
|
9094 |
+
#@ gravityforms
|
9095 |
+
msgid "Euro"
|
9096 |
+
msgstr "یورو"
|
9097 |
+
|
9098 |
+
#: currency.php:121
|
9099 |
+
#@ gravityforms
|
9100 |
+
msgid "Australian Dollar"
|
9101 |
+
msgstr "دلار استرالیا"
|
9102 |
+
|
9103 |
+
#: currency.php:122
|
9104 |
+
#@ gravityforms
|
9105 |
+
msgid "Brazilian Real"
|
9106 |
+
msgstr "رئال برزیل"
|
9107 |
+
|
9108 |
+
#: currency.php:123
|
9109 |
+
#@ gravityforms
|
9110 |
+
msgid "Canadian Dollar"
|
9111 |
+
msgstr "دلار کانادا"
|
9112 |
+
|
9113 |
+
#: currency.php:124
|
9114 |
+
#@ gravityforms
|
9115 |
+
msgid "Czech Koruna"
|
9116 |
+
msgstr "کرونا جمهوری چک"
|
9117 |
+
|
9118 |
+
#: currency.php:125
|
9119 |
+
#@ gravityforms
|
9120 |
+
msgid "Danish Krone"
|
9121 |
+
msgstr "کرون دانمارک"
|
9122 |
+
|
9123 |
+
#: currency.php:126
|
9124 |
+
#@ gravityforms
|
9125 |
+
msgid "Hong Kong Dollar"
|
9126 |
+
msgstr "دلار هنگکنگ"
|
9127 |
+
|
9128 |
+
#: currency.php:127
|
9129 |
+
#@ gravityforms
|
9130 |
+
msgid "Hungarian Forint"
|
9131 |
+
msgstr "فورینت مجارستان"
|
9132 |
+
|
9133 |
+
#: currency.php:128
|
9134 |
+
#@ gravityforms
|
9135 |
+
msgid "Israeli New Sheqel"
|
9136 |
+
msgstr "شکل جدید اسرائیل"
|
9137 |
+
|
9138 |
+
#: currency.php:129
|
9139 |
+
#@ gravityforms
|
9140 |
+
msgid "Japanese Yen"
|
9141 |
+
msgstr "ین ژاپن"
|
9142 |
+
|
9143 |
+
#: currency.php:130
|
9144 |
+
#@ gravityforms
|
9145 |
+
msgid "Malaysian Ringgit"
|
9146 |
+
msgstr "رینگیت مالزی"
|
9147 |
+
|
9148 |
+
#: currency.php:131
|
9149 |
+
#@ gravityforms
|
9150 |
+
msgid "Mexican Peso"
|
9151 |
+
msgstr "پزو مکزیک"
|
9152 |
+
|
9153 |
+
#: currency.php:132
|
9154 |
+
#@ gravityforms
|
9155 |
+
msgid "Norwegian Krone"
|
9156 |
+
msgstr "کرون نروژ"
|
9157 |
+
|
9158 |
+
#: currency.php:133
|
9159 |
+
#@ gravityforms
|
9160 |
+
msgid "New Zealand Dollar"
|
9161 |
+
msgstr "دلار نیوزیلند"
|
9162 |
+
|
9163 |
+
#: currency.php:134
|
9164 |
+
#@ gravityforms
|
9165 |
+
msgid "Philippine Peso"
|
9166 |
+
msgstr "پزو فیلیپین"
|
9167 |
+
|
9168 |
+
#: currency.php:135
|
9169 |
+
#@ gravityforms
|
9170 |
+
msgid "Polish Zloty"
|
9171 |
+
msgstr "زلوتی لهستان"
|
9172 |
+
|
9173 |
+
#: currency.php:136
|
9174 |
+
#@ gravityforms
|
9175 |
+
msgid "Russian Ruble"
|
9176 |
+
msgstr "روبل روسیه"
|
9177 |
+
|
9178 |
+
#: currency.php:137
|
9179 |
+
#@ gravityforms
|
9180 |
+
msgid "Singapore Dollar"
|
9181 |
+
msgstr "دلار سنگاپور"
|
9182 |
+
|
9183 |
+
#: currency.php:138
|
9184 |
+
#@ gravityforms
|
9185 |
+
msgid "South African Rand"
|
9186 |
+
msgstr "راند آفریقای جنوبی"
|
9187 |
+
|
9188 |
+
#: currency.php:139
|
9189 |
+
#@ gravityforms
|
9190 |
+
msgid "Swedish Krona"
|
9191 |
+
msgstr "کرون سوئد"
|
9192 |
+
|
9193 |
+
#: currency.php:140
|
9194 |
+
#@ gravityforms
|
9195 |
+
msgid "Swiss Franc"
|
9196 |
+
msgstr "فرانک سوئیس"
|
9197 |
+
|
9198 |
+
#: currency.php:141
|
9199 |
+
#@ gravityforms
|
9200 |
+
msgid "Taiwan New Dollar"
|
9201 |
+
msgstr "دلار جدید تایوان"
|
9202 |
+
|
9203 |
+
#: currency.php:142
|
9204 |
+
#@ gravityforms
|
9205 |
+
msgid "Thai Baht"
|
9206 |
+
msgstr "بات تایلند"
|
9207 |
+
|
9208 |
+
#: entry_list.php:144
|
9209 |
+
#@ gravityforms
|
9210 |
+
msgid "Default Filter"
|
9211 |
+
msgstr "فیلتر پیشفرض"
|
9212 |
+
|
9213 |
+
#: entry_list.php:145
|
9214 |
+
#@ gravityforms
|
9215 |
+
msgid "Pagination"
|
9216 |
+
msgstr "صفحهگذاری"
|
9217 |
+
|
9218 |
+
#: entry_list.php:146
|
9219 |
+
#@ gravityforms
|
9220 |
+
msgid "Number of entries per page:"
|
9221 |
+
msgstr "تعداد ورودیها در هر صفحه"
|
9222 |
+
|
9223 |
+
#: entry_list.php:777
|
9224 |
+
#@ default
|
9225 |
+
msgid "Select entry"
|
9226 |
+
msgstr "یک پیام ورودی انتخاب کنید"
|
9227 |
+
|
9228 |
+
#: entry_list.php:1137
|
9229 |
+
#: form_list.php:694
|
9230 |
+
#@ default
|
9231 |
+
msgid "Show more details"
|
9232 |
+
msgstr "مشاهده جزییات بیشتر"
|
9233 |
+
|
9234 |
+
#: entry_list.php:1848
|
9235 |
+
#@ gravityforms
|
9236 |
+
msgid "Please select at least one entry..."
|
9237 |
+
msgstr "لطفا حداقل یک وروردی را انتخاب نمایید..."
|
9238 |
+
|
9239 |
+
#: export.php:548
|
9240 |
+
#@ gravityforms
|
9241 |
+
msgid "Exporting entries. Progress:"
|
9242 |
+
msgstr "خروجیگرفتن از ورودیها. میزان پیشرفت:"
|
9243 |
+
|
9244 |
+
#: form_detail.php:210
|
9245 |
+
#@ gravityforms
|
9246 |
+
msgid "Paging: Options"
|
9247 |
+
msgstr "صفحهبندی: گزینهها"
|
9248 |
+
|
9249 |
+
#: form_detail.php:416
|
9250 |
+
#@ gravityforms
|
9251 |
+
msgid "End Page: Options"
|
9252 |
+
msgstr "پایان صفحه: گزینهها"
|
9253 |
+
|
9254 |
+
#: form_detail.php:455
|
9255 |
+
#@ gravityforms
|
9256 |
+
msgid "Button Text:"
|
9257 |
+
msgstr "متن دکمه:"
|
9258 |
+
|
9259 |
+
#: form_detail.php:854
|
9260 |
+
#@ gravityforms
|
9261 |
+
msgid "Light"
|
9262 |
+
msgstr "روشن"
|
9263 |
+
|
9264 |
+
#: form_detail.php:855
|
9265 |
+
#@ gravityforms
|
9266 |
+
msgid "Dark"
|
9267 |
+
msgstr "تیره"
|
9268 |
+
|
9269 |
+
#: form_detail.php:904
|
9270 |
+
#@ gravityforms
|
9271 |
+
msgid "Draft"
|
9272 |
+
msgstr "پیشنویس"
|
9273 |
+
|
9274 |
+
#: form_detail.php:905
|
9275 |
+
#@ gravityforms
|
9276 |
+
msgid "Pending Review"
|
9277 |
+
msgstr "در انتظار بررسی"
|
9278 |
+
|
9279 |
+
#: form_detail.php:906
|
9280 |
+
#@ gravityforms
|
9281 |
+
msgid "Published"
|
9282 |
+
msgstr "منتشرشده"
|
9283 |
+
|
9284 |
+
#: form_detail.php:1047
|
9285 |
+
#: form_detail.php:1065
|
9286 |
+
#@ gravityforms
|
9287 |
+
msgid "Content Template"
|
9288 |
+
msgstr "قالب محتوا"
|
9289 |
+
|
9290 |
+
#: form_detail.php:1119
|
9291 |
+
#@ gravityforms
|
9292 |
+
msgid "Featured Image"
|
9293 |
+
msgstr "تصویر ویژه"
|
9294 |
+
|
9295 |
+
#: form_detail.php:1320
|
9296 |
+
#@ gravityforms
|
9297 |
+
msgid "Multiple Files"
|
9298 |
+
msgstr "فایلهای ترکیبی"
|
9299 |
+
|
9300 |
+
#: form_detail.php:1354
|
9301 |
+
#, php-format
|
9302 |
+
#@ gravityforms
|
9303 |
+
msgid "Maximum allowed on this server: %sMB"
|
9304 |
+
msgstr "حداکثر مجاز بر روی این سرور: %sMB"
|
9305 |
+
|
9306 |
+
#: form_detail.php:1363
|
9307 |
+
#@ gravityforms
|
9308 |
+
msgid "Columns"
|
9309 |
+
msgstr "ستونها"
|
9310 |
+
|
9311 |
+
#: form_detail.php:1450
|
9312 |
+
#: includes/fields/class-gf-field-address.php:501
|
9313 |
+
#@ gravityforms
|
9314 |
+
msgid "Australia"
|
9315 |
+
msgstr "استرالیا"
|
9316 |
+
|
9317 |
+
#: form_detail.php:1452
|
9318 |
+
#@ gravityforms
|
9319 |
+
msgid "18-24"
|
9320 |
+
msgstr "18-24"
|
9321 |
+
|
9322 |
+
#: form_detail.php:1452
|
9323 |
+
#@ gravityforms
|
9324 |
+
msgid "25-34"
|
9325 |
+
msgstr "25-34"
|
9326 |
+
|
9327 |
+
#: form_detail.php:1452
|
9328 |
+
#@ gravityforms
|
9329 |
+
msgid "35-44"
|
9330 |
+
msgstr "35-44"
|
9331 |
+
|
9332 |
+
#: form_detail.php:1452
|
9333 |
+
#@ gravityforms
|
9334 |
+
msgid "45-54"
|
9335 |
+
msgstr "45-54"
|
9336 |
+
|
9337 |
+
#: form_detail.php:1452
|
9338 |
+
#@ gravityforms
|
9339 |
+
msgid "55-64"
|
9340 |
+
msgstr "55-64"
|
9341 |
+
|
9342 |
+
#: form_detail.php:1457
|
9343 |
+
#@ gravityforms
|
9344 |
+
msgid "Graduate or Professional Degree"
|
9345 |
+
msgstr "فارغالتحصیل یا مدرک حرفهای"
|
9346 |
+
|
9347 |
+
#: form_detail.php:1460
|
9348 |
+
#@ gravityforms
|
9349 |
+
msgid "Every day"
|
9350 |
+
msgstr "هرروز"
|
9351 |
+
|
9352 |
+
#: form_detail.php:1460
|
9353 |
+
#@ gravityforms
|
9354 |
+
msgid "2 to 3 times a month"
|
9355 |
+
msgstr "2 تا 3بار در ماه"
|
9356 |
+
|
9357 |
+
#: form_detail.php:1461
|
9358 |
+
#@ gravityforms
|
9359 |
+
msgid "Over 3 years"
|
9360 |
+
msgstr "بیش از 3 سال"
|
9361 |
+
|
9362 |
+
#: form_detail.php:1642
|
9363 |
+
#@ gravityforms
|
9364 |
+
msgid "3D"
|
9365 |
+
msgstr "سهبعدی"
|
9366 |
+
|
9367 |
+
#: form_detail.php:1830
|
9368 |
+
#@ gravityforms
|
9369 |
+
msgid "Do not round"
|
9370 |
+
msgstr "یکسان نمیباشند"
|
9371 |
+
|
9372 |
+
#: form_detail.php:1894
|
9373 |
+
#: form_detail.php:1905
|
9374 |
+
#@ gravityforms
|
9375 |
+
msgid "Placeholder text is not supported when using the Rich Text Editor."
|
9376 |
+
msgstr "زمانیکه از ویرایشگر متن قوی استفاده میشود، متن پیشنمایش پشتیبانی نخواهد شد."
|
9377 |
+
|
9378 |
+
#: form_detail.php:2170
|
9379 |
+
#@ gravityforms
|
9380 |
+
msgid "Arabic"
|
9381 |
+
msgstr "عربی"
|
9382 |
+
|
9383 |
+
#: form_detail.php:2171
|
9384 |
+
#@ gravityforms
|
9385 |
+
msgid "Bengali"
|
9386 |
+
msgstr "بنگالی"
|
9387 |
+
|
9388 |
+
#: form_detail.php:2172
|
9389 |
+
#@ gravityforms
|
9390 |
+
msgid "Bulgarian"
|
9391 |
+
msgstr "بلغاری"
|
9392 |
+
|
9393 |
+
#: form_detail.php:2173
|
9394 |
+
#@ gravityforms
|
9395 |
+
msgid "Catalan"
|
9396 |
+
msgstr "کاتالانی"
|
9397 |
+
|
9398 |
+
#: form_detail.php:2174
|
9399 |
+
#@ gravityforms
|
9400 |
+
msgid "Chinese (Simplified)"
|
9401 |
+
msgstr "چینی (سادهشده)"
|
9402 |
+
|
9403 |
+
#: form_detail.php:2175
|
9404 |
+
#@ gravityforms
|
9405 |
+
msgid "Chinese (Traditional)"
|
9406 |
+
msgstr "چینی (مرسوم)"
|
9407 |
+
|
9408 |
+
#: form_detail.php:2176
|
9409 |
+
#@ gravityforms
|
9410 |
+
msgid "Croatian"
|
9411 |
+
msgstr "کرواسیایی"
|
9412 |
+
|
9413 |
+
#: form_detail.php:2177
|
9414 |
+
#@ gravityforms
|
9415 |
+
msgid "Czech"
|
9416 |
+
msgstr "چکوسلواکیایی"
|
9417 |
+
|
9418 |
+
#: form_detail.php:2178
|
9419 |
+
#@ gravityforms
|
9420 |
+
msgid "Danish"
|
9421 |
+
msgstr ""
|
9422 |
+
|
9423 |
+
#: form_detail.php:2179
|
9424 |
+
#@ gravityforms
|
9425 |
+
msgid "Dutch"
|
9426 |
+
msgstr ""
|
9427 |
+
|
9428 |
+
#: form_detail.php:2180
|
9429 |
+
#@ gravityforms
|
9430 |
+
msgid "English (UK)"
|
9431 |
+
msgstr ""
|
9432 |
+
|
9433 |
+
#: form_detail.php:2181
|
9434 |
+
#@ gravityforms
|
9435 |
+
msgid "English (US)"
|
9436 |
+
msgstr ""
|
9437 |
+
|
9438 |
+
#: form_detail.php:2182
|
9439 |
+
#@ gravityforms
|
9440 |
+
msgid "Estonian"
|
9441 |
+
msgstr ""
|
9442 |
+
|
9443 |
+
#: form_detail.php:2183
|
9444 |
+
#@ gravityforms
|
9445 |
+
msgid "Filipino"
|
9446 |
+
msgstr ""
|
9447 |
+
|
9448 |
+
#: form_detail.php:2184
|
9449 |
+
#@ gravityforms
|
9450 |
+
msgid "Finnish"
|
9451 |
+
msgstr ""
|
9452 |
+
|
9453 |
+
#: form_detail.php:2185
|
9454 |
+
#@ gravityforms
|
9455 |
+
msgid "French"
|
9456 |
+
msgstr ""
|
9457 |
+
|
9458 |
+
#: form_detail.php:2186
|
9459 |
+
#@ gravityforms
|
9460 |
+
msgid "French (Canadian)"
|
9461 |
+
msgstr ""
|
9462 |
+
|
9463 |
+
#: form_detail.php:2187
|
9464 |
+
#@ gravityforms
|
9465 |
+
msgid "German"
|
9466 |
+
msgstr "آلمانی"
|
9467 |
+
|
9468 |
+
#: form_detail.php:2188
|
9469 |
+
#@ gravityforms
|
9470 |
+
msgid "Gujarati"
|
9471 |
+
msgstr ""
|
9472 |
+
|
9473 |
+
#: form_detail.php:2189
|
9474 |
+
#@ gravityforms
|
9475 |
+
msgid "German (Austria)"
|
9476 |
+
msgstr ""
|
9477 |
+
|
9478 |
+
#: form_detail.php:2190
|
9479 |
+
#@ gravityforms
|
9480 |
+
msgid "German (Switzerland)"
|
9481 |
+
msgstr ""
|
9482 |
+
|
9483 |
+
#: form_detail.php:2191
|
9484 |
+
#@ gravityforms
|
9485 |
+
msgid "Greek"
|
9486 |
+
msgstr "یونانی"
|
9487 |
+
|
9488 |
+
#: form_detail.php:2192
|
9489 |
+
#@ gravityforms
|
9490 |
+
msgid "Hebrew"
|
9491 |
+
msgstr ""
|
9492 |
+
|
9493 |
+
#: form_detail.php:2193
|
9494 |
+
#@ gravityforms
|
9495 |
+
msgid "Hindi"
|
9496 |
+
msgstr "هندی"
|
9497 |
+
|
9498 |
+
#: form_detail.php:2194
|
9499 |
+
#@ gravityforms
|
9500 |
+
msgid "Hungarian"
|
9501 |
+
msgstr "مجارستانی"
|
9502 |
+
|
9503 |
+
#: form_detail.php:2195
|
9504 |
+
#@ gravityforms
|
9505 |
+
msgid "Indonesian"
|
9506 |
+
msgstr "اندونزیایی"
|
9507 |
+
|
9508 |
+
#: form_detail.php:2196
|
9509 |
+
#@ gravityforms
|
9510 |
+
msgid "Italian"
|
9511 |
+
msgstr "ایتالیایی"
|
9512 |
+
|
9513 |
+
#: form_detail.php:2197
|
9514 |
+
#@ gravityforms
|
9515 |
+
msgid "Japanese"
|
9516 |
+
msgstr "ژاپنی"
|
9517 |
+
|
9518 |
+
#: form_detail.php:2198
|
9519 |
+
#@ gravityforms
|
9520 |
+
msgid "Kannada"
|
9521 |
+
msgstr ""
|
9522 |
+
|
9523 |
+
#: form_detail.php:2199
|
9524 |
+
#@ gravityforms
|
9525 |
+
msgid "Korean"
|
9526 |
+
msgstr "کرهای"
|
9527 |
+
|
9528 |
+
#: form_detail.php:2200
|
9529 |
+
#@ gravityforms
|
9530 |
+
msgid "Latvian"
|
9531 |
+
msgstr ""
|
9532 |
+
|
9533 |
+
#: form_detail.php:2201
|
9534 |
+
#@ gravityforms
|
9535 |
+
msgid "Lithuanian"
|
9536 |
+
msgstr ""
|
9537 |
+
|
9538 |
+
#: form_detail.php:2202
|
9539 |
+
#@ gravityforms
|
9540 |
+
msgid "Malay"
|
9541 |
+
msgstr ""
|
9542 |
+
|
9543 |
+
#: form_detail.php:2203
|
9544 |
+
#@ gravityforms
|
9545 |
+
msgid "Malayalam"
|
9546 |
+
msgstr ""
|
9547 |
+
|
9548 |
+
#: form_detail.php:2204
|
9549 |
+
#@ gravityforms
|
9550 |
+
msgid "Marathi"
|
9551 |
+
msgstr ""
|
9552 |
+
|
9553 |
+
#: form_detail.php:2205
|
9554 |
+
#@ gravityforms
|
9555 |
+
msgid "Norwegian"
|
9556 |
+
msgstr "نروژی"
|
9557 |
+
|
9558 |
+
#: form_detail.php:2206
|
9559 |
+
#@ gravityforms
|
9560 |
+
msgid "Persian"
|
9561 |
+
msgstr "ایرانی"
|
9562 |
+
|
9563 |
+
#: form_detail.php:2207
|
9564 |
+
#@ gravityforms
|
9565 |
+
msgid "Polish"
|
9566 |
+
msgstr "لهستانی"
|
9567 |
+
|
9568 |
+
#: form_detail.php:2208
|
9569 |
+
#@ gravityforms
|
9570 |
+
msgid "Portuguese"
|
9571 |
+
msgstr "پرتغالی"
|
9572 |
+
|
9573 |
+
#: form_detail.php:2209
|
9574 |
+
#@ gravityforms
|
9575 |
+
msgid "Portuguese (Brazil)"
|
9576 |
+
msgstr ""
|
9577 |
+
|
9578 |
+
#: form_detail.php:2210
|
9579 |
+
#@ gravityforms
|
9580 |
+
msgid "Portuguese (Portugal)"
|
9581 |
+
msgstr ""
|
9582 |
+
|
9583 |
+
#: form_detail.php:2211
|
9584 |
+
#@ gravityforms
|
9585 |
+
msgid "Romanian"
|
9586 |
+
msgstr ""
|
9587 |
+
|
9588 |
+
#: form_detail.php:2212
|
9589 |
+
#@ gravityforms
|
9590 |
+
msgid "Russian"
|
9591 |
+
msgstr "روسی"
|
9592 |
+
|
9593 |
+
#: form_detail.php:2213
|
9594 |
+
#@ gravityforms
|
9595 |
+
msgid "Serbian"
|
9596 |
+
msgstr ""
|
9597 |
+
|
9598 |
+
#: form_detail.php:2214
|
9599 |
+
#@ gravityforms
|
9600 |
+
msgid "Slovak"
|
9601 |
+
msgstr ""
|
9602 |
+
|
9603 |
+
#: form_detail.php:2215
|
9604 |
+
#@ gravityforms
|
9605 |
+
msgid "Slovenian"
|
9606 |
+
msgstr ""
|
9607 |
+
|
9608 |
+
#: form_detail.php:2216
|
9609 |
+
#@ gravityforms
|
9610 |
+
msgid "Spanish"
|
9611 |
+
msgstr "اسپانیایی"
|
9612 |
+
|
9613 |
+
#: form_detail.php:2217
|
9614 |
+
#@ gravityforms
|
9615 |
+
msgid "Spanish (Latin America)"
|
9616 |
+
msgstr ""
|
9617 |
+
|
9618 |
+
#: form_detail.php:2218
|
9619 |
+
#@ gravityforms
|
9620 |
+
msgid "Swedish"
|
9621 |
+
msgstr "سوئدی"
|
9622 |
+
|
9623 |
+
#: form_detail.php:2219
|
9624 |
+
#@ gravityforms
|
9625 |
+
msgid "Tamil"
|
9626 |
+
msgstr ""
|
9627 |
+
|
9628 |
+
#: form_detail.php:2220
|
9629 |
+
#@ gravityforms
|
9630 |
+
msgid "Telugu"
|
9631 |
+
msgstr ""
|
9632 |
+
|
9633 |
+
#: form_detail.php:2221
|
9634 |
+
#@ gravityforms
|
9635 |
+
msgid "Thai"
|
9636 |
+
msgstr ""
|
9637 |
+
|
9638 |
+
#: form_detail.php:2222
|
9639 |
+
#@ gravityforms
|
9640 |
+
msgid "Turkish"
|
9641 |
+
msgstr "ترکی"
|
9642 |
+
|
9643 |
+
#: form_detail.php:2223
|
9644 |
+
#@ gravityforms
|
9645 |
+
msgid "Ukrainian"
|
9646 |
+
msgstr "اوکراینی"
|
9647 |
+
|
9648 |
+
#: form_detail.php:2224
|
9649 |
+
#@ gravityforms
|
9650 |
+
msgid "Urdu"
|
9651 |
+
msgstr "اردویی"
|
9652 |
+
|
9653 |
+
#: form_detail.php:2225
|
9654 |
+
#@ gravityforms
|
9655 |
+
msgid "Vietnamese"
|
9656 |
+
msgstr "ویتنامی"
|
9657 |
+
|
9658 |
+
#: form_detail.php:2290
|
9659 |
+
#@ gravityforms
|
9660 |
+
msgid "Use the Rich Text Editor"
|
9661 |
+
msgstr "استفاده از ویرایشگر متن قوی"
|
9662 |
+
|
9663 |
+
#: form_display.php:244
|
9664 |
+
#@ gravityforms
|
9665 |
+
msgid "Review Form"
|
9666 |
+
msgstr "فرم نظرسنجی"
|
9667 |
+
|
9668 |
+
#: form_display.php:1002
|
9669 |
+
#@ gravityforms
|
9670 |
+
msgid "This iframe contains the logic required to handle AJAX powered Gravity Forms."
|
9671 |
+
msgstr "این تگ iframe دارای منطق شرطی بوده تا بتواند توسط گرویتیفرم بخش AJAX را به درستی اجرا نماید."
|
9672 |
+
|
9673 |
+
#: form_display.php:1565
|
9674 |
+
#@ gravityforms
|
9675 |
+
msgid "This field requires a unique entry and the values you entered have already been used."
|
9676 |
+
msgstr "این فیلد به یک ورودی منحصربه فرد نیازمند است و مقداری که شما وارد نمودید در حال حاضر استفاده شده است."
|
9677 |
+
|
9678 |
+
#: form_list.php:433
|
9679 |
+
#@ gravityforms
|
9680 |
+
msgctxt "Form List"
|
9681 |
+
msgid "Trash"
|
9682 |
+
msgstr "زباله دان"
|
9683 |
+
|
9684 |
+
#: form_list.php:515
|
9685 |
+
#@ gravityforms
|
9686 |
+
msgid "ID"
|
9687 |
+
msgstr "شناسه"
|
9688 |
+
|
9689 |
+
#: form_list.php:618
|
9690 |
+
#@ default
|
9691 |
+
msgid "Select form"
|
9692 |
+
msgstr "یک فرم انتخاب کنید"
|
9693 |
+
|
9694 |
+
#: form_settings.php:1110
|
9695 |
+
#, php-format
|
9696 |
+
#@ gravityforms
|
9697 |
+
msgid "Your confirmation message appears to contain a merge tag as the value for an HTML attribute. Depending on the attribute and field type, this might be a security risk. %sFurther details%s"
|
9698 |
+
msgstr "پیام تاییدیه شما آنگونه ظاهر شده که گویا دارای تگ ادغامشده است همانند ارزشی که برای کدهای HTML به کار میرود. بسته به ویژگیها و نوع فیلد، این مورد ممکن است یه خطر امنیتی باشد. %sجزئیات بیشتر%s"
|
9699 |
+
|
9700 |
+
#: form_settings.php:1678
|
9701 |
+
#@ default
|
9702 |
+
msgid "Link to continue {form_title}"
|
9703 |
+
msgstr "لینک به ادامه {form_title}"
|
9704 |
+
|
9705 |
+
#: forms_model.php:1903
|
9706 |
+
#@ gravityforms
|
9707 |
+
msgid "An error prevented the entry for this form submission being saved. Please contact support."
|
9708 |
+
msgstr "ارور مربوطه از ذخیرهسازی ورودیهای مورد نیاز برای ارسال این فرم جلوگیری میکند. لطفا با پشتیبانی تماس حاصل فرمایید."
|
9709 |
+
|
9710 |
+
#. translators: plugin header field 'Version'
|
9711 |
+
#: gravityforms.php:0
|
9712 |
+
#@ gravityforms
|
9713 |
+
msgid "2.0.7"
|
9714 |
+
msgstr "2.0.7"
|
9715 |
+
|
9716 |
+
#: gravityforms.php:844
|
9717 |
+
#@ gravityforms
|
9718 |
+
msgid "There appears to be an issue with one of the Gravity Forms database tables. Please get in touch with support."
|
9719 |
+
msgstr "اینطور به نظر میرسد خطایی در یکی از جداول دیتابیس گرویتیفرم وجود دارد. لطفا با پشتیبانی در تماس باشید."
|
9720 |
+
|
9721 |
+
#: gravityforms.php:884
|
9722 |
+
#@ gravityforms
|
9723 |
+
msgid "There appears to be an issue with the data in the Gravity Forms database tables. Please get in touch with support."
|
9724 |
+
msgstr "اینطور به نظر میرسد که در ارتباط با اطلاعات موجود در جداول دیتابیس گرویتیفرم مشکلاتی وجود دارد. لطفا با پشتیبانی در تماس باشید."
|
9725 |
+
|
9726 |
+
#: gravityforms.php:1908
|
9727 |
+
#, php-format
|
9728 |
+
#@ gravityforms
|
9729 |
+
msgid "%1$s ‹ %2$s — WordPress"
|
9730 |
+
msgstr "%1$s ‹ %2$s — وردپرس"
|
9731 |
+
|
9732 |
+
#: gravityforms.php:2361
|
9733 |
+
#, php-format
|
9734 |
+
#@ gravityforms
|
9735 |
+
msgid "There is an update available for Gravity Forms. %sView Details%s"
|
9736 |
+
msgstr "برای گرویتیفرم، فایل بروزرسانی وجود دارد. %sنمایش جزئیات%s"
|
9737 |
+
|
9738 |
+
#: gravityforms.php:3820
|
9739 |
+
#: gravityforms.php:3832
|
9740 |
+
#@ gravityforms
|
9741 |
+
msgid "Oops! There was an error saving the form title. Please refresh the page and try again."
|
9742 |
+
msgstr "اه! در ذخیرهسازی عنوان فرم خطایی وجود دارد. لطفا صفحه را رفرش نموده و مجددا تلاش نمایید."
|
9743 |
+
|
9744 |
+
#: gravityforms.php:4189
|
9745 |
+
#@ gravityforms
|
9746 |
+
msgid "Editor"
|
9747 |
+
msgstr "ویرایشگر"
|
9748 |
+
|
9749 |
+
#: gravityforms.php:4478
|
9750 |
+
#@ gravityforms
|
9751 |
+
msgid "Recent"
|
9752 |
+
msgstr "اخیر"
|
9753 |
+
|
9754 |
+
#: gravityforms.php:4549
|
9755 |
+
#@ gravityforms
|
9756 |
+
msgid "All Forms"
|
9757 |
+
msgstr "همه فرمها"
|
9758 |
+
|
9759 |
+
#: gravityforms.php:4862
|
9760 |
+
#@ gravityforms
|
9761 |
+
msgid "Whether or not to display the form title."
|
9762 |
+
msgstr "نمایش یا عدم نمایش عنوان فرم."
|
9763 |
+
|
9764 |
+
#: gravityforms.php:4870
|
9765 |
+
#@ gravityforms
|
9766 |
+
msgid "Whether or not to display the form description."
|
9767 |
+
msgstr "نمایش یا عدم نمایش توضیحات فرم."
|
9768 |
+
|
9769 |
+
#: gravityforms.php:5061
|
9770 |
+
#@ gravityforms
|
9771 |
+
msgid "Forms per page"
|
9772 |
+
msgstr "فرمها در هر صفحه"
|
9773 |
+
|
9774 |
+
#: help.php:37
|
9775 |
+
#, php-format
|
9776 |
+
#@ gravityforms
|
9777 |
+
msgid "%sIMPORTANT NOTICE:%s We do not provide support via telephone or e-mail. Please %sopen a support ticket%s."
|
9778 |
+
msgstr "%sاطلاعیه مهم:%s پشتیبانی ما از طریق تماس تلفنی و یا ایمیل انجام نمیشود. لطفا %sاز طریق ارسال تیکت اقدام فرمایید%s."
|
9779 |
+
|
9780 |
+
#: help.php:39
|
9781 |
+
#, php-format
|
9782 |
+
#@ gravityforms
|
9783 |
+
msgid "Please review the plugin documentation and %sfrequently asked questions (FAQ)%s first. If you still can't find the answer %sopen a support ticket%s and we will be happy to answer your questions and assist you with any problems. %sPlease note:%s If you have not %spurchased a license%s from us, you will not have access to these help resources."
|
9784 |
+
msgstr "لطفا توصیههای ارائهشده در مورد افزونه و بخش %sپرسشهای متداول%s را مشاهده نمایید. اگر شما هنوز هم نتوانستید پاسخ مورد نظر خود را بیابید، بخش %sتیکتهای پشتیبانی%s را گشوده و برای ما تیکت ارسال نمایید و ما خوشحال خواهیم شد که به پرسشهای شما پاسخه داده و شما را در هر گونه مشکلی کمک نماییم. %sتوجه داشته باشید:%s اگر شما از ما %sلایسنس قانونی%s خریداری نکرده باشید، به این منابع کمکرسانی دسترسی نخواهید داشت."
|
9785 |
+
|
9786 |
+
#: help.php:44
|
9787 |
+
#@ gravityforms
|
9788 |
+
msgid "User Documentation"
|
9789 |
+
msgstr "مستندات کاربر"
|
9790 |
+
|
9791 |
+
#: help.php:50
|
9792 |
+
#@ gravityforms
|
9793 |
+
msgid "Creating a Form"
|
9794 |
+
msgstr "ایجاد یک فرم"
|
9795 |
+
|
9796 |
+
#: help.php:55
|
9797 |
+
#@ gravityforms
|
9798 |
+
msgid "Embedding a Form"
|
9799 |
+
msgstr "کوچککردن فرم"
|
9800 |
+
|
9801 |
+
#: help.php:60
|
9802 |
+
#@ gravityforms
|
9803 |
+
msgid "Reviewing Form Submissions"
|
9804 |
+
msgstr "بررسی فرم ارسالی"
|
9805 |
+
|
9806 |
+
#: help.php:65
|
9807 |
+
#@ gravityforms
|
9808 |
+
msgid "Configuring Confirmations"
|
9809 |
+
msgstr "پیکربندی تأییدیه"
|
9810 |
+
|
9811 |
+
#: help.php:70
|
9812 |
+
#@ gravityforms
|
9813 |
+
msgid "Configuring Notifications"
|
9814 |
+
msgstr "پیکربندی اعلانات"
|
9815 |
+
|
9816 |
+
#: help.php:79
|
9817 |
+
#@ gravityforms
|
9818 |
+
msgid "Developer Documentation"
|
9819 |
+
msgstr "مستندات توسعهدهنده"
|
9820 |
+
|
9821 |
+
#: help.php:85
|
9822 |
+
#@ gravityforms
|
9823 |
+
msgid "Getting Started with the Gravity Forms API"
|
9824 |
+
msgstr "شروع به کار با API گرویتیفرم"
|
9825 |
+
|
9826 |
+
#: help.php:90
|
9827 |
+
#@ gravityforms
|
9828 |
+
msgid "API Functions"
|
9829 |
+
msgstr "توابع API"
|
9830 |
+
|
9831 |
+
#: help.php:95
|
9832 |
+
#@ gravityforms
|
9833 |
+
msgid "Web API"
|
9834 |
+
msgstr "API مربوط به وب"
|
9835 |
+
|
9836 |
+
#: help.php:100
|
9837 |
+
#@ gravityforms
|
9838 |
+
msgid "Add-On Framework"
|
9839 |
+
msgstr "فریمورک Add-On"
|
9840 |
+
|
9841 |
+
#: help.php:105
|
9842 |
+
#@ gravityforms
|
9843 |
+
msgid "GFAddOn"
|
9844 |
+
msgstr "افزونه GF"
|
9845 |
+
|
9846 |
+
#: help.php:114
|
9847 |
+
#@ gravityforms
|
9848 |
+
msgid "Designer Documentation"
|
9849 |
+
msgstr "مستندات طراح"
|
9850 |
+
|
9851 |
+
#: help.php:120
|
9852 |
+
#@ gravityforms
|
9853 |
+
msgid "CSS Selectors"
|
9854 |
+
msgstr "گزینشگر CSS"
|
9855 |
+
|
9856 |
+
#: help.php:125
|
9857 |
+
#@ gravityforms
|
9858 |
+
msgid "CSS Targeting Samples"
|
9859 |
+
msgstr "استایلهای نمونه"
|
9860 |
+
|
9861 |
+
#: help.php:130
|
9862 |
+
#@ gravityforms
|
9863 |
+
msgid "CSS Ready Classes"
|
9864 |
+
msgstr "کلاسهای آماده CSS"
|
9865 |
+
|
9866 |
+
#: help.php:135
|
9867 |
+
#@ gravityforms
|
9868 |
+
msgid "gform_field_css_class"
|
9869 |
+
msgstr "gform_field_css_class"
|
9870 |
+
|
9871 |
+
#: help.php:140
|
9872 |
+
#@ gravityforms
|
9873 |
+
msgid "gform_noconflict_styles"
|
9874 |
+
msgstr "gform_noconflict_styles"
|
9875 |
+
|
9876 |
+
#: includes/addon/class-gf-addon.php:2284
|
9877 |
+
#@ gravityforms
|
9878 |
+
msgid "First Name"
|
9879 |
+
msgstr "نام"
|
9880 |
+
|
9881 |
+
#: includes/addon/class-gf-addon.php:2284
|
9882 |
+
#@ gravityforms
|
9883 |
+
msgid "Name (First)"
|
9884 |
+
msgstr "نام"
|
9885 |
+
|
9886 |
+
#: includes/addon/class-gf-addon.php:2285
|
9887 |
+
#@ gravityforms
|
9888 |
+
msgid "Last Name"
|
9889 |
+
msgstr "نام خانوادگی"
|
9890 |
+
|
9891 |
+
#: includes/addon/class-gf-addon.php:2285
|
9892 |
+
#@ gravityforms
|
9893 |
+
msgid "Name (Last)"
|
9894 |
+
msgstr "نام خانوادگی"
|
9895 |
+
|
9896 |
+
#: includes/addon/class-gf-addon.php:2286
|
9897 |
+
#@ gravityforms
|
9898 |
+
msgid "Address (Street Address)"
|
9899 |
+
msgstr "آدرس (آدرس خیابان)"
|
9900 |
+
|
9901 |
+
#: includes/addon/class-gf-addon.php:2287
|
9902 |
+
#@ gravityforms
|
9903 |
+
msgid "Address (Address Line 2)"
|
9904 |
+
msgstr "ادرس (آدرس خط دوم)"
|
9905 |
+
|
9906 |
+
#: includes/addon/class-gf-addon.php:2288
|
9907 |
+
#@ gravityforms
|
9908 |
+
msgid "Address (City)"
|
9909 |
+
msgstr "آدرس (شهر)"
|
9910 |
+
|
9911 |
+
#: includes/addon/class-gf-addon.php:2289
|
9912 |
+
#@ gravityforms
|
9913 |
+
msgid "Address (State / Province)"
|
9914 |
+
msgstr "آدرس (کشور / استان)"
|
9915 |
+
|
9916 |
+
#: includes/addon/class-gf-addon.php:2290
|
9917 |
+
#@ gravityforms
|
9918 |
+
msgid "Address (Zip / Postal Code)"
|
9919 |
+
msgstr "آدرس (کد پستی)"
|
9920 |
+
|
9921 |
+
#: includes/addon/class-gf-addon.php:2291
|
9922 |
+
#@ gravityforms
|
9923 |
+
msgid "Address (Country)"
|
9924 |
+
msgstr "ادرس (کشور)"
|
9925 |
+
|
9926 |
+
#: includes/addon/class-gf-addon.php:2818
|
9927 |
+
#: includes/addon/class-gf-addon.php:2837
|
9928 |
+
#@ gravityforms
|
9929 |
+
msgid "The text you have entered is not valid. For security reasons, some characters are not allowed. "
|
9930 |
+
msgstr "عبارت وارد شده نامعتبر است. به دلیل مسائل امنیتی بعضی کاراکترها ممنوع شده اند. "
|
9931 |
+
|
9932 |
+
#: includes/addon/class-gf-addon.php:2821
|
9933 |
+
#: includes/addon/class-gf-addon.php:2840
|
9934 |
+
#@ gravityforms
|
9935 |
+
msgid "Fix it"
|
9936 |
+
msgstr "درست کردن این"
|
9937 |
+
|
9938 |
+
#: includes/addon/class-gf-addon.php:2862
|
9939 |
+
#: includes/addon/class-gf-addon.php:2903
|
9940 |
+
#: includes/addon/class-gf-addon.php:2919
|
9941 |
+
#: includes/addon/class-gf-addon.php:2935
|
9942 |
+
#: includes/addon/class-gf-addon.php:2985
|
9943 |
+
#: includes/addon/class-gf-feed-addon.php:1311
|
9944 |
+
#@ gravityforms
|
9945 |
+
msgid "Invalid value"
|
9946 |
+
msgstr "مقدار نامعتبر"
|
9947 |
+
|
9948 |
+
#: includes/addon/class-gf-addon.php:3400
|
9949 |
+
#: includes/addon/class-gf-feed-addon.php:958
|
9950 |
+
#@ gravityforms
|
9951 |
+
msgid "You don't have sufficient permissions to update the form settings."
|
9952 |
+
msgstr "شما مجوز کافی برای به روز رسانی تنظیمات فرم ندارید."
|
9953 |
+
|
9954 |
+
#: includes/addon/class-gf-addon.php:3953
|
9955 |
+
#: includes/addon/class-gf-addon.php:4252
|
9956 |
+
#@ gravityforms
|
9957 |
+
msgid "You don't have sufficient permissions to update the settings."
|
9958 |
+
msgstr "شما مجوز کافی برای به روز رسانی تنظیمات ندارید."
|
9959 |
+
|
9960 |
+
#: includes/addon/class-gf-feed-addon.php:1138
|
9961 |
+
#@ gravityforms
|
9962 |
+
msgid "Duplicate this feed"
|
9963 |
+
msgstr "کپی کردن این فید"
|
9964 |
+
|
9965 |
+
#: includes/addon/class-gf-feed-addon.php:1374
|
9966 |
+
#: includes/addon/class-gf-feed-addon.php:1377
|
9967 |
+
#@ gravityforms
|
9968 |
+
msgid "Post Payment Actions"
|
9969 |
+
msgstr "عملیات ارسال پرداخت"
|
9970 |
+
|
9971 |
+
#: includes/addon/class-gf-feed-addon.php:1377
|
9972 |
+
#@ gravityforms
|
9973 |
+
msgid "Select which actions should only occur after payment has been received."
|
9974 |
+
msgstr "انتخاب نمایید که کدام عملیات باید بعد از دریافت پرداخت دریافت شوند."
|
9975 |
+
|
9976 |
+
#: includes/addon/class-gf-payment-addon.php:1017
|
9977 |
+
#, php-format
|
9978 |
+
#@ gravityforms
|
9979 |
+
msgid "Payment has been authorized. Amount: %s. Transaction Id: %s."
|
9980 |
+
msgstr "پرداخت مجاز شدهاست. مبلغ: %s. شناسه تراکنش: %s."
|
9981 |
+
|
9982 |
+
#: includes/addon/class-gf-payment-addon.php:2275
|
9983 |
+
#@ gravityforms
|
9984 |
+
msgid "Jan"
|
9985 |
+
msgstr "ژانویه"
|
9986 |
+
|
9987 |
+
#: includes/addon/class-gf-payment-addon.php:2276
|
9988 |
+
#@ gravityforms
|
9989 |
+
msgid "Feb"
|
9990 |
+
msgstr "فوریه"
|
9991 |
+
|
9992 |
+
#: includes/addon/class-gf-payment-addon.php:2277
|
9993 |
+
#@ gravityforms
|
9994 |
+
msgid "Mar"
|
9995 |
+
msgstr "مارچ"
|
9996 |
+
|
9997 |
+
#: includes/addon/class-gf-payment-addon.php:2278
|
9998 |
+
#@ gravityforms
|
9999 |
+
msgid "Apr"
|
10000 |
+
msgstr "آپریل"
|
10001 |
+
|
10002 |
+
#: includes/addon/class-gf-payment-addon.php:2280
|
10003 |
+
#@ gravityforms
|
10004 |
+
msgid "Jun"
|
10005 |
+
msgstr "ژون"
|
10006 |
+
|
10007 |
+
#: includes/addon/class-gf-payment-addon.php:2281
|
10008 |
+
#@ gravityforms
|
10009 |
+
msgid "Jul"
|
10010 |
+
msgstr "جولای"
|
10011 |
+
|
10012 |
+
#: includes/addon/class-gf-payment-addon.php:2282
|
10013 |
+
#@ gravityforms
|
10014 |
+
msgid "Aug"
|
10015 |
+
msgstr "آگوست"
|
10016 |
+
|
10017 |
+
#: includes/addon/class-gf-payment-addon.php:2283
|
10018 |
+
#@ gravityforms
|
10019 |
+
msgid "Sep"
|
10020 |
+
msgstr "سپتامبر"
|
10021 |
+
|
10022 |
+
#: includes/addon/class-gf-payment-addon.php:2284
|
10023 |
+
#@ gravityforms
|
10024 |
+
msgid "Oct"
|
10025 |
+
msgstr "اکتبر"
|
10026 |
+
|
10027 |
+
#: includes/addon/class-gf-payment-addon.php:2285
|
10028 |
+
#@ gravityforms
|
10029 |
+
msgid "Nov"
|
10030 |
+
msgstr "نوامبر"
|
10031 |
+
|
10032 |
+
#: includes/addon/class-gf-payment-addon.php:2286
|
10033 |
+
#@ gravityforms
|
10034 |
+
msgid "Dec"
|
10035 |
+
msgstr "دسامبر"
|
10036 |
+
|
10037 |
+
#: includes/api.php:1160
|
10038 |
+
#, php-format
|
10039 |
+
#@ gravityforms
|
10040 |
+
msgid "There was an error while deleting feed id %s"
|
10041 |
+
msgstr "خطایی وجود دارد در زمان حذفنمودن آیدی فید %s"
|
10042 |
+
|
10043 |
+
#: includes/api.php:1184
|
10044 |
+
#, php-format
|
10045 |
+
#@ gravityforms
|
10046 |
+
msgid "There was an error while updating feed id %s"
|
10047 |
+
msgstr "خطایی وجور دارد در زمان بروزرسانی آیدی فید %s"
|
10048 |
+
|
10049 |
+
#: includes/api.php:1217
|
10050 |
+
#@ gravityforms
|
10051 |
+
msgid "There was an error while inserting a feed"
|
10052 |
+
msgstr "در زمان قرار دادن خوراک فید خطایی وجود دارد"
|
10053 |
+
|
10054 |
+
#: includes/fields/class-gf-field-address.php:408
|
10055 |
+
#: includes/fields/class-gf-field-address.php:504
|
10056 |
+
#@ gravityforms
|
10057 |
+
msgid "United States"
|
10058 |
+
msgstr "ایالات متحده"
|
10059 |
+
|
10060 |
+
#: includes/fields/class-gf-field-address.php:501
|
10061 |
+
#@ gravityforms
|
10062 |
+
msgid "Afghanistan"
|
10063 |
+
msgstr "افغانستان"
|
10064 |
+
|
10065 |
+
#: includes/fields/class-gf-field-address.php:501
|
10066 |
+
#@ gravityforms
|
10067 |
+
msgid "Albania"
|
10068 |
+
msgstr ""
|
10069 |
+
|
10070 |
+
#: includes/fields/class-gf-field-address.php:501
|
10071 |
+
#@ gravityforms
|
10072 |
+
msgid "Algeria"
|
10073 |
+
msgstr ""
|
10074 |
+
|
10075 |
+
#: includes/fields/class-gf-field-address.php:501
|
10076 |
+
#@ gravityforms
|
10077 |
+
msgid "American Samoa"
|
10078 |
+
msgstr ""
|
10079 |
+
|
10080 |
+
#: includes/fields/class-gf-field-address.php:501
|
10081 |
+
#@ gravityforms
|
10082 |
+
msgid "Andorra"
|
10083 |
+
msgstr ""
|
10084 |
+
|
10085 |
+
#: includes/fields/class-gf-field-address.php:501
|
10086 |
+
#@ gravityforms
|
10087 |
+
msgid "Angola"
|
10088 |
+
msgstr ""
|
10089 |
+
|
10090 |
+
#: includes/fields/class-gf-field-address.php:501
|
10091 |
+
#@ gravityforms
|
10092 |
+
msgid "Antigua and Barbuda"
|
10093 |
+
msgstr ""
|
10094 |
+
|
10095 |
+
#: includes/fields/class-gf-field-address.php:501
|
10096 |
+
#@ gravityforms
|
10097 |
+
msgid "Argentina"
|
10098 |
+
msgstr ""
|
10099 |
+
|
10100 |
+
#: includes/fields/class-gf-field-address.php:501
|
10101 |
+
#@ gravityforms
|
10102 |
+
msgid "Armenia"
|
10103 |
+
msgstr ""
|
10104 |
+
|
10105 |
+
#: includes/fields/class-gf-field-address.php:501
|
10106 |
+
#@ gravityforms
|
10107 |
+
msgid "Austria"
|
10108 |
+
msgstr ""
|
10109 |
+
|
10110 |
+
#: includes/fields/class-gf-field-address.php:501
|
10111 |
+
#@ gravityforms
|
10112 |
+
msgid "Azerbaijan"
|
10113 |
+
msgstr ""
|
10114 |
+
|
10115 |
+
#: includes/fields/class-gf-field-address.php:501
|
10116 |
+
#@ gravityforms
|
10117 |
+
msgid "Bahamas"
|
10118 |
+
msgstr ""
|
10119 |
+
|
10120 |
+
#: includes/fields/class-gf-field-address.php:501
|
10121 |
+
#@ gravityforms
|
10122 |
+
msgid "Bahrain"
|
10123 |
+
msgstr ""
|
10124 |
+
|
10125 |
+
#: includes/fields/class-gf-field-address.php:501
|
10126 |
+
#@ gravityforms
|
10127 |
+
msgid "Bangladesh"
|
10128 |
+
msgstr ""
|
10129 |
+
|
10130 |
+
#: includes/fields/class-gf-field-address.php:501
|
10131 |
+
#@ gravityforms
|
10132 |
+
msgid "Barbados"
|
10133 |
+
msgstr ""
|
10134 |
+
|
10135 |
+
#: includes/fields/class-gf-field-address.php:501
|
10136 |
+
#@ gravityforms
|
10137 |
+
msgid "Belarus"
|
10138 |
+
msgstr ""
|
10139 |
+
|
10140 |
+
#: includes/fields/class-gf-field-address.php:501
|
10141 |
+
#@ gravityforms
|
10142 |
+
msgid "Belgium"
|
10143 |
+
msgstr ""
|
10144 |
+
|
10145 |
+
#: includes/fields/class-gf-field-address.php:501
|
10146 |
+
#@ gravityforms
|
10147 |
+
msgid "Belize"
|
10148 |
+
msgstr ""
|
10149 |
+
|
10150 |
+
#: includes/fields/class-gf-field-address.php:501
|
10151 |
+
#@ gravityforms
|
10152 |
+
msgid "Benin"
|
10153 |
+
msgstr ""
|
10154 |
+
|
10155 |
+
#: includes/fields/class-gf-field-address.php:501
|
10156 |
+
#@ gravityforms
|
10157 |
+
msgid "Bermuda"
|
10158 |
+
msgstr ""
|
10159 |
+
|
10160 |
+
#: includes/fields/class-gf-field-address.php:501
|
10161 |
+
#@ gravityforms
|
10162 |
+
msgid "Bhutan"
|
10163 |
+
msgstr ""
|
10164 |
+
|
10165 |
+
#: includes/fields/class-gf-field-address.php:501
|
10166 |
+
#@ gravityforms
|
10167 |
+
msgid "Bolivia"
|
10168 |
+
msgstr ""
|
10169 |
+
|
10170 |
+
#: includes/fields/class-gf-field-address.php:501
|
10171 |
+
#@ gravityforms
|
10172 |
+
msgid "Bosnia and Herzegovina"
|
10173 |
+
msgstr ""
|
10174 |
+
|
10175 |
+
#: includes/fields/class-gf-field-address.php:501
|
10176 |
+
#@ gravityforms
|
10177 |
+
msgid "Botswana"
|
10178 |
+
msgstr ""
|
10179 |
+
|
10180 |
+
#: includes/fields/class-gf-field-address.php:501
|
10181 |
+
#@ gravityforms
|
10182 |
+
msgid "Brazil"
|
10183 |
+
msgstr ""
|
10184 |
+
|
10185 |
+
#: includes/fields/class-gf-field-address.php:501
|
10186 |
+
#@ gravityforms
|
10187 |
+
msgid "Brunei"
|
10188 |
+
msgstr ""
|
10189 |
+
|
10190 |
+
#: includes/fields/class-gf-field-address.php:501
|
10191 |
+
#@ gravityforms
|
10192 |
+
msgid "Bulgaria"
|
10193 |
+
msgstr ""
|
10194 |
+
|
10195 |
+
#: includes/fields/class-gf-field-address.php:501
|
10196 |
+
#@ gravityforms
|
10197 |
+
msgid "Burkina Faso"
|
10198 |
+
msgstr ""
|
10199 |
+
|
10200 |
+
#: includes/fields/class-gf-field-address.php:501
|
10201 |
+
#@ gravityforms
|
10202 |
+
msgid "Burundi"
|
10203 |
+
msgstr ""
|
10204 |
+
|
10205 |
+
#: includes/fields/class-gf-field-address.php:501
|
10206 |
+
#@ gravityforms
|
10207 |
+
msgid "Cambodia"
|
10208 |
+
msgstr ""
|
10209 |
+
|
10210 |
+
#: includes/fields/class-gf-field-address.php:501
|
10211 |
+
#@ gravityforms
|
10212 |
+
msgid "Cameroon"
|
10213 |
+
msgstr ""
|
10214 |
+
|
10215 |
+
#: includes/fields/class-gf-field-address.php:501
|
10216 |
+
#@ gravityforms
|
10217 |
+
msgid "Canada"
|
10218 |
+
msgstr ""
|
10219 |
+
|
10220 |
+
#: includes/fields/class-gf-field-address.php:501
|
10221 |
+
#@ gravityforms
|
10222 |
+
msgid "Cape Verde"
|
10223 |
+
msgstr ""
|
10224 |
+
|
10225 |
+
#: includes/fields/class-gf-field-address.php:501
|
10226 |
+
#@ gravityforms
|
10227 |
+
msgid "Cayman Islands"
|
10228 |
+
msgstr ""
|
10229 |
+
|
10230 |
+
#: includes/fields/class-gf-field-address.php:501
|
10231 |
+
#@ gravityforms
|
10232 |
+
msgid "Central African Republic"
|
10233 |
+
msgstr ""
|
10234 |
+
|
10235 |
+
#: includes/fields/class-gf-field-address.php:501
|
10236 |
+
#@ gravityforms
|
10237 |
+
msgid "Chad"
|
10238 |
+
msgstr ""
|
10239 |
+
|
10240 |
+
#: includes/fields/class-gf-field-address.php:501
|
10241 |
+
#@ gravityforms
|
10242 |
+
msgid "Chile"
|
10243 |
+
msgstr ""
|
10244 |
+
|
10245 |
+
#: includes/fields/class-gf-field-address.php:501
|
10246 |
+
#@ gravityforms
|
10247 |
+
msgid "China"
|
10248 |
+
msgstr ""
|
10249 |
+
|
10250 |
+
#: includes/fields/class-gf-field-address.php:501
|
10251 |
+
#@ gravityforms
|
10252 |
+
msgid "Colombia"
|
10253 |
+
msgstr ""
|
10254 |
+
|
10255 |
+
#: includes/fields/class-gf-field-address.php:501
|
10256 |
+
#@ gravityforms
|
10257 |
+
msgid "Comoros"
|
10258 |
+
msgstr ""
|
10259 |
+
|
10260 |
+
#: includes/fields/class-gf-field-address.php:501
|
10261 |
+
#@ gravityforms
|
10262 |
+
msgid "Congo, Democratic Republic of the"
|
10263 |
+
msgstr ""
|
10264 |
+
|
10265 |
+
#: includes/fields/class-gf-field-address.php:501
|
10266 |
+
#@ gravityforms
|
10267 |
+
msgid "Congo, Republic of the"
|
10268 |
+
msgstr ""
|
10269 |
+
|
10270 |
+
#: includes/fields/class-gf-field-address.php:501
|
10271 |
+
#@ gravityforms
|
10272 |
+
msgid "Costa Rica"
|
10273 |
+
msgstr ""
|
10274 |
+
|
10275 |
+
#: includes/fields/class-gf-field-address.php:501
|
10276 |
+
#@ gravityforms
|
10277 |
+
msgid "Côte d'Ivoire"
|
10278 |
+
msgstr ""
|
10279 |
+
|
10280 |
+
#: includes/fields/class-gf-field-address.php:501
|
10281 |
+
#@ gravityforms
|
10282 |
+
msgid "Croatia"
|
10283 |
+
msgstr ""
|
10284 |
+
|
10285 |
+
#: includes/fields/class-gf-field-address.php:501
|
10286 |
+
#@ gravityforms
|
10287 |
+
msgid "Cuba"
|
10288 |
+
msgstr ""
|
10289 |
+
|
10290 |
+
#: includes/fields/class-gf-field-address.php:501
|
10291 |
+
#@ gravityforms
|
10292 |
+
msgid "Curaçao"
|
10293 |
+
msgstr ""
|
10294 |
+
|
10295 |
+
#: includes/fields/class-gf-field-address.php:501
|
10296 |
+
#@ gravityforms
|
10297 |
+
msgid "Cyprus"
|
10298 |
+
msgstr ""
|
10299 |
+
|
10300 |
+
#: includes/fields/class-gf-field-address.php:501
|
10301 |
+
#@ gravityforms
|
10302 |
+
msgid "Czech Republic"
|
10303 |
+
msgstr ""
|
10304 |
+
|
10305 |
+
#: includes/fields/class-gf-field-address.php:501
|
10306 |
+
#@ gravityforms
|
10307 |
+
msgid "Denmark"
|
10308 |
+
msgstr ""
|
10309 |
+
|
10310 |
+
#: includes/fields/class-gf-field-address.php:501
|
10311 |
+
#@ gravityforms
|
10312 |
+
msgid "Djibouti"
|
10313 |
+
msgstr ""
|
10314 |
+
|
10315 |
+
#: includes/fields/class-gf-field-address.php:501
|
10316 |
+
#@ gravityforms
|
10317 |
+
msgid "Dominica"
|
10318 |
+
msgstr ""
|
10319 |
+
|
10320 |
+
#: includes/fields/class-gf-field-address.php:501
|
10321 |
+
#@ gravityforms
|
10322 |
+
msgid "Dominican Republic"
|
10323 |
+
msgstr ""
|
10324 |
+
|
10325 |
+
#: includes/fields/class-gf-field-address.php:501
|
10326 |
+
#@ gravityforms
|
10327 |
+
msgid "East Timor"
|
10328 |
+
msgstr ""
|
10329 |
+
|
10330 |
+
#: includes/fields/class-gf-field-address.php:501
|
10331 |
+
#@ gravityforms
|
10332 |
+
msgid "Ecuador"
|
10333 |
+
msgstr ""
|
10334 |
+
|
10335 |
+
#: includes/fields/class-gf-field-address.php:501
|
10336 |
+
#@ gravityforms
|
10337 |
+
msgid "Egypt"
|
10338 |
+
msgstr ""
|
10339 |
+
|
10340 |
+
#: includes/fields/class-gf-field-address.php:501
|
10341 |
+
#@ gravityforms
|
10342 |
+
msgid "El Salvador"
|
10343 |
+
msgstr ""
|
10344 |
+
|
10345 |
+
#: includes/fields/class-gf-field-address.php:501
|
10346 |
+
#@ gravityforms
|
10347 |
+
msgid "Equatorial Guinea"
|
10348 |
+
msgstr ""
|
10349 |
+
|
10350 |
+
#: includes/fields/class-gf-field-address.php:501
|
10351 |
+
#@ gravityforms
|
10352 |
+
msgid "Eritrea"
|
10353 |
+
msgstr ""
|
10354 |
+
|
10355 |
+
#: includes/fields/class-gf-field-address.php:501
|
10356 |
+
#@ gravityforms
|
10357 |
+
msgid "Estonia"
|
10358 |
+
msgstr ""
|
10359 |
+
|
10360 |
+
#: includes/fields/class-gf-field-address.php:501
|
10361 |
+
#@ gravityforms
|
10362 |
+
msgid "Ethiopia"
|
10363 |
+
msgstr ""
|
10364 |
+
|
10365 |
+
#: includes/fields/class-gf-field-address.php:501
|
10366 |
+
#@ gravityforms
|
10367 |
+
msgid "Faroe Islands"
|
10368 |
+
msgstr ""
|
10369 |
+
|
10370 |
+
#: includes/fields/class-gf-field-address.php:501
|
10371 |
+
#@ gravityforms
|
10372 |
+
msgid "Fiji"
|
10373 |
+
msgstr ""
|
10374 |
+
|
10375 |
+
#: includes/fields/class-gf-field-address.php:501
|
10376 |
+
#@ gravityforms
|
10377 |
+
msgid "Finland"
|
10378 |
+
msgstr ""
|
10379 |
+
|
10380 |
+
#: includes/fields/class-gf-field-address.php:501
|
10381 |
+
#@ gravityforms
|
10382 |
+
msgid "France"
|
10383 |
+
msgstr ""
|
10384 |
+
|
10385 |
+
#: includes/fields/class-gf-field-address.php:501
|
10386 |
+
#@ gravityforms
|
10387 |
+
msgid "French Polynesia"
|
10388 |
+
msgstr ""
|
10389 |
+
|
10390 |
+
#: includes/fields/class-gf-field-address.php:501
|
10391 |
+
#@ gravityforms
|
10392 |
+
msgid "Gabon"
|
10393 |
+
msgstr ""
|
10394 |
+
|
10395 |
+
#: includes/fields/class-gf-field-address.php:502
|
10396 |
+
#@ gravityforms
|
10397 |
+
msgid "Gambia"
|
10398 |
+
msgstr ""
|
10399 |
+
|
10400 |
+
#: includes/fields/class-gf-field-address.php:502
|
10401 |
+
#@ gravityforms
|
10402 |
+
msgctxt "Country"
|
10403 |
+
msgid "Georgia"
|
10404 |
+
msgstr "گرجستان"
|
10405 |
+
|
10406 |
+
#: includes/fields/class-gf-field-address.php:502
|
10407 |
+
#@ gravityforms
|
10408 |
+
msgid "Germany"
|
10409 |
+
msgstr "آلمان"
|
10410 |
+
|
10411 |
+
#: includes/fields/class-gf-field-address.php:502
|
10412 |
+
#@ gravityforms
|
10413 |
+
msgid "Ghana"
|
10414 |
+
msgstr ""
|
10415 |
+
|
10416 |
+
#: includes/fields/class-gf-field-address.php:502
|
10417 |
+
#@ gravityforms
|
10418 |
+
msgid "Greece"
|
10419 |
+
msgstr "یونان"
|
10420 |
+
|
10421 |
+
#: includes/fields/class-gf-field-address.php:502
|
10422 |
+
#@ gravityforms
|
10423 |
+
msgid "Greenland"
|
10424 |
+
msgstr ""
|
10425 |
+
|
10426 |
+
#: includes/fields/class-gf-field-address.php:502
|
10427 |
+
#@ gravityforms
|
10428 |
+
msgid "Grenada"
|
10429 |
+
msgstr ""
|
10430 |
+
|
10431 |
+
#: includes/fields/class-gf-field-address.php:502
|
10432 |
+
#@ gravityforms
|
10433 |
+
msgid "Guam"
|
10434 |
+
msgstr ""
|
10435 |
+
|
10436 |
+
#: includes/fields/class-gf-field-address.php:502
|
10437 |
+
#@ gravityforms
|
10438 |
+
msgid "Guatemala"
|
10439 |
+
msgstr ""
|
10440 |
+
|
10441 |
+
#: includes/fields/class-gf-field-address.php:502
|
10442 |
+
#@ gravityforms
|
10443 |
+
msgid "Guinea"
|
10444 |
+
msgstr ""
|
10445 |
+
|
10446 |
+
#: includes/fields/class-gf-field-address.php:502
|
10447 |
+
#@ gravityforms
|
10448 |
+
msgid "Guinea-Bissau"
|
10449 |
+
msgstr ""
|
10450 |
+
|
10451 |
+
#: includes/fields/class-gf-field-address.php:502
|
10452 |
+
#@ gravityforms
|
10453 |
+
msgid "Guyana"
|
10454 |
+
msgstr ""
|
10455 |
+
|
10456 |
+
#: includes/fields/class-gf-field-address.php:502
|
10457 |
+
#@ gravityforms
|
10458 |
+
msgid "Haiti"
|
10459 |
+
msgstr ""
|
10460 |
+
|
10461 |
+
#: includes/fields/class-gf-field-address.php:502
|
10462 |
+
#@ gravityforms
|
10463 |
+
msgid "Honduras"
|
10464 |
+
msgstr ""
|
10465 |
+
|
10466 |
+
#: includes/fields/class-gf-field-address.php:502
|
10467 |
+
#@ gravityforms
|
10468 |
+
msgid "Hong Kong"
|
10469 |
+
msgstr ""
|
10470 |
+
|
10471 |
+
#: includes/fields/class-gf-field-address.php:502
|
10472 |
+
#@ gravityforms
|
10473 |
+
msgid "Hungary"
|
10474 |
+
msgstr ""
|
10475 |
+
|
10476 |
+
#: includes/fields/class-gf-field-address.php:502
|
10477 |
+
#@ gravityforms
|
10478 |
+
msgid "Iceland"
|
10479 |
+
msgstr "ایسلند"
|
10480 |
+
|
10481 |
+
#: includes/fields/class-gf-field-address.php:502
|
10482 |
+
#@ gravityforms
|
10483 |
+
msgid "India"
|
10484 |
+
msgstr "هند"
|
10485 |
+
|
10486 |
+
#: includes/fields/class-gf-field-address.php:502
|
10487 |
+
#@ gravityforms
|
10488 |
+
msgid "Indonesia"
|
10489 |
+
msgstr "اندونزی"
|
10490 |
+
|
10491 |
+
#: includes/fields/class-gf-field-address.php:502
|
10492 |
+
#@ gravityforms
|
10493 |
+
msgid "Iran"
|
10494 |
+
msgstr "ایران"
|
10495 |
+
|
10496 |
+
#: includes/fields/class-gf-field-address.php:502
|
10497 |
+
#@ gravityforms
|
10498 |
+
msgid "Iraq"
|
10499 |
+
msgstr "عراق"
|
10500 |
+
|
10501 |
+
#: includes/fields/class-gf-field-address.php:502
|
10502 |
+
#@ gravityforms
|
10503 |
+
msgid "Ireland"
|
10504 |
+
msgstr "ایرلند"
|
10505 |
+
|
10506 |
+
#: includes/fields/class-gf-field-address.php:502
|
10507 |
+
#@ gravityforms
|
10508 |
+
msgid "Israel"
|
10509 |
+
msgstr "اسرائیل"
|
10510 |
+
|
10511 |
+
#: includes/fields/class-gf-field-address.php:502
|
10512 |
+
#@ gravityforms
|
10513 |
+
msgid "Italy"
|
10514 |
+
msgstr "ایتالیا"
|
10515 |
+
|
10516 |
+
#: includes/fields/class-gf-field-address.php:502
|
10517 |
+
#@ gravityforms
|
10518 |
+
msgid "Jamaica"
|
10519 |
+
msgstr "جامائیکا"
|
10520 |
+
|
10521 |
+
#: includes/fields/class-gf-field-address.php:502
|
10522 |
+
#@ gravityforms
|
10523 |
+
msgid "Japan"
|
10524 |
+
msgstr "ژاپن"
|
10525 |
+
|
10526 |
+
#: includes/fields/class-gf-field-address.php:502
|
10527 |
+
#@ gravityforms
|
10528 |
+
msgid "Jordan"
|
10529 |
+
msgstr ""
|
10530 |
+
|
10531 |
+
#: includes/fields/class-gf-field-address.php:502
|
10532 |
+
#@ gravityforms
|
10533 |
+
msgid "Kazakhstan"
|
10534 |
+
msgstr ""
|
10535 |
+
|
10536 |
+
#: includes/fields/class-gf-field-address.php:502
|
10537 |
+
#@ gravityforms
|
10538 |
+
msgid "Kenya"
|
10539 |
+
msgstr ""
|
10540 |
+
|
10541 |
+
#: includes/fields/class-gf-field-address.php:502
|
10542 |
+
#@ gravityforms
|
10543 |
+
msgid "Kiribati"
|
10544 |
+
msgstr ""
|
10545 |
+
|
10546 |
+
#: includes/fields/class-gf-field-address.php:502
|
10547 |
+
#@ gravityforms
|
10548 |
+
msgid "North Korea"
|
10549 |
+
msgstr ""
|
10550 |
+
|
10551 |
+
#: includes/fields/class-gf-field-address.php:502
|
10552 |
+
#@ gravityforms
|
10553 |
+
msgid "South Korea"
|
10554 |
+
msgstr ""
|
10555 |
+
|
10556 |
+
#: includes/fields/class-gf-field-address.php:502
|
10557 |
+
#@ gravityforms
|
10558 |
+
msgid "Kosovo"
|
10559 |
+
msgstr ""
|
10560 |
+
|
10561 |
+
#: includes/fields/class-gf-field-address.php:502
|
10562 |
+
#@ gravityforms
|
10563 |
+
msgid "Kuwait"
|
10564 |
+
msgstr ""
|
10565 |
+
|
10566 |
+
#: includes/fields/class-gf-field-address.php:502
|
10567 |
+
#@ gravityforms
|
10568 |
+
msgid "Kyrgyzstan"
|
10569 |
+
msgstr ""
|
10570 |
+
|
10571 |
+
#: includes/fields/class-gf-field-address.php:502
|
10572 |
+
#@ gravityforms
|
10573 |
+
msgid "Laos"
|
10574 |
+
msgstr ""
|
10575 |
+
|
10576 |
+
#: includes/fields/class-gf-field-address.php:502
|
10577 |
+
#@ gravityforms
|
10578 |
+
msgid "Latvia"
|
10579 |
+
msgstr ""
|
10580 |
+
|
10581 |
+
#: includes/fields/class-gf-field-address.php:502
|
10582 |
+
#@ gravityforms
|
10583 |
+
msgid "Lebanon"
|
10584 |
+
msgstr "لبنان"
|
10585 |
+
|
10586 |
+
#: includes/fields/class-gf-field-address.php:502
|
10587 |
+
#@ gravityforms
|
10588 |
+
msgid "Lesotho"
|
10589 |
+
msgstr ""
|
10590 |
+
|
10591 |
+
#: includes/fields/class-gf-field-address.php:502
|
10592 |
+
#@ gravityforms
|
10593 |
+
msgid "Liberia"
|
10594 |
+
msgstr ""
|
10595 |
+
|
10596 |
+
#: includes/fields/class-gf-field-address.php:502
|
10597 |
+
#@ gravityforms
|
10598 |
+
msgid "Libya"
|
10599 |
+
msgstr ""
|
10600 |
+
|
10601 |
+
#: includes/fields/class-gf-field-address.php:502
|
10602 |
+
#@ gravityforms
|
10603 |
+
msgid "Liechtenstein"
|
10604 |
+
msgstr ""
|
10605 |
+
|
10606 |
+
#: includes/fields/class-gf-field-address.php:502
|
10607 |
+
#@ gravityforms
|
10608 |
+
msgid "Lithuania"
|
10609 |
+
msgstr ""
|
10610 |
+
|
10611 |
+
#: includes/fields/class-gf-field-address.php:502
|
10612 |
+
#@ gravityforms
|
10613 |
+
msgid "Luxembourg"
|
10614 |
+
msgstr ""
|
10615 |
+
|
10616 |
+
#: includes/fields/class-gf-field-address.php:502
|
10617 |
+
#@ gravityforms
|
10618 |
+
msgid "Macedonia"
|
10619 |
+
msgstr ""
|
10620 |
+
|
10621 |
+
#: includes/fields/class-gf-field-address.php:502
|
10622 |
+
#@ gravityforms
|
10623 |
+
msgid "Madagascar"
|
10624 |
+
msgstr ""
|
10625 |
+
|
10626 |
+
#: includes/fields/class-gf-field-address.php:502
|
10627 |
+
#@ gravityforms
|
10628 |
+
msgid "Malawi"
|
10629 |
+
msgstr ""
|
10630 |
+
|
10631 |
+
#: includes/fields/class-gf-field-address.php:502
|
10632 |
+
#@ gravityforms
|
10633 |
+
msgid "Malaysia"
|
10634 |
+
msgstr "مالزی"
|
10635 |
+
|
10636 |
+
#: includes/fields/class-gf-field-address.php:502
|
10637 |
+
#@ gravityforms
|
10638 |
+
msgid "Maldives"
|
10639 |
+
msgstr ""
|
10640 |
+
|
10641 |
+
#: includes/fields/class-gf-field-address.php:502
|
10642 |
+
#@ gravityforms
|
10643 |
+
msgid "Mali"
|
10644 |
+
msgstr ""
|
10645 |
+
|
10646 |
+
#: includes/fields/class-gf-field-address.php:502
|
10647 |
+
#@ gravityforms
|
10648 |
+
msgid "Malta"
|
10649 |
+
msgstr ""
|
10650 |
+
|
10651 |
+
#: includes/fields/class-gf-field-address.php:502
|
10652 |
+
#@ gravityforms
|
10653 |
+
msgid "Marshall Islands"
|
10654 |
+
msgstr ""
|
10655 |
+
|
10656 |
+
#: includes/fields/class-gf-field-address.php:502
|
10657 |
+
#@ gravityforms
|
10658 |
+
msgid "Mauritania"
|
10659 |
+
msgstr ""
|
10660 |
+
|
10661 |
+
#: includes/fields/class-gf-field-address.php:502
|
10662 |
+
#@ gravityforms
|
10663 |
+
msgid "Mauritius"
|
10664 |
+
msgstr ""
|
10665 |
+
|
10666 |
+
#: includes/fields/class-gf-field-address.php:502
|
10667 |
+
#@ gravityforms
|
10668 |
+
msgid "Mexico"
|
10669 |
+
msgstr "مکزیک"
|
10670 |
+
|
10671 |
+
#: includes/fields/class-gf-field-address.php:502
|
10672 |
+
#@ gravityforms
|
10673 |
+
msgid "Micronesia"
|
10674 |
+
msgstr ""
|
10675 |
+
|
10676 |
+
#: includes/fields/class-gf-field-address.php:502
|
10677 |
+
#@ gravityforms
|
10678 |
+
msgid "Moldova"
|
10679 |
+
msgstr ""
|
10680 |
+
|
10681 |
+
#: includes/fields/class-gf-field-address.php:502
|
10682 |
+
#@ gravityforms
|
10683 |
+
msgid "Monaco"
|
10684 |
+
msgstr ""
|
10685 |
+
|
10686 |
+
#: includes/fields/class-gf-field-address.php:502
|
10687 |
+
#@ gravityforms
|
10688 |
+
msgid "Mongolia"
|
10689 |
+
msgstr ""
|
10690 |
+
|
10691 |
+
#: includes/fields/class-gf-field-address.php:502
|
10692 |
+
#@ gravityforms
|
10693 |
+
msgid "Montenegro"
|
10694 |
+
msgstr ""
|
10695 |
+
|
10696 |
+
#: includes/fields/class-gf-field-address.php:502
|
10697 |
+
#@ gravityforms
|
10698 |
+
msgid "Morocco"
|
10699 |
+
msgstr ""
|
10700 |
+
|
10701 |
+
#: includes/fields/class-gf-field-address.php:502
|
10702 |
+
#@ gravityforms
|
10703 |
+
msgid "Mozambique"
|
10704 |
+
msgstr ""
|
10705 |
+
|
10706 |
+
#: includes/fields/class-gf-field-address.php:502
|
10707 |
+
#@ gravityforms
|
10708 |
+
msgid "Myanmar"
|
10709 |
+
msgstr ""
|
10710 |
+
|
10711 |
+
#: includes/fields/class-gf-field-address.php:502
|
10712 |
+
#@ gravityforms
|
10713 |
+
msgid "Namibia"
|
10714 |
+
msgstr ""
|
10715 |
+
|
10716 |
+
#: includes/fields/class-gf-field-address.php:502
|
10717 |
+
#@ gravityforms
|
10718 |
+
msgid "Nauru"
|
10719 |
+
msgstr ""
|
10720 |
+
|
10721 |
+
#: includes/fields/class-gf-field-address.php:502
|
10722 |
+
#@ gravityforms
|
10723 |
+
msgid "Nepal"
|
10724 |
+
msgstr ""
|
10725 |
+
|
10726 |
+
#: includes/fields/class-gf-field-address.php:502
|
10727 |
+
#@ gravityforms
|
10728 |
+
msgid "Netherlands"
|
10729 |
+
msgstr ""
|
10730 |
+
|
10731 |
+
#: includes/fields/class-gf-field-address.php:502
|
10732 |
+
#@ gravityforms
|
10733 |
+
msgid "New Zealand"
|
10734 |
+
msgstr ""
|
10735 |
+
|
10736 |
+
#: includes/fields/class-gf-field-address.php:503
|
10737 |
+
#@ gravityforms
|
10738 |
+
msgid "Nicaragua"
|
10739 |
+
msgstr ""
|
10740 |
+
|
10741 |
+
#: includes/fields/class-gf-field-address.php:503
|
10742 |
+
#@ gravityforms
|
10743 |
+
msgid "Niger"
|
10744 |
+
msgstr ""
|
10745 |
+
|
10746 |
+
#: includes/fields/class-gf-field-address.php:503
|
10747 |
+
#@ gravityforms
|
10748 |
+
msgid "Nigeria"
|
10749 |
+
msgstr ""
|
10750 |
+
|
10751 |
+
#: includes/fields/class-gf-field-address.php:503
|
10752 |
+
#@ gravityforms
|
10753 |
+
msgid "Northern Mariana Islands"
|
10754 |
+
msgstr ""
|
10755 |
+
|
10756 |
+
#: includes/fields/class-gf-field-address.php:503
|
10757 |
+
#@ gravityforms
|
10758 |
+
msgid "Norway"
|
10759 |
+
msgstr ""
|
10760 |
+
|
10761 |
+
#: includes/fields/class-gf-field-address.php:503
|
10762 |
+
#@ gravityforms
|
10763 |
+
msgid "Oman"
|
10764 |
+
msgstr ""
|
10765 |
+
|
10766 |
+
#: includes/fields/class-gf-field-address.php:503
|
10767 |
+
#@ gravityforms
|
10768 |
+
msgid "Pakistan"
|
10769 |
+
msgstr ""
|
10770 |
+
|
10771 |
+
#: includes/fields/class-gf-field-address.php:503
|
10772 |
+
#@ gravityforms
|
10773 |
+
msgid "Palau"
|
10774 |
+
msgstr ""
|
10775 |
+
|
10776 |
+
#: includes/fields/class-gf-field-address.php:503
|
10777 |
+
#@ gravityforms
|
10778 |
+
msgid "Palestine, State of"
|
10779 |
+
msgstr ""
|
10780 |
+
|
10781 |
+
#: includes/fields/class-gf-field-address.php:503
|
10782 |
+
#@ gravityforms
|
10783 |
+
msgid "Panama"
|
10784 |
+
msgstr ""
|
10785 |
+
|
10786 |
+
#: includes/fields/class-gf-field-address.php:503
|
10787 |
+
#@ gravityforms
|
10788 |
+
msgid "Papua New Guinea"
|
10789 |
+
msgstr ""
|
10790 |
+
|
10791 |
+
#: includes/fields/class-gf-field-address.php:503
|
10792 |
+
#@ gravityforms
|
10793 |
+
msgid "Paraguay"
|
10794 |
+
msgstr ""
|
10795 |
+
|
10796 |
+
#: includes/fields/class-gf-field-address.php:503
|
10797 |
+
#@ gravityforms
|
10798 |
+
msgid "Peru"
|
10799 |
+
msgstr ""
|
10800 |
+
|
10801 |
+
#: includes/fields/class-gf-field-address.php:503
|
10802 |
+
#@ gravityforms
|
10803 |
+
msgid "Philippines"
|
10804 |
+
msgstr ""
|
10805 |
+
|
10806 |
+
#: includes/fields/class-gf-field-address.php:503
|
10807 |
+
#@ gravityforms
|
10808 |
+
msgid "Poland"
|
10809 |
+
msgstr ""
|
10810 |
+
|
10811 |
+
#: includes/fields/class-gf-field-address.php:503
|
10812 |
+
#@ gravityforms
|
10813 |
+
msgid "Portugal"
|
10814 |
+
msgstr ""
|
10815 |
+
|
10816 |
+
#: includes/fields/class-gf-field-address.php:503
|
10817 |
+
#@ gravityforms
|
10818 |
+
msgid "Puerto Rico"
|
10819 |
+
msgstr ""
|
10820 |
+
|
10821 |
+
#: includes/fields/class-gf-field-address.php:503
|
10822 |
+
#@ gravityforms
|
10823 |
+
msgid "Qatar"
|
10824 |
+
msgstr ""
|
10825 |
+
|
10826 |
+
#: includes/fields/class-gf-field-address.php:503
|
10827 |
+
#@ gravityforms
|
10828 |
+
msgid "Romania"
|
10829 |
+
msgstr ""
|
10830 |
+
|
10831 |
+
#: includes/fields/class-gf-field-address.php:503
|
10832 |
+
#@ gravityforms
|
10833 |
+
msgid "Russia"
|
10834 |
+
msgstr "روسیه"
|
10835 |
+
|
10836 |
+
#: includes/fields/class-gf-field-address.php:503
|
10837 |
+
#@ gravityforms
|
10838 |
+
msgid "Rwanda"
|
10839 |
+
msgstr ""
|
10840 |
+
|
10841 |
+
#: includes/fields/class-gf-field-address.php:503
|
10842 |
+
#@ gravityforms
|
10843 |
+
msgid "Saint Kitts and Nevis"
|
10844 |
+
msgstr ""
|
10845 |
+
|
10846 |
+
#: includes/fields/class-gf-field-address.php:503
|
10847 |
+
#@ gravityforms
|
10848 |
+
msgid "Saint Lucia"
|
10849 |
+
msgstr ""
|
10850 |
+
|
10851 |
+
#: includes/fields/class-gf-field-address.php:503
|
10852 |
+
#@ gravityforms
|
10853 |
+
msgid "Saint Vincent and the Grenadines"
|
10854 |
+
msgstr ""
|
10855 |
+
|
10856 |
+
#: includes/fields/class-gf-field-address.php:503
|
10857 |
+
#@ gravityforms
|
10858 |
+
msgid "Samoa"
|
10859 |
+
msgstr ""
|
10860 |
+
|
10861 |
+
#: includes/fields/class-gf-field-address.php:503
|
10862 |
+
#@ gravityforms
|
10863 |
+
msgid "San Marino"
|
10864 |
+
msgstr ""
|
10865 |
+
|
10866 |
+
#: includes/fields/class-gf-field-address.php:503
|
10867 |
+
#@ gravityforms
|
10868 |
+
msgid "Sao Tome and Principe"
|
10869 |
+
msgstr ""
|
10870 |
+
|
10871 |
+
#: includes/fields/class-gf-field-address.php:503
|
10872 |
+
#@ gravityforms
|
10873 |
+
msgid "Saudi Arabia"
|
10874 |
+
msgstr ""
|
10875 |
+
|
10876 |
+
#: includes/fields/class-gf-field-address.php:503
|
10877 |
+
#@ gravityforms
|
10878 |
+
msgid "Senegal"
|
10879 |
+
msgstr ""
|
10880 |
+
|
10881 |
+
#: includes/fields/class-gf-field-address.php:503
|
10882 |
+
#@ gravityforms
|
10883 |
+
msgid "Serbia"
|
10884 |
+
msgstr ""
|
10885 |
+
|
10886 |
+
#: includes/fields/class-gf-field-address.php:503
|
10887 |
+
#@ gravityforms
|
10888 |
+
msgid "Seychelles"
|
10889 |
+
msgstr ""
|
10890 |
+
|
10891 |
+
#: includes/fields/class-gf-field-address.php:503
|
10892 |
+
#@ gravityforms
|
10893 |
+
msgid "Sierra Leone"
|
10894 |
+
msgstr ""
|
10895 |
+
|
10896 |
+
#: includes/fields/class-gf-field-address.php:503
|
10897 |
+
#@ gravityforms
|
10898 |
+
msgid "Singapore"
|
10899 |
+
msgstr "سنگاپور"
|
10900 |
+
|
10901 |
+
#: includes/fields/class-gf-field-address.php:503
|
10902 |
+
#@ gravityforms
|
10903 |
+
msgid "Sint Maarten"
|
10904 |
+
msgstr ""
|
10905 |
+
|
10906 |
+
#: includes/fields/class-gf-field-address.php:503
|
10907 |
+
#@ gravityforms
|
10908 |
+
msgid "Slovakia"
|
10909 |
+
msgstr ""
|
10910 |
+
|
10911 |
+
#: includes/fields/class-gf-field-address.php:503
|
10912 |
+
#@ gravityforms
|
10913 |
+
msgid "Slovenia"
|
10914 |
+
msgstr ""
|
10915 |
+
|
10916 |
+
#: includes/fields/class-gf-field-address.php:503
|
10917 |
+
#@ gravityforms
|
10918 |
+
msgid "Solomon Islands"
|
10919 |
+
msgstr ""
|
10920 |
+
|
10921 |
+
#: includes/fields/class-gf-field-address.php:503
|
10922 |
+
#@ gravityforms
|
10923 |
+
msgid "Somalia"
|
10924 |
+
msgstr ""
|
10925 |
+
|
10926 |
+
#: includes/fields/class-gf-field-address.php:503
|
10927 |
+
#@ gravityforms
|
10928 |
+
msgid "South Africa"
|
10929 |
+
msgstr "آفریقای جنوبی"
|
10930 |
+
|
10931 |
+
#: includes/fields/class-gf-field-address.php:503
|
10932 |
+
#@ gravityforms
|
10933 |
+
msgid "Spain"
|
10934 |
+
msgstr "اسپانیا"
|
10935 |
+
|
10936 |
+
#: includes/fields/class-gf-field-address.php:503
|
10937 |
+
#@ gravityforms
|
10938 |
+
msgid "Sri Lanka"
|
10939 |
+
msgstr ""
|
10940 |
+
|
10941 |
+
#: includes/fields/class-gf-field-address.php:503
|
10942 |
+
#@ gravityforms
|
10943 |
+
msgid "Sudan"
|
10944 |
+
msgstr "سودان"
|
10945 |
+
|
10946 |
+
#: includes/fields/class-gf-field-address.php:503
|
10947 |
+
#@ gravityforms
|
10948 |
+
msgid "Sudan, South"
|
10949 |
+
msgstr ""
|
10950 |
+
|
10951 |
+
#: includes/fields/class-gf-field-address.php:503
|
10952 |
+
#@ gravityforms
|
10953 |
+
msgid "Suriname"
|
10954 |
+
msgstr ""
|
10955 |
+
|
10956 |
+
#: includes/fields/class-gf-field-address.php:503
|
10957 |
+
#@ gravityforms
|
10958 |
+
msgid "Swaziland"
|
10959 |
+
msgstr ""
|
10960 |
+
|
10961 |
+
#: includes/fields/class-gf-field-address.php:503
|
10962 |
+
#@ gravityforms
|
10963 |
+
msgid "Sweden"
|
10964 |
+
msgstr ""
|
10965 |
+
|
10966 |
+
#: includes/fields/class-gf-field-address.php:503
|
10967 |
+
#@ gravityforms
|
10968 |
+
msgid "Switzerland"
|
10969 |
+
msgstr ""
|
10970 |
+
|
10971 |
+
#: includes/fields/class-gf-field-address.php:503
|
10972 |
+
#@ gravityforms
|
10973 |
+
msgid "Syria"
|
10974 |
+
msgstr ""
|
10975 |
+
|
10976 |
+
#: includes/fields/class-gf-field-address.php:503
|
10977 |
+
#@ gravityforms
|
10978 |
+
msgid "Taiwan"
|
10979 |
+
msgstr ""
|
10980 |
+
|
10981 |
+
#: includes/fields/class-gf-field-address.php:503
|
10982 |
+
#@ gravityforms
|
10983 |
+
msgid "Tajikistan"
|
10984 |
+
msgstr ""
|
10985 |
+
|
10986 |
+
#: includes/fields/class-gf-field-address.php:503
|
10987 |
+
#@ gravityforms
|
10988 |
+
msgid "Tanzania"
|
10989 |
+
msgstr ""
|
10990 |
+
|
10991 |
+
#: includes/fields/class-gf-field-address.php:503
|
10992 |
+
#@ gravityforms
|
10993 |
+
msgid "Thailand"
|
10994 |
+
msgstr ""
|
10995 |
+
|
10996 |
+
#: includes/fields/class-gf-field-address.php:503
|
10997 |
+
#@ gravityforms
|
10998 |
+
msgid "Togo"
|
10999 |
+
msgstr ""
|
11000 |
+
|
11001 |
+
#: includes/fields/class-gf-field-address.php:503
|
11002 |
+
#@ gravityforms
|
11003 |
+
msgid "Tonga"
|
11004 |
+
msgstr ""
|
11005 |
+
|
11006 |
+
#: includes/fields/class-gf-field-address.php:503
|
11007 |
+
#@ gravityforms
|
11008 |
+
msgid "Trinidad and Tobago"
|
11009 |
+
msgstr ""
|
11010 |
+
|
11011 |
+
#: includes/fields/class-gf-field-address.php:503
|
11012 |
+
#@ gravityforms
|
11013 |
+
msgid "Tunisia"
|
11014 |
+
msgstr ""
|
11015 |
+
|
11016 |
+
#: includes/fields/class-gf-field-address.php:503
|
11017 |
+
#@ gravityforms
|
11018 |
+
msgid "Turkey"
|
11019 |
+
msgstr "ترکیه"
|
11020 |
+
|
11021 |
+
#: includes/fields/class-gf-field-address.php:503
|
11022 |
+
#@ gravityforms
|
11023 |
+
msgid "Turkmenistan"
|
11024 |
+
msgstr ""
|
11025 |
+
|
11026 |
+
#: includes/fields/class-gf-field-address.php:503
|
11027 |
+
#@ gravityforms
|
11028 |
+
msgid "Tuvalu"
|
11029 |
+
msgstr ""
|
11030 |
+
|
11031 |
+
#: includes/fields/class-gf-field-address.php:503
|
11032 |
+
#@ gravityforms
|
11033 |
+
msgid "Uganda"
|
11034 |
+
msgstr ""
|
11035 |
+
|
11036 |
+
#: includes/fields/class-gf-field-address.php:503
|
11037 |
+
#@ gravityforms
|
11038 |
+
msgid "Ukraine"
|
11039 |
+
msgstr "اکراین"
|
11040 |
+
|
11041 |
+
#: includes/fields/class-gf-field-address.php:503
|
11042 |
+
#@ gravityforms
|
11043 |
+
msgid "United Arab Emirates"
|
11044 |
+
msgstr "امارات متحده عربی"
|
11045 |
+
|
11046 |
+
#: includes/fields/class-gf-field-address.php:503
|
11047 |
+
#@ gravityforms
|
11048 |
+
msgid "United Kingdom"
|
11049 |
+
msgstr "انگلستان"
|
11050 |
+
|
11051 |
+
#: includes/fields/class-gf-field-address.php:504
|
11052 |
+
#@ gravityforms
|
11053 |
+
msgid "Uruguay"
|
11054 |
+
msgstr "اروگوئه"
|
11055 |
+
|
11056 |
+
#: includes/fields/class-gf-field-address.php:504
|
11057 |
+
#@ gravityforms
|
11058 |
+
msgid "Uzbekistan"
|
11059 |
+
msgstr ""
|
11060 |
+
|
11061 |
+
#: includes/fields/class-gf-field-address.php:504
|
11062 |
+
#@ gravityforms
|
11063 |
+
msgid "Vanuatu"
|
11064 |
+
msgstr ""
|
11065 |
+
|
11066 |
+
#: includes/fields/class-gf-field-address.php:504
|
11067 |
+
#@ gravityforms
|
11068 |
+
msgid "Vatican City"
|
11069 |
+
msgstr ""
|
11070 |
+
|
11071 |
+
#: includes/fields/class-gf-field-address.php:504
|
11072 |
+
#@ gravityforms
|
11073 |
+
msgid "Venezuela"
|
11074 |
+
msgstr ""
|
11075 |
+
|
11076 |
+
#: includes/fields/class-gf-field-address.php:504
|
11077 |
+
#@ gravityforms
|
11078 |
+
msgid "Vietnam"
|
11079 |
+
msgstr ""
|
11080 |
+
|
11081 |
+
#: includes/fields/class-gf-field-address.php:504
|
11082 |
+
#@ gravityforms
|
11083 |
+
msgid "Virgin Islands, British"
|
11084 |
+
msgstr ""
|
11085 |
+
|
11086 |
+
#: includes/fields/class-gf-field-address.php:504
|
11087 |
+
#@ gravityforms
|
11088 |
+
msgid "Virgin Islands, U.S."
|
11089 |
+
msgstr ""
|
11090 |
+
|
11091 |
+
#: includes/fields/class-gf-field-address.php:504
|
11092 |
+
#@ gravityforms
|
11093 |
+
msgid "Yemen"
|
11094 |
+
msgstr ""
|
11095 |
+
|
11096 |
+
#: includes/fields/class-gf-field-address.php:504
|
11097 |
+
#@ gravityforms
|
11098 |
+
msgid "Zambia"
|
11099 |
+
msgstr ""
|
11100 |
+
|
11101 |
+
#: includes/fields/class-gf-field-address.php:504
|
11102 |
+
#@ gravityforms
|
11103 |
+
msgid "Zimbabwe"
|
11104 |
+
msgstr ""
|
11105 |
+
|
11106 |
+
#: includes/fields/class-gf-field-address.php:517
|
11107 |
+
#@ gravityforms
|
11108 |
+
msgid "AFGHANISTAN"
|
11109 |
+
msgstr ""
|
11110 |
+
|
11111 |
+
#: includes/fields/class-gf-field-address.php:518
|
11112 |
+
#@ gravityforms
|
11113 |
+
msgid "ALBANIA"
|
11114 |
+
msgstr ""
|
11115 |
+
|
11116 |
+
#: includes/fields/class-gf-field-address.php:519
|
11117 |
+
#@ gravityforms
|
11118 |
+
msgid "ALGERIA"
|
11119 |
+
msgstr ""
|
11120 |
+
|
11121 |
+
#: includes/fields/class-gf-field-address.php:520
|
11122 |
+
#@ gravityforms
|
11123 |
+
msgid "AMERICAN SAMOA"
|
11124 |
+
msgstr ""
|
11125 |
+
|
11126 |
+
#: includes/fields/class-gf-field-address.php:521
|
11127 |
+
#@ gravityforms
|
11128 |
+
msgid "ANDORRA"
|
11129 |
+
msgstr ""
|
11130 |
+
|
11131 |
+
#: includes/fields/class-gf-field-address.php:522
|
11132 |
+
#@ gravityforms
|
11133 |
+
msgid "ANGOLA"
|
11134 |
+
msgstr ""
|
11135 |
+
|
11136 |
+
#: includes/fields/class-gf-field-address.php:523
|
11137 |
+
#@ gravityforms
|
11138 |
+
msgid "ANTIGUA AND BARBUDA"
|
11139 |
+
msgstr ""
|
11140 |
+
|
11141 |
+
#: includes/fields/class-gf-field-address.php:524
|
11142 |
+
#@ gravityforms
|
11143 |
+
msgid "ARGENTINA"
|
11144 |
+
msgstr ""
|
11145 |
+
|
11146 |
+
#: includes/fields/class-gf-field-address.php:525
|
11147 |
+
#@ gravityforms
|
11148 |
+
msgid "ARMENIA"
|
11149 |
+
msgstr ""
|
11150 |
+
|
11151 |
+
#: includes/fields/class-gf-field-address.php:526
|
11152 |
+
#@ gravityforms
|
11153 |
+
msgid "AUSTRALIA"
|
11154 |
+
msgstr ""
|
11155 |
+
|
11156 |
+
#: includes/fields/class-gf-field-address.php:527
|
11157 |
+
#@ gravityforms
|
11158 |
+
msgid "AUSTRIA"
|
11159 |
+
msgstr ""
|
11160 |
+
|
11161 |
+
#: includes/fields/class-gf-field-address.php:528
|
11162 |
+
#@ gravityforms
|
11163 |
+
msgid "AZERBAIJAN"
|
11164 |
+
msgstr ""
|
11165 |
+
|
11166 |
+
#: includes/fields/class-gf-field-address.php:529
|
11167 |
+
#@ gravityforms
|
11168 |
+
msgid "BAHAMAS"
|
11169 |
+
msgstr ""
|
11170 |
+
|
11171 |
+
#: includes/fields/class-gf-field-address.php:530
|
11172 |
+
#@ gravityforms
|
11173 |
+
msgid "BAHRAIN"
|
11174 |
+
msgstr ""
|
11175 |
+
|
11176 |
+
#: includes/fields/class-gf-field-address.php:531
|
11177 |
+
#@ gravityforms
|
11178 |
+
msgid "BANGLADESH"
|
11179 |
+
msgstr ""
|
11180 |
+
|
11181 |
+
#: includes/fields/class-gf-field-address.php:532
|
11182 |
+
#@ gravityforms
|
11183 |
+
msgid "BARBADOS"
|
11184 |
+
msgstr ""
|
11185 |
+
|
11186 |
+
#: includes/fields/class-gf-field-address.php:533
|
11187 |
+
#@ gravityforms
|
11188 |
+
msgid "BELARUS"
|
11189 |
+
msgstr "بلاروس"
|
11190 |
+
|
11191 |
+
#: includes/fields/class-gf-field-address.php:534
|
11192 |
+
#@ gravityforms
|
11193 |
+
msgid "BELGIUM"
|
11194 |
+
msgstr ""
|
11195 |
+
|
11196 |
+
#: includes/fields/class-gf-field-address.php:535
|
11197 |
+
#@ gravityforms
|
11198 |
+
msgid "BELIZE"
|
11199 |
+
msgstr ""
|
11200 |
+
|
11201 |
+
#: includes/fields/class-gf-field-address.php:536
|
11202 |
+
#@ gravityforms
|
11203 |
+
msgid "BENIN"
|
11204 |
+
msgstr ""
|
11205 |
+
|
11206 |
+
#: includes/fields/class-gf-field-address.php:537
|
11207 |
+
#@ gravityforms
|
11208 |
+
msgid "BERMUDA"
|
11209 |
+
msgstr ""
|
11210 |
+
|
11211 |
+
#: includes/fields/class-gf-field-address.php:538
|
11212 |
+
#@ gravityforms
|
11213 |
+
msgid "BHUTAN"
|
11214 |
+
msgstr ""
|
11215 |
+
|
11216 |
+
#: includes/fields/class-gf-field-address.php:539
|
11217 |
+
#@ gravityforms
|
11218 |
+
msgid "BOLIVIA"
|
11219 |
+
msgstr ""
|
11220 |
+
|
11221 |
+
#: includes/fields/class-gf-field-address.php:540
|
11222 |
+
#@ gravityforms
|
11223 |
+
msgid "BOSNIA AND HERZEGOVINA"
|
11224 |
+
msgstr ""
|
11225 |
+
|
11226 |
+
#: includes/fields/class-gf-field-address.php:541
|
11227 |
+
#@ gravityforms
|
11228 |
+
msgid "BOTSWANA"
|
11229 |
+
msgstr ""
|
11230 |
+
|
11231 |
+
#: includes/fields/class-gf-field-address.php:542
|
11232 |
+
#@ gravityforms
|
11233 |
+
msgid "BRAZIL"
|
11234 |
+
msgstr "برزیل"
|
11235 |
+
|
11236 |
+
#: includes/fields/class-gf-field-address.php:543
|
11237 |
+
#@ gravityforms
|
11238 |
+
msgid "BRUNEI"
|
11239 |
+
msgstr ""
|
11240 |
+
|
11241 |
+
#: includes/fields/class-gf-field-address.php:544
|
11242 |
+
#@ gravityforms
|
11243 |
+
msgid "BULGARIA"
|
11244 |
+
msgstr "بلغارستان"
|
11245 |
+
|
11246 |
+
#: includes/fields/class-gf-field-address.php:545
|
11247 |
+
#@ gravityforms
|
11248 |
+
msgid "BURKINA FASO"
|
11249 |
+
msgstr ""
|
11250 |
+
|
11251 |
+
#: includes/fields/class-gf-field-address.php:546
|
11252 |
+
#@ gravityforms
|
11253 |
+
msgid "BURUNDI"
|
11254 |
+
msgstr ""
|
11255 |
+
|
11256 |
+
#: includes/fields/class-gf-field-address.php:547
|
11257 |
+
#@ gravityforms
|
11258 |
+
msgid "CAMBODIA"
|
11259 |
+
msgstr ""
|
11260 |
+
|
11261 |
+
#: includes/fields/class-gf-field-address.php:548
|
11262 |
+
#@ gravityforms
|
11263 |
+
msgid "CAMEROON"
|
11264 |
+
msgstr ""
|
11265 |
+
|
11266 |
+
#: includes/fields/class-gf-field-address.php:549
|
11267 |
+
#@ gravityforms
|
11268 |
+
msgid "CANADA"
|
11269 |
+
msgstr ""
|
11270 |
+
|
11271 |
+
#: includes/fields/class-gf-field-address.php:550
|
11272 |
+
#@ gravityforms
|
11273 |
+
msgid "CAPE VERDE"
|
11274 |
+
msgstr ""
|
11275 |
+
|
11276 |
+
#: includes/fields/class-gf-field-address.php:551
|
11277 |
+
#@ gravityforms
|
11278 |
+
msgid "CAYMAN ISLANDS"
|
11279 |
+
msgstr ""
|
11280 |
+
|
11281 |
+
#: includes/fields/class-gf-field-address.php:552
|
11282 |
+
#@ gravityforms
|
11283 |
+
msgid "CENTRAL AFRICAN REPUBLIC"
|
11284 |
+
msgstr ""
|
11285 |
+
|
11286 |
+
#: includes/fields/class-gf-field-address.php:553
|
11287 |
+
#@ gravityforms
|
11288 |
+
msgid "CHAD"
|
11289 |
+
msgstr ""
|
11290 |
+
|
11291 |
+
#: includes/fields/class-gf-field-address.php:554
|
11292 |
+
#@ gravityforms
|
11293 |
+
msgid "CHILE"
|
11294 |
+
msgstr "شیلی"
|
11295 |
+
|
11296 |
+
#: includes/fields/class-gf-field-address.php:555
|
11297 |
+
#@ gravityforms
|
11298 |
+
msgid "CHINA"
|
11299 |
+
msgstr "چین"
|
11300 |
+
|
11301 |
+
#: includes/fields/class-gf-field-address.php:556
|
11302 |
+
#@ gravityforms
|
11303 |
+
msgid "COLOMBIA"
|
11304 |
+
msgstr "کلمبیا"
|
11305 |
+
|
11306 |
+
#: includes/fields/class-gf-field-address.php:557
|
11307 |
+
#@ gravityforms
|
11308 |
+
msgid "COMOROS"
|
11309 |
+
msgstr ""
|
11310 |
+
|
11311 |
+
#: includes/fields/class-gf-field-address.php:558
|
11312 |
+
#@ gravityforms
|
11313 |
+
msgid "CONGO, DEMOCRATIC REPUBLIC OF THE"
|
11314 |
+
msgstr ""
|
11315 |
+
|
11316 |
+
#: includes/fields/class-gf-field-address.php:559
|
11317 |
+
#@ gravityforms
|
11318 |
+
msgid "CONGO, REPUBLIC OF THE"
|
11319 |
+
msgstr ""
|
11320 |
+
|
11321 |
+
#: includes/fields/class-gf-field-address.php:560
|
11322 |
+
#@ gravityforms
|
11323 |
+
msgid "COSTA RICA"
|
11324 |
+
msgstr ""
|
11325 |
+
|
11326 |
+
#: includes/fields/class-gf-field-address.php:561
|
11327 |
+
#@ gravityforms
|
11328 |
+
msgid "CÔTE D'IVOIRE"
|
11329 |
+
msgstr ""
|
11330 |
+
|
11331 |
+
#: includes/fields/class-gf-field-address.php:562
|
11332 |
+
#@ gravityforms
|
11333 |
+
msgid "CROATIA"
|
11334 |
+
msgstr ""
|
11335 |
+
|
11336 |
+
#: includes/fields/class-gf-field-address.php:563
|
11337 |
+
#@ gravityforms
|
11338 |
+
msgid "CUBA"
|
11339 |
+
msgstr ""
|
11340 |
+
|
11341 |
+
#: includes/fields/class-gf-field-address.php:564
|
11342 |
+
#@ gravityforms
|
11343 |
+
msgid "CURAÇAO"
|
11344 |
+
msgstr ""
|
11345 |
+
|
11346 |
+
#: includes/fields/class-gf-field-address.php:565
|
11347 |
+
#@ gravityforms
|
11348 |
+
msgid "CYPRUS"
|
11349 |
+
msgstr ""
|
11350 |
+
|
11351 |
+
#: includes/fields/class-gf-field-address.php:566
|
11352 |
+
#@ gravityforms
|
11353 |
+
msgid "CZECH REPUBLIC"
|
11354 |
+
msgstr ""
|
11355 |
+
|
11356 |
+
#: includes/fields/class-gf-field-address.php:567
|
11357 |
+
#@ gravityforms
|
11358 |
+
msgid "DENMARK"
|
11359 |
+
msgstr "دانمارک"
|
11360 |
+
|
11361 |
+
#: includes/fields/class-gf-field-address.php:568
|
11362 |
+
#@ gravityforms
|
11363 |
+
msgid "DJIBOUTI"
|
11364 |
+
msgstr ""
|
11365 |
+
|
11366 |
+
#: includes/fields/class-gf-field-address.php:569
|
11367 |
+
#@ gravityforms
|
11368 |
+
msgid "DOMINICA"
|
11369 |
+
msgstr ""
|
11370 |
+
|
11371 |
+
#: includes/fields/class-gf-field-address.php:570
|
11372 |
+
#@ gravityforms
|
11373 |
+
msgid "DOMINICAN REPUBLIC"
|
11374 |
+
msgstr ""
|
11375 |
+
|
11376 |
+
#: includes/fields/class-gf-field-address.php:571
|
11377 |
+
#@ gravityforms
|
11378 |
+
msgid "EAST TIMOR"
|
11379 |
+
msgstr ""
|
11380 |
+
|
11381 |
+
#: includes/fields/class-gf-field-address.php:572
|
11382 |
+
#@ gravityforms
|
11383 |
+
msgid "ECUADOR"
|
11384 |
+
msgstr ""
|
11385 |
+
|
11386 |
+
#: includes/fields/class-gf-field-address.php:573
|
11387 |
+
#@ gravityforms
|
11388 |
+
msgid "EGYPT"
|
11389 |
+
msgstr ""
|
11390 |
+
|
11391 |
+
#: includes/fields/class-gf-field-address.php:574
|
11392 |
+
#@ gravityforms
|
11393 |
+
msgid "EL SALVADOR"
|
11394 |
+
msgstr ""
|
11395 |
+
|
11396 |
+
#: includes/fields/class-gf-field-address.php:575
|
11397 |
+
#@ gravityforms
|
11398 |
+
msgid "EQUATORIAL GUINEA"
|
11399 |
+
msgstr ""
|
11400 |
+
|
11401 |
+
#: includes/fields/class-gf-field-address.php:576
|
11402 |
+
#@ gravityforms
|
11403 |
+
msgid "ERITREA"
|
11404 |
+
msgstr ""
|
11405 |
+
|
11406 |
+
#: includes/fields/class-gf-field-address.php:577
|
11407 |
+
#@ gravityforms
|
11408 |
+
msgid "ESTONIA"
|
11409 |
+
msgstr ""
|
11410 |
+
|
11411 |
+
#: includes/fields/class-gf-field-address.php:578
|
11412 |
+
#@ gravityforms
|
11413 |
+
msgid "ETHIOPIA"
|
11414 |
+
msgstr ""
|
11415 |
+
|
11416 |
+
#: includes/fields/class-gf-field-address.php:579
|
11417 |
+
#@ gravityforms
|
11418 |
+
msgid "FAROE ISLANDS"
|
11419 |
+
msgstr ""
|
11420 |
+
|
11421 |
+
#: includes/fields/class-gf-field-address.php:580
|
11422 |
+
#@ gravityforms
|
11423 |
+
msgid "FIJI"
|
11424 |
+
msgstr ""
|
11425 |
+
|
11426 |
+
#: includes/fields/class-gf-field-address.php:581
|
11427 |
+
#@ gravityforms
|
11428 |
+
msgid "FINLAND"
|
11429 |
+
msgstr "فنلاند"
|
11430 |
+
|
11431 |
+
#: includes/fields/class-gf-field-address.php:582
|
11432 |
+
#@ gravityforms
|
11433 |
+
msgid "FRANCE"
|
11434 |
+
msgstr "فرانسه"
|
11435 |
+
|
11436 |
+
#: includes/fields/class-gf-field-address.php:583
|
11437 |
+
#@ gravityforms
|
11438 |
+
msgid "GABON"
|
11439 |
+
msgstr ""
|
11440 |
+
|
11441 |
+
#: includes/fields/class-gf-field-address.php:584
|
11442 |
+
#@ gravityforms
|
11443 |
+
msgid "GAMBIA"
|
11444 |
+
msgstr ""
|
11445 |
+
|
11446 |
+
#: includes/fields/class-gf-field-address.php:585
|
11447 |
+
#@ gravityforms
|
11448 |
+
msgctxt "Country"
|
11449 |
+
msgid "GEORGIA"
|
11450 |
+
msgstr "گرجستان"
|
11451 |
+
|
11452 |
+
#: includes/fields/class-gf-field-address.php:586
|
11453 |
+
#@ gravityforms
|
11454 |
+
msgid "GERMANY"
|
11455 |
+
msgstr "آلمان"
|
11456 |
+
|
11457 |
+
#: includes/fields/class-gf-field-address.php:587
|
11458 |
+
#@ gravityforms
|
11459 |
+
msgid "GHANA"
|
11460 |
+
msgstr ""
|
11461 |
+
|
11462 |
+
#: includes/fields/class-gf-field-address.php:588
|
11463 |
+
#@ gravityforms
|
11464 |
+
msgid "GREECE"
|
11465 |
+
msgstr "یونان"
|
11466 |
+
|
11467 |
+
#: includes/fields/class-gf-field-address.php:589
|
11468 |
+
#@ gravityforms
|
11469 |
+
msgid "GREENLAND"
|
11470 |
+
msgstr ""
|
11471 |
+
|
11472 |
+
#: includes/fields/class-gf-field-address.php:590
|
11473 |
+
#@ gravityforms
|
11474 |
+
msgid "GRENADA"
|
11475 |
+
msgstr ""
|
11476 |
+
|
11477 |
+
#: includes/fields/class-gf-field-address.php:591
|
11478 |
+
#@ gravityforms
|
11479 |
+
msgid "GUAM"
|
11480 |
+
msgstr ""
|
11481 |
+
|
11482 |
+
#: includes/fields/class-gf-field-address.php:592
|
11483 |
+
#@ gravityforms
|
11484 |
+
msgid "GUATEMALA"
|
11485 |
+
msgstr ""
|
11486 |
+
|
11487 |
+
#: includes/fields/class-gf-field-address.php:593
|
11488 |
+
#@ gravityforms
|
11489 |
+
msgid "GUINEA"
|
11490 |
+
msgstr ""
|
11491 |
+
|
11492 |
+
#: includes/fields/class-gf-field-address.php:594
|
11493 |
+
#@ gravityforms
|
11494 |
+
msgid "GUINEA-BISSAU"
|
11495 |
+
msgstr ""
|
11496 |
+
|
11497 |
+
#: includes/fields/class-gf-field-address.php:595
|
11498 |
+
#@ gravityforms
|
11499 |
+
msgid "GUYANA"
|
11500 |
+
msgstr ""
|
11501 |
+
|
11502 |
+
#: includes/fields/class-gf-field-address.php:596
|
11503 |
+
#@ gravityforms
|
11504 |
+
msgid "HAITI"
|
11505 |
+
msgstr ""
|
11506 |
+
|
11507 |
+
#: includes/fields/class-gf-field-address.php:597
|
11508 |
+
#@ gravityforms
|
11509 |
+
msgid "HONDURAS"
|
11510 |
+
msgstr ""
|
11511 |
+
|
11512 |
+
#: includes/fields/class-gf-field-address.php:598
|
11513 |
+
#@ gravityforms
|
11514 |
+
msgid "HONG KONG"
|
11515 |
+
msgstr "هنگکنگ"
|
11516 |
+
|
11517 |
+
#: includes/fields/class-gf-field-address.php:599
|
11518 |
+
#@ gravityforms
|
11519 |
+
msgid "HUNGARY"
|
11520 |
+
msgstr "مجارستان"
|
11521 |
+
|
11522 |
+
#: includes/fields/class-gf-field-address.php:600
|
11523 |
+
#@ gravityforms
|
11524 |
+
msgid "ICELAND"
|
11525 |
+
msgstr ""
|
11526 |
+
|
11527 |
+
#: includes/fields/class-gf-field-address.php:601
|
11528 |
+
#@ gravityforms
|
11529 |
+
msgid "INDIA"
|
11530 |
+
msgstr ""
|
11531 |
+
|
11532 |
+
#: includes/fields/class-gf-field-address.php:602
|
11533 |
+
#@ gravityforms
|
11534 |
+
msgid "INDONESIA"
|
11535 |
+
msgstr ""
|
11536 |
+
|
11537 |
+
#: includes/fields/class-gf-field-address.php:603
|
11538 |
+
#@ gravityforms
|
11539 |
+
msgid "IRAN"
|
11540 |
+
msgstr "ایران"
|
11541 |
+
|
11542 |
+
#: includes/fields/class-gf-field-address.php:604
|
11543 |
+
#@ gravityforms
|
11544 |
+
msgid "IRAQ"
|
11545 |
+
msgstr "عراق"
|
11546 |
+
|
11547 |
+
#: includes/fields/class-gf-field-address.php:605
|
11548 |
+
#@ gravityforms
|
11549 |
+
msgid "IRELAND"
|
11550 |
+
msgstr ""
|
11551 |
+
|
11552 |
+
#: includes/fields/class-gf-field-address.php:606
|
11553 |
+
#@ gravityforms
|
11554 |
+
msgid "ISRAEL"
|
11555 |
+
msgstr ""
|
11556 |
+
|
11557 |
+
#: includes/fields/class-gf-field-address.php:607
|
11558 |
+
#@ gravityforms
|
11559 |
+
msgid "ITALY"
|
11560 |
+
msgstr "ایتالیا"
|
11561 |
+
|
11562 |
+
#: includes/fields/class-gf-field-address.php:608
|
11563 |
+
#@ gravityforms
|
11564 |
+
msgid "JAMAICA"
|
11565 |
+
msgstr ""
|
11566 |
+
|
11567 |
+
#: includes/fields/class-gf-field-address.php:609
|
11568 |
+
#@ gravityforms
|
11569 |
+
msgid "JAPAN"
|
11570 |
+
msgstr "ژاپن"
|
11571 |
+
|
11572 |
+
#: includes/fields/class-gf-field-address.php:610
|
11573 |
+
#@ gravityforms
|
11574 |
+
msgid "JORDAN"
|
11575 |
+
msgstr ""
|
11576 |
+
|
11577 |
+
#: includes/fields/class-gf-field-address.php:611
|
11578 |
+
#@ gravityforms
|
11579 |
+
msgid "KAZAKHSTAN"
|
11580 |
+
msgstr ""
|
11581 |
+
|
11582 |
+
#: includes/fields/class-gf-field-address.php:612
|
11583 |
+
#@ gravityforms
|
11584 |
+
msgid "KENYA"
|
11585 |
+
msgstr ""
|
11586 |
+
|
11587 |
+
#: includes/fields/class-gf-field-address.php:613
|
11588 |
+
#@ gravityforms
|
11589 |
+
msgid "KIRIBATI"
|
11590 |
+
msgstr ""
|
11591 |
+
|
11592 |
+
#: includes/fields/class-gf-field-address.php:614
|
11593 |
+
#@ gravityforms
|
11594 |
+
msgid "NORTH KOREA"
|
11595 |
+
msgstr ""
|
11596 |
+
|
11597 |
+
#: includes/fields/class-gf-field-address.php:615
|
11598 |
+
#@ gravityforms
|
11599 |
+
msgid "SOUTH KOREA"
|
11600 |
+
msgstr ""
|
11601 |
+
|
11602 |
+
#: includes/fields/class-gf-field-address.php:616
|
11603 |
+
#@ gravityforms
|
11604 |
+
msgid "KOSOVO"
|
11605 |
+
msgstr ""
|
11606 |
+
|
11607 |
+
#: includes/fields/class-gf-field-address.php:617
|
11608 |
+
#@ gravityforms
|
11609 |
+
msgid "KUWAIT"
|
11610 |
+
msgstr "کویت"
|
11611 |
+
|
11612 |
+
#: includes/fields/class-gf-field-address.php:618
|
11613 |
+
#@ gravityforms
|
11614 |
+
msgid "KYRGYZSTAN"
|
11615 |
+
msgstr ""
|
11616 |
+
|
11617 |
+
#: includes/fields/class-gf-field-address.php:619
|
11618 |
+
#@ gravityforms
|
11619 |
+
msgid "LAOS"
|
11620 |
+
msgstr ""
|
11621 |
+
|
11622 |
+
#: includes/fields/class-gf-field-address.php:620
|
11623 |
+
#@ gravityforms
|
11624 |
+
msgid "LATVIA"
|
11625 |
+
msgstr ""
|
11626 |
+
|
11627 |
+
#: includes/fields/class-gf-field-address.php:621
|
11628 |
+
#@ gravityforms
|
11629 |
+
msgid "LEBANON"
|
11630 |
+
msgstr "لبنان"
|
11631 |
+
|
11632 |
+
#: includes/fields/class-gf-field-address.php:622
|
11633 |
+
#@ gravityforms
|
11634 |
+
msgid "LESOTHO"
|
11635 |
+
msgstr ""
|
11636 |
+
|
11637 |
+
#: includes/fields/class-gf-field-address.php:623
|
11638 |
+
#@ gravityforms
|
11639 |
+
msgid "LIBERIA"
|
11640 |
+
msgstr ""
|
11641 |
+
|
11642 |
+
#: includes/fields/class-gf-field-address.php:624
|
11643 |
+
#@ gravityforms
|
11644 |
+
msgid "LIBYA"
|
11645 |
+
msgstr ""
|
11646 |
+
|
11647 |
+
#: includes/fields/class-gf-field-address.php:625
|
11648 |
+
#@ gravityforms
|
11649 |
+
msgid "LIECHTENSTEIN"
|
11650 |
+
msgstr ""
|
11651 |
+
|
11652 |
+
#: includes/fields/class-gf-field-address.php:626
|
11653 |
+
#@ gravityforms
|
11654 |
+
msgid "LITHUANIA"
|
11655 |
+
msgstr ""
|
11656 |
+
|
11657 |
+
#: includes/fields/class-gf-field-address.php:627
|
11658 |
+
#@ gravityforms
|
11659 |
+
msgid "LUXEMBOURG"
|
11660 |
+
msgstr ""
|
11661 |
+
|
11662 |
+
#: includes/fields/class-gf-field-address.php:628
|
11663 |
+
#@ gravityforms
|
11664 |
+
msgid "MACEDONIA"
|
11665 |
+
msgstr ""
|
11666 |
+
|
11667 |
+
#: includes/fields/class-gf-field-address.php:629
|
11668 |
+
#@ gravityforms
|
11669 |
+
msgid "MADAGASCAR"
|
11670 |
+
msgstr ""
|
11671 |
+
|
11672 |
+
#: includes/fields/class-gf-field-address.php:630
|
11673 |
+
#@ gravityforms
|
11674 |
+
msgid "MALAWI"
|
11675 |
+
msgstr ""
|
11676 |
+
|
11677 |
+
#: includes/fields/class-gf-field-address.php:631
|
11678 |
+
#@ gravityforms
|
11679 |
+
msgid "MALAYSIA"
|
11680 |
+
msgstr ""
|
11681 |
+
|
11682 |
+
#: includes/fields/class-gf-field-address.php:632
|
11683 |
+
#@ gravityforms
|
11684 |
+
msgid "MALDIVES"
|
11685 |
+
msgstr ""
|
11686 |
+
|
11687 |
+
#: includes/fields/class-gf-field-address.php:633
|
11688 |
+
#@ gravityforms
|
11689 |
+
msgid "MALI"
|
11690 |
+
msgstr ""
|
11691 |
+
|
11692 |
+
#: includes/fields/class-gf-field-address.php:634
|
11693 |
+
#@ gravityforms
|
11694 |
+
msgid "MALTA"
|
11695 |
+
msgstr ""
|
11696 |
+
|
11697 |
+
#: includes/fields/class-gf-field-address.php:635
|
11698 |
+
#@ gravityforms
|
11699 |
+
msgid "MARSHALL ISLANDS"
|
11700 |
+
msgstr ""
|
11701 |
+
|
11702 |
+
#: includes/fields/class-gf-field-address.php:636
|
11703 |
+
#@ gravityforms
|
11704 |
+
msgid "MAURITANIA"
|
11705 |
+
msgstr ""
|
11706 |
+
|
11707 |
+
#: includes/fields/class-gf-field-address.php:637
|
11708 |
+
#@ gravityforms
|
11709 |
+
msgid "MAURITIUS"
|
11710 |
+
msgstr ""
|
11711 |
+
|
11712 |
+
#: includes/fields/class-gf-field-address.php:638
|
11713 |
+
#@ gravityforms
|
11714 |
+
msgid "MEXICO"
|
11715 |
+
msgstr "مکزیک"
|
11716 |
+
|
11717 |
+
#: includes/fields/class-gf-field-address.php:639
|
11718 |
+
#@ gravityforms
|
11719 |
+
msgid "MICRONESIA"
|
11720 |
+
msgstr ""
|
11721 |
+
|
11722 |
+
#: includes/fields/class-gf-field-address.php:640
|
11723 |
+
#@ gravityforms
|
11724 |
+
msgid "MOLDOVA"
|
11725 |
+
msgstr ""
|
11726 |
+
|
11727 |
+
#: includes/fields/class-gf-field-address.php:641
|
11728 |
+
#@ gravityforms
|
11729 |
+
msgid "MONACO"
|
11730 |
+
msgstr "موناکو"
|
11731 |
+
|
11732 |
+
#: includes/fields/class-gf-field-address.php:642
|
11733 |
+
#@ gravityforms
|
11734 |
+
msgid "MONGOLIA"
|
11735 |
+
msgstr ""
|
11736 |
+
|
11737 |
+
#: includes/fields/class-gf-field-address.php:643
|
11738 |
+
#@ gravityforms
|
11739 |
+
msgid "MONTENEGRO"
|
11740 |
+
msgstr ""
|
11741 |
+
|
11742 |
+
#: includes/fields/class-gf-field-address.php:644
|
11743 |
+
#@ gravityforms
|
11744 |
+
msgid "MOROCCO"
|
11745 |
+
msgstr ""
|
11746 |
+
|
11747 |
+
#: includes/fields/class-gf-field-address.php:645
|
11748 |
+
#@ gravityforms
|
11749 |
+
msgid "MOZAMBIQUE"
|
11750 |
+
msgstr ""
|
11751 |
+
|
11752 |
+
#: includes/fields/class-gf-field-address.php:646
|
11753 |
+
#@ gravityforms
|
11754 |
+
msgid "MYANMAR"
|
11755 |
+
msgstr ""
|
11756 |
+
|
11757 |
+
#: includes/fields/class-gf-field-address.php:647
|
11758 |
+
#@ gravityforms
|
11759 |
+
msgid "NAMIBIA"
|
11760 |
+
msgstr ""
|
11761 |
+
|
11762 |
+
#: includes/fields/class-gf-field-address.php:648
|
11763 |
+
#@ gravityforms
|
11764 |
+
msgid "NAURU"
|
11765 |
+
msgstr ""
|
11766 |
+
|
11767 |
+
#: includes/fields/class-gf-field-address.php:649
|
11768 |
+
#@ gravityforms
|
11769 |
+
msgid "NEPAL"
|
11770 |
+
msgstr ""
|
11771 |
+
|
11772 |
+
#: includes/fields/class-gf-field-address.php:650
|
11773 |
+
#@ gravityforms
|
11774 |
+
msgid "NETHERLANDS"
|
11775 |
+
msgstr ""
|
11776 |
+
|
11777 |
+
#: includes/fields/class-gf-field-address.php:651
|
11778 |
+
#@ gravityforms
|
11779 |
+
msgid "NEW ZEALAND"
|
11780 |
+
msgstr ""
|
11781 |
+
|
11782 |
+
#: includes/fields/class-gf-field-address.php:652
|
11783 |
+
#@ gravityforms
|
11784 |
+
msgid "NICARAGUA"
|
11785 |
+
msgstr ""
|
11786 |
+
|
11787 |
+
#: includes/fields/class-gf-field-address.php:653
|
11788 |
+
#@ gravityforms
|
11789 |
+
msgid "NIGER"
|
11790 |
+
msgstr ""
|
11791 |
+
|
11792 |
+
#: includes/fields/class-gf-field-address.php:654
|
11793 |
+
#@ gravityforms
|
11794 |
+
msgid "NIGERIA"
|
11795 |
+
msgstr ""
|
11796 |
+
|
11797 |
+
#: includes/fields/class-gf-field-address.php:655
|
11798 |
+
#@ gravityforms
|
11799 |
+
msgid "NORTHERN MARIANA ISLANDS"
|
11800 |
+
msgstr ""
|
11801 |
+
|
11802 |
+
#: includes/fields/class-gf-field-address.php:656
|
11803 |
+
#@ gravityforms
|
11804 |
+
msgid "NORWAY"
|
11805 |
+
msgstr ""
|
11806 |
+
|
11807 |
+
#: includes/fields/class-gf-field-address.php:657
|
11808 |
+
#@ gravityforms
|
11809 |
+
msgid "OMAN"
|
11810 |
+
msgstr ""
|
11811 |
+
|
11812 |
+
#: includes/fields/class-gf-field-address.php:658
|
11813 |
+
#@ gravityforms
|
11814 |
+
msgid "PAKISTAN"
|
11815 |
+
msgstr ""
|
11816 |
+
|
11817 |
+
#: includes/fields/class-gf-field-address.php:659
|
11818 |
+
#@ gravityforms
|
11819 |
+
msgid "PALAU"
|
11820 |
+
msgstr ""
|
11821 |
+
|
11822 |
+
#: includes/fields/class-gf-field-address.php:660
|
11823 |
+
#@ gravityforms
|
11824 |
+
msgid "PALESTINE, STATE OF"
|
11825 |
+
msgstr ""
|
11826 |
+
|
11827 |
+
#: includes/fields/class-gf-field-address.php:661
|
11828 |
+
#@ gravityforms
|
11829 |
+
msgid "PANAMA"
|
11830 |
+
msgstr ""
|
11831 |
+
|
11832 |
+
#: includes/fields/class-gf-field-address.php:662
|
11833 |
+
#@ gravityforms
|
11834 |
+
msgid "PAPUA NEW GUINEA"
|
11835 |
+
msgstr ""
|
11836 |
+
|
11837 |
+
#: includes/fields/class-gf-field-address.php:663
|
11838 |
+
#@ gravityforms
|
11839 |
+
msgid "PARAGUAY"
|
11840 |
+
msgstr ""
|
11841 |
+
|
11842 |
+
#: includes/fields/class-gf-field-address.php:664
|
11843 |
+
#@ gravityforms
|
11844 |
+
msgid "PERU"
|
11845 |
+
msgstr ""
|
11846 |
+
|
11847 |
+
#: includes/fields/class-gf-field-address.php:665
|
11848 |
+
#@ gravityforms
|
11849 |
+
msgid "PHILIPPINES"
|
11850 |
+
msgstr ""
|
11851 |
+
|
11852 |
+
#: includes/fields/class-gf-field-address.php:666
|
11853 |
+
#@ gravityforms
|
11854 |
+
msgid "POLAND"
|
11855 |
+
msgstr ""
|
11856 |
+
|
11857 |
+
#: includes/fields/class-gf-field-address.php:667
|
11858 |
+
#@ gravityforms
|
11859 |
+
msgid "PORTUGAL"
|
11860 |
+
msgstr ""
|
11861 |
+
|
11862 |
+
#: includes/fields/class-gf-field-address.php:668
|
11863 |
+
#@ gravityforms
|
11864 |
+
msgid "PUERTO RICO"
|
11865 |
+
msgstr ""
|
11866 |
+
|
11867 |
+
#: includes/fields/class-gf-field-address.php:669
|
11868 |
+
#@ gravityforms
|
11869 |
+
msgid "QATAR"
|
11870 |
+
msgstr ""
|
11871 |
+
|
11872 |
+
#: includes/fields/class-gf-field-address.php:670
|
11873 |
+
#@ gravityforms
|
11874 |
+
msgid "ROMANIA"
|
11875 |
+
msgstr ""
|
11876 |
+
|
11877 |
+
#: includes/fields/class-gf-field-address.php:671
|
11878 |
+
#@ gravityforms
|
11879 |
+
msgid "RUSSIA"
|
11880 |
+
msgstr ""
|
11881 |
+
|
11882 |
+
#: includes/fields/class-gf-field-address.php:672
|
11883 |
+
#@ gravityforms
|
11884 |
+
msgid "RWANDA"
|
11885 |
+
msgstr ""
|
11886 |
+
|
11887 |
+
#: includes/fields/class-gf-field-address.php:673
|
11888 |
+
#@ gravityforms
|
11889 |
+
msgid "SAINT KITTS AND NEVIS"
|
11890 |
+
msgstr ""
|
11891 |
+
|
11892 |
+
#: includes/fields/class-gf-field-address.php:674
|
11893 |
+
#@ gravityforms
|
11894 |
+
msgid "SAINT LUCIA"
|
11895 |
+
msgstr ""
|
11896 |
+
|
11897 |
+
#: includes/fields/class-gf-field-address.php:675
|
11898 |
+
#@ gravityforms
|
11899 |
+
msgid "SAINT VINCENT AND THE GRENADINES"
|
11900 |
+
msgstr ""
|
11901 |
+
|
11902 |
+
#: includes/fields/class-gf-field-address.php:676
|
11903 |
+
#@ gravityforms
|
11904 |
+
msgid "SAMOA"
|
11905 |
+
msgstr ""
|
11906 |
+
|
11907 |
+
#: includes/fields/class-gf-field-address.php:677
|
11908 |
+
#@ gravityforms
|
11909 |
+
msgid "SAN MARINO"
|
11910 |
+
msgstr ""
|
11911 |
+
|
11912 |
+
#: includes/fields/class-gf-field-address.php:678
|
11913 |
+
#@ gravityforms
|
11914 |
+
msgid "SAO TOME AND PRINCIPE"
|
11915 |
+
msgstr ""
|
11916 |
+
|
11917 |
+
#: includes/fields/class-gf-field-address.php:679
|
11918 |
+
#@ gravityforms
|
11919 |
+
msgid "SAUDI ARABIA"
|
11920 |
+
msgstr ""
|
11921 |
+
|
11922 |
+
#: includes/fields/class-gf-field-address.php:680
|
11923 |
+
#@ gravityforms
|
11924 |
+
msgid "SENEGAL"
|
11925 |
+
msgstr ""
|
11926 |
+
|
11927 |
+
#: includes/fields/class-gf-field-address.php:681
|
11928 |
+
#@ gravityforms
|
11929 |
+
msgid "SERBIA"
|
11930 |
+
msgstr ""
|
11931 |
+
|
11932 |
+
#: includes/fields/class-gf-field-address.php:682
|
11933 |
+
#@ gravityforms
|
11934 |
+
msgid "SEYCHELLES"
|
11935 |
+
msgstr ""
|
11936 |
+
|
11937 |
+
#: includes/fields/class-gf-field-address.php:683
|
11938 |
+
#@ gravityforms
|
11939 |
+
msgid "SIERRA LEONE"
|
11940 |
+
msgstr ""
|
11941 |
+
|
11942 |
+
#: includes/fields/class-gf-field-address.php:684
|
11943 |
+
#@ gravityforms
|
11944 |
+
msgid "SINGAPORE"
|
11945 |
+
msgstr ""
|
11946 |
+
|
11947 |
+
#: includes/fields/class-gf-field-address.php:685
|
11948 |
+
#@ gravityforms
|
11949 |
+
msgid "SINT MAARTEN"
|
11950 |
+
msgstr ""
|
11951 |
+
|
11952 |
+
#: includes/fields/class-gf-field-address.php:686
|
11953 |
+
#@ gravityforms
|
11954 |
+
msgid "SLOVAKIA"
|
11955 |
+
msgstr ""
|
11956 |
+
|
11957 |
+
#: includes/fields/class-gf-field-address.php:687
|
11958 |
+
#@ gravityforms
|
11959 |
+
msgid "SLOVENIA"
|
11960 |
+
msgstr ""
|
11961 |
+
|
11962 |
+
#: includes/fields/class-gf-field-address.php:688
|
11963 |
+
#@ gravityforms
|
11964 |
+
msgid "SOLOMON ISLANDS"
|
11965 |
+
msgstr ""
|
11966 |
+
|
11967 |
+
#: includes/fields/class-gf-field-address.php:689
|
11968 |
+
#@ gravityforms
|
11969 |
+
msgid "SOMALIA"
|
11970 |
+
msgstr ""
|
11971 |
+
|
11972 |
+
#: includes/fields/class-gf-field-address.php:690
|
11973 |
+
#@ gravityforms
|
11974 |
+
msgid "SOUTH AFRICA"
|
11975 |
+
msgstr ""
|
11976 |
+
|
11977 |
+
#: includes/fields/class-gf-field-address.php:691
|
11978 |
+
#@ gravityforms
|
11979 |
+
msgid "SPAIN"
|
11980 |
+
msgstr ""
|
11981 |
+
|
11982 |
+
#: includes/fields/class-gf-field-address.php:692
|
11983 |
+
#@ gravityforms
|
11984 |
+
msgid "SRI LANKA"
|
11985 |
+
msgstr ""
|
11986 |
+
|
11987 |
+
#: includes/fields/class-gf-field-address.php:693
|
11988 |
+
#@ gravityforms
|
11989 |
+
msgid "SUDAN"
|
11990 |
+
msgstr ""
|
11991 |
+
|
11992 |
+
#: includes/fields/class-gf-field-address.php:694
|
11993 |
+
#@ gravityforms
|
11994 |
+
msgid "SUDAN, SOUTH"
|
11995 |
+
msgstr ""
|
11996 |
+
|
11997 |
+
#: includes/fields/class-gf-field-address.php:695
|
11998 |
+
#@ gravityforms
|
11999 |
+
msgid "SURINAME"
|
12000 |
+
msgstr ""
|
12001 |
+
|
12002 |
+
#: includes/fields/class-gf-field-address.php:696
|
12003 |
+
#@ gravityforms
|
12004 |
+
msgid "SWAZILAND"
|
12005 |
+
msgstr ""
|
12006 |
+
|
12007 |
+
#: includes/fields/class-gf-field-address.php:697
|
12008 |
+
#@ gravityforms
|
12009 |
+
msgid "SWEDEN"
|
12010 |
+
msgstr ""
|
12011 |
+
|
12012 |
+
#: includes/fields/class-gf-field-address.php:698
|
12013 |
+
#@ gravityforms
|
12014 |
+
msgid "SWITZERLAND"
|
12015 |
+
msgstr ""
|
12016 |
+
|
12017 |
+
#: includes/fields/class-gf-field-address.php:699
|
12018 |
+
#@ gravityforms
|
12019 |
+
msgid "SYRIA"
|
12020 |
+
msgstr ""
|
12021 |
+
|
12022 |
+
#: includes/fields/class-gf-field-address.php:700
|
12023 |
+
#@ gravityforms
|
12024 |
+
msgid "TAIWAN"
|
12025 |
+
msgstr ""
|
12026 |
+
|
12027 |
+
#: includes/fields/class-gf-field-address.php:701
|
12028 |
+
#@ gravityforms
|
12029 |
+
msgid "TAJIKISTAN"
|
12030 |
+
msgstr ""
|
12031 |
+
|
12032 |
+
#: includes/fields/class-gf-field-address.php:702
|
12033 |
+
#@ gravityforms
|
12034 |
+
msgid "TANZANIA"
|
12035 |
+
msgstr ""
|
12036 |
+
|
12037 |
+
#: includes/fields/class-gf-field-address.php:703
|
12038 |
+
#@ gravityforms
|
12039 |
+
msgid "THAILAND"
|
12040 |
+
msgstr ""
|
12041 |
+
|
12042 |
+
#: includes/fields/class-gf-field-address.php:704
|
12043 |
+
#@ gravityforms
|
12044 |
+
msgid "TOGO"
|
12045 |
+
msgstr ""
|
12046 |
+
|
12047 |
+
#: includes/fields/class-gf-field-address.php:705
|
12048 |
+
#@ gravityforms
|
12049 |
+
msgid "TONGA"
|
12050 |
+
msgstr ""
|
12051 |
+
|
12052 |
+
#: includes/fields/class-gf-field-address.php:706
|
12053 |
+
#@ gravityforms
|
12054 |
+
msgid "TRINIDAD AND TOBAGO"
|
12055 |
+
msgstr ""
|
12056 |
+
|
12057 |
+
#: includes/fields/class-gf-field-address.php:707
|
12058 |
+
#@ gravityforms
|
12059 |
+
msgid "TUNISIA"
|
12060 |
+
msgstr ""
|
12061 |
+
|
12062 |
+
#: includes/fields/class-gf-field-address.php:708
|
12063 |
+
#@ gravityforms
|
12064 |
+
msgid "TURKEY"
|
12065 |
+
msgstr ""
|
12066 |
+
|
12067 |
+
#: includes/fields/class-gf-field-address.php:709
|
12068 |
+
#@ gravityforms
|
12069 |
+
msgid "TURKMENISTAN"
|
12070 |
+
msgstr ""
|
12071 |
+
|
12072 |
+
#: includes/fields/class-gf-field-address.php:710
|
12073 |
+
#@ gravityforms
|
12074 |
+
msgid "TUVALU"
|
12075 |
+
msgstr ""
|
12076 |
+
|
12077 |
+
#: includes/fields/class-gf-field-address.php:711
|
12078 |
+
#@ gravityforms
|
12079 |
+
msgid "UGANDA"
|
12080 |
+
msgstr ""
|
12081 |
+
|
12082 |
+
#: includes/fields/class-gf-field-address.php:712
|
12083 |
+
#@ gravityforms
|
12084 |
+
msgid "UKRAINE"
|
12085 |
+
msgstr ""
|
12086 |
+
|
12087 |
+
#: includes/fields/class-gf-field-address.php:713
|
12088 |
+
#@ gravityforms
|
12089 |
+
msgid "UNITED ARAB EMIRATES"
|
12090 |
+
msgstr ""
|
12091 |
+
|
12092 |
+
#: includes/fields/class-gf-field-address.php:714
|
12093 |
+
#@ gravityforms
|
12094 |
+
msgid "UNITED KINGDOM"
|
12095 |
+
msgstr ""
|
12096 |
+
|
12097 |
+
#: includes/fields/class-gf-field-address.php:715
|
12098 |
+
#@ gravityforms
|
12099 |
+
msgid "UNITED STATES"
|
12100 |
+
msgstr ""
|
12101 |
+
|
12102 |
+
#: includes/fields/class-gf-field-address.php:716
|
12103 |
+
#@ gravityforms
|
12104 |
+
msgid "URUGUAY"
|
12105 |
+
msgstr ""
|
12106 |
+
|
12107 |
+
#: includes/fields/class-gf-field-address.php:717
|
12108 |
+
#@ gravityforms
|
12109 |
+
msgid "UZBEKISTAN"
|
12110 |
+
msgstr ""
|
12111 |
+
|
12112 |
+
#: includes/fields/class-gf-field-address.php:718
|
12113 |
+
#@ gravityforms
|
12114 |
+
msgid "VANUATU"
|
12115 |
+
msgstr ""
|
12116 |
+
|
12117 |
+
#: includes/fields/class-gf-field-address.php:719
|
12118 |
+
#@ gravityforms
|
12119 |
+
msgid "VATICAN CITY"
|
12120 |
+
msgstr ""
|
12121 |
+
|
12122 |
+
#: includes/fields/class-gf-field-address.php:720
|
12123 |
+
#@ gravityforms
|
12124 |
+
msgid "VENEZUELA"
|
12125 |
+
msgstr ""
|
12126 |
+
|
12127 |
+
#: includes/fields/class-gf-field-address.php:721
|
12128 |
+
#@ gravityforms
|
12129 |
+
msgid "VIRGIN ISLANDS, BRITISH"
|
12130 |
+
msgstr ""
|
12131 |
+
|
12132 |
+
#: includes/fields/class-gf-field-address.php:722
|
12133 |
+
#@ gravityforms
|
12134 |
+
msgid "VIRGIN ISLANDS, U.S."
|
12135 |
+
msgstr ""
|
12136 |
+
|
12137 |
+
#: includes/fields/class-gf-field-address.php:723
|
12138 |
+
#@ gravityforms
|
12139 |
+
msgid "VIETNAM"
|
12140 |
+
msgstr ""
|
12141 |
+
|
12142 |
+
#: includes/fields/class-gf-field-address.php:724
|
12143 |
+
#@ gravityforms
|
12144 |
+
msgid "YEMEN"
|
12145 |
+
msgstr ""
|
12146 |
+
|
12147 |
+
#: includes/fields/class-gf-field-address.php:725
|
12148 |
+
#@ gravityforms
|
12149 |
+
msgid "ZAMBIA"
|
12150 |
+
msgstr ""
|
12151 |
+
|
12152 |
+
#: includes/fields/class-gf-field-address.php:726
|
12153 |
+
#@ gravityforms
|
12154 |
+
msgid "ZIMBABWE"
|
12155 |
+
msgstr ""
|
12156 |
+
|
12157 |
+
#: includes/fields/class-gf-field-address.php:735
|
12158 |
+
#: includes/fields/class-gf-field-address.php:756
|
12159 |
+
#@ gravityforms
|
12160 |
+
msgid "Alabama"
|
12161 |
+
msgstr ""
|
12162 |
+
|
12163 |
+
#: includes/fields/class-gf-field-address.php:735
|
12164 |
+
#: includes/fields/class-gf-field-address.php:757
|
12165 |
+
#@ gravityforms
|
12166 |
+
msgid "Alaska"
|
12167 |
+
msgstr ""
|
12168 |
+
|
12169 |
+
#: includes/fields/class-gf-field-address.php:735
|
12170 |
+
#: includes/fields/class-gf-field-address.php:758
|
12171 |
+
#@ gravityforms
|
12172 |
+
msgid "Arizona"
|
12173 |
+
msgstr ""
|
12174 |
+
|
12175 |
+
#: includes/fields/class-gf-field-address.php:735
|
12176 |
+
#: includes/fields/class-gf-field-address.php:759
|
12177 |
+
#@ gravityforms
|
12178 |
+
msgid "Arkansas"
|
12179 |
+
msgstr ""
|
12180 |
+
|
12181 |
+
#: includes/fields/class-gf-field-address.php:736
|
12182 |
+
#: includes/fields/class-gf-field-address.php:760
|
12183 |
+
#@ gravityforms
|
12184 |
+
msgid "California"
|
12185 |
+
msgstr ""
|
12186 |
+
|
12187 |
+
#: includes/fields/class-gf-field-address.php:736
|
12188 |
+
#: includes/fields/class-gf-field-address.php:761
|
12189 |
+
#@ gravityforms
|
12190 |
+
msgid "Colorado"
|
12191 |
+
msgstr ""
|
12192 |
+
|
12193 |
+
#: includes/fields/class-gf-field-address.php:736
|
12194 |
+
#: includes/fields/class-gf-field-address.php:762
|
12195 |
+
#@ gravityforms
|
12196 |
+
msgid "Connecticut"
|
12197 |
+
msgstr ""
|
12198 |
+
|
12199 |
+
#: includes/fields/class-gf-field-address.php:736
|
12200 |
+
#: includes/fields/class-gf-field-address.php:763
|
12201 |
+
#@ gravityforms
|
12202 |
+
msgid "Delaware"
|
12203 |
+
msgstr ""
|
12204 |
+
|
12205 |
+
#: includes/fields/class-gf-field-address.php:737
|
12206 |
+
#: includes/fields/class-gf-field-address.php:764
|
12207 |
+
#@ gravityforms
|
12208 |
+
msgid "District of Columbia"
|
12209 |
+
msgstr ""
|
12210 |
+
|
12211 |
+
#: includes/fields/class-gf-field-address.php:737
|
12212 |
+
#: includes/fields/class-gf-field-address.php:765
|
12213 |
+
#@ gravityforms
|
12214 |
+
msgid "Florida"
|
12215 |
+
msgstr ""
|
12216 |
+
|
12217 |
+
#: includes/fields/class-gf-field-address.php:737
|
12218 |
+
#: includes/fields/class-gf-field-address.php:766
|
12219 |
+
#@ gravityforms
|
12220 |
+
msgctxt "US State"
|
12221 |
+
msgid "Georgia"
|
12222 |
+
msgstr "گرجستان"
|
12223 |
+
|
12224 |
+
#: includes/fields/class-gf-field-address.php:738
|
12225 |
+
#: includes/fields/class-gf-field-address.php:767
|
12226 |
+
#@ gravityforms
|
12227 |
+
msgid "Hawaii"
|
12228 |
+
msgstr "هاوایی"
|
12229 |
+
|
12230 |
+
#: includes/fields/class-gf-field-address.php:738
|
12231 |
+
#: includes/fields/class-gf-field-address.php:768
|
12232 |
+
#@ gravityforms
|
12233 |
+
msgid "Idaho"
|
12234 |
+
msgstr ""
|
12235 |
+
|
12236 |
+
#: includes/fields/class-gf-field-address.php:738
|
12237 |
+
#: includes/fields/class-gf-field-address.php:769
|
12238 |
+
#@ gravityforms
|
12239 |
+
msgid "Illinois"
|
12240 |
+
msgstr ""
|
12241 |
+
|
12242 |
+
#: includes/fields/class-gf-field-address.php:738
|
12243 |
+
#: includes/fields/class-gf-field-address.php:770
|
12244 |
+
#@ gravityforms
|
12245 |
+
msgid "Indiana"
|
12246 |
+
msgstr ""
|
12247 |
+
|
12248 |
+
#: includes/fields/class-gf-field-address.php:739
|
12249 |
+
#: includes/fields/class-gf-field-address.php:771
|
12250 |
+
#@ gravityforms
|
12251 |
+
msgid "Iowa"
|
12252 |
+
msgstr ""
|
12253 |
+
|
12254 |
+
#: includes/fields/class-gf-field-address.php:739
|
12255 |
+
#: includes/fields/class-gf-field-address.php:772
|
12256 |
+
#@ gravityforms
|
12257 |
+
msgid "Kansas"
|
12258 |
+
msgstr ""
|
12259 |
+
|
12260 |
+
#: includes/fields/class-gf-field-address.php:739
|
12261 |
+
#: includes/fields/class-gf-field-address.php:773
|
12262 |
+
#@ gravityforms
|
12263 |
+
msgid "Kentucky"
|
12264 |
+
msgstr ""
|
12265 |
+
|
12266 |
+
#: includes/fields/class-gf-field-address.php:739
|
12267 |
+
#: includes/fields/class-gf-field-address.php:774
|
12268 |
+
#@ gravityforms
|
12269 |
+
msgid "Louisiana"
|
12270 |
+
msgstr ""
|
12271 |
+
|
12272 |
+
#: includes/fields/class-gf-field-address.php:740
|
12273 |
+
#: includes/fields/class-gf-field-address.php:775
|
12274 |
+
#@ gravityforms
|
12275 |
+
msgid "Maine"
|
12276 |
+
msgstr ""
|
12277 |
+
|
12278 |
+
#: includes/fields/class-gf-field-address.php:740
|
12279 |
+
#: includes/fields/class-gf-field-address.php:776
|
12280 |
+
#@ gravityforms
|
12281 |
+
msgid "Maryland"
|
12282 |
+
msgstr ""
|
12283 |
+
|
12284 |
+
#: includes/fields/class-gf-field-address.php:740
|
12285 |
+
#: includes/fields/class-gf-field-address.php:777
|
12286 |
+
#@ gravityforms
|
12287 |
+
msgid "Massachusetts"
|
12288 |
+
msgstr ""
|
12289 |
+
|
12290 |
+
#: includes/fields/class-gf-field-address.php:740
|
12291 |
+
#: includes/fields/class-gf-field-address.php:778
|
12292 |
+
#@ gravityforms
|
12293 |
+
msgid "Michigan"
|
12294 |
+
msgstr ""
|
12295 |
+
|
12296 |
+
#: includes/fields/class-gf-field-address.php:741
|
12297 |
+
#: includes/fields/class-gf-field-address.php:779
|
12298 |
+
#@ gravityforms
|
12299 |
+
msgid "Minnesota"
|
12300 |
+
msgstr ""
|
12301 |
+
|
12302 |
+
#: includes/fields/class-gf-field-address.php:741
|
12303 |
+
#: includes/fields/class-gf-field-address.php:780
|
12304 |
+
#@ gravityforms
|
12305 |
+
msgid "Mississippi"
|
12306 |
+
msgstr ""
|
12307 |
+
|
12308 |
+
#: includes/fields/class-gf-field-address.php:741
|
12309 |
+
#: includes/fields/class-gf-field-address.php:781
|
12310 |
+
#@ gravityforms
|
12311 |
+
msgid "Missouri"
|
12312 |
+
msgstr ""
|
12313 |
+
|
12314 |
+
#: includes/fields/class-gf-field-address.php:741
|
12315 |
+
#: includes/fields/class-gf-field-address.php:782
|
12316 |
+
#@ gravityforms
|
12317 |
+
msgid "Montana"
|
12318 |
+
msgstr ""
|
12319 |
+
|
12320 |
+
#: includes/fields/class-gf-field-address.php:742
|
12321 |
+
#: includes/fields/class-gf-field-address.php:783
|
12322 |
+
#@ gravityforms
|
12323 |
+
msgid "Nebraska"
|
12324 |
+
msgstr ""
|
12325 |
+
|
12326 |
+
#: includes/fields/class-gf-field-address.php:742
|
12327 |
+
#: includes/fields/class-gf-field-address.php:784
|
12328 |
+
#@ gravityforms
|
12329 |
+
msgid "Nevada"
|
12330 |
+
msgstr ""
|
12331 |
+
|
12332 |
+
#: includes/fields/class-gf-field-address.php:742
|
12333 |
+
#: includes/fields/class-gf-field-address.php:785
|
12334 |
+
#@ gravityforms
|
12335 |
+
msgid "New Hampshire"
|
12336 |
+
msgstr ""
|
12337 |
+
|
12338 |
+
#: includes/fields/class-gf-field-address.php:742
|
12339 |
+
#: includes/fields/class-gf-field-address.php:786
|
12340 |
+
#@ gravityforms
|
12341 |
+
msgid "New Jersey"
|
12342 |
+
msgstr ""
|
12343 |
+
|
12344 |
+
#: includes/fields/class-gf-field-address.php:743
|
12345 |
+
#: includes/fields/class-gf-field-address.php:787
|
12346 |
+
#@ gravityforms
|
12347 |
+
msgid "New Mexico"
|
12348 |
+
msgstr ""
|
12349 |
+
|
12350 |
+
#: includes/fields/class-gf-field-address.php:743
|
12351 |
+
#: includes/fields/class-gf-field-address.php:788
|
12352 |
+
#@ gravityforms
|
12353 |
+
msgid "New York"
|
12354 |
+
msgstr "نیویورک"
|
12355 |
+
|
12356 |
+
#: includes/fields/class-gf-field-address.php:743
|
12357 |
+
#: includes/fields/class-gf-field-address.php:789
|
12358 |
+
#@ gravityforms
|
12359 |
+
msgid "North Carolina"
|
12360 |
+
msgstr ""
|
12361 |
+
|
12362 |
+
#: includes/fields/class-gf-field-address.php:744
|
12363 |
+
#: includes/fields/class-gf-field-address.php:790
|
12364 |
+
#@ gravityforms
|
12365 |
+
msgid "North Dakota"
|
12366 |
+
msgstr ""
|
12367 |
+
|
12368 |
+
#: includes/fields/class-gf-field-address.php:744
|
12369 |
+
#: includes/fields/class-gf-field-address.php:791
|
12370 |
+
#@ gravityforms
|
12371 |
+
msgid "Ohio"
|
12372 |
+
msgstr ""
|
12373 |
+
|
12374 |
+
#: includes/fields/class-gf-field-address.php:744
|
12375 |
+
#: includes/fields/class-gf-field-address.php:792
|
12376 |
+
#@ gravityforms
|
12377 |
+
msgid "Oklahoma"
|
12378 |
+
msgstr ""
|
12379 |
+
|
12380 |
+
#: includes/fields/class-gf-field-address.php:744
|
12381 |
+
#: includes/fields/class-gf-field-address.php:793
|
12382 |
+
#@ gravityforms
|
12383 |
+
msgid "Oregon"
|
12384 |
+
msgstr ""
|
12385 |
+
|
12386 |
+
#: includes/fields/class-gf-field-address.php:745
|
12387 |
+
#: includes/fields/class-gf-field-address.php:794
|
12388 |
+
#@ gravityforms
|
12389 |
+
msgid "Pennsylvania"
|
12390 |
+
msgstr ""
|
12391 |
+
|
12392 |
+
#: includes/fields/class-gf-field-address.php:745
|
12393 |
+
#: includes/fields/class-gf-field-address.php:795
|
12394 |
+
#@ gravityforms
|
12395 |
+
msgid "Rhode Island"
|
12396 |
+
msgstr ""
|
12397 |
+
|
12398 |
+
#: includes/fields/class-gf-field-address.php:745
|
12399 |
+
#: includes/fields/class-gf-field-address.php:796
|
12400 |
+
#@ gravityforms
|
12401 |
+
msgid "South Carolina"
|
12402 |
+
msgstr ""
|
12403 |
+
|
12404 |
+
#: includes/fields/class-gf-field-address.php:746
|
12405 |
+
#: includes/fields/class-gf-field-address.php:797
|
12406 |
+
#@ gravityforms
|
12407 |
+
msgid "South Dakota"
|
12408 |
+
msgstr ""
|
12409 |
+
|
12410 |
+
#: includes/fields/class-gf-field-address.php:746
|
12411 |
+
#: includes/fields/class-gf-field-address.php:798
|
12412 |
+
#@ gravityforms
|
12413 |
+
msgid "Tennessee"
|
12414 |
+
msgstr ""
|
12415 |
+
|
12416 |
+
#: includes/fields/class-gf-field-address.php:746
|
12417 |
+
#: includes/fields/class-gf-field-address.php:799
|
12418 |
+
#@ gravityforms
|
12419 |
+
msgid "Texas"
|
12420 |
+
msgstr "تگزاس"
|
12421 |
+
|
12422 |
+
#: includes/fields/class-gf-field-address.php:746
|
12423 |
+
#: includes/fields/class-gf-field-address.php:800
|
12424 |
+
#@ gravityforms
|
12425 |
+
msgid "Utah"
|
12426 |
+
msgstr ""
|
12427 |
+
|
12428 |
+
#: includes/fields/class-gf-field-address.php:747
|
12429 |
+
#: includes/fields/class-gf-field-address.php:801
|
12430 |
+
#@ gravityforms
|
12431 |
+
msgid "Vermont"
|
12432 |
+
msgstr ""
|
12433 |
+
|
12434 |
+
#: includes/fields/class-gf-field-address.php:747
|
12435 |
+
#: includes/fields/class-gf-field-address.php:802
|
12436 |
+
#@ gravityforms
|
12437 |
+
msgid "Virginia"
|
12438 |
+
msgstr "ویرجینیا"
|
12439 |
+
|
12440 |
+
#: includes/fields/class-gf-field-address.php:747
|
12441 |
+
#: includes/fields/class-gf-field-address.php:803
|
12442 |
+
#@ gravityforms
|
12443 |
+
msgid "Washington"
|
12444 |
+
msgstr "واشنگتن"
|
12445 |
+
|
12446 |
+
#: includes/fields/class-gf-field-address.php:747
|
12447 |
+
#: includes/fields/class-gf-field-address.php:804
|
12448 |
+
#@ gravityforms
|
12449 |
+
msgid "West Virginia"
|
12450 |
+
msgstr "ویرجینیای غربی"
|
12451 |
+
|
12452 |
+
#: includes/fields/class-gf-field-address.php:748
|
12453 |
+
#: includes/fields/class-gf-field-address.php:805
|
12454 |
+
#@ gravityforms
|
12455 |
+
msgid "Wisconsin"
|
12456 |
+
msgstr ""
|
12457 |
+
|
12458 |
+
#: includes/fields/class-gf-field-address.php:748
|
12459 |
+
#: includes/fields/class-gf-field-address.php:806
|
12460 |
+
#@ gravityforms
|
12461 |
+
msgid "Wyoming"
|
12462 |
+
msgstr ""
|
12463 |
+
|
12464 |
+
#: includes/fields/class-gf-field-address.php:748
|
12465 |
+
#: includes/fields/class-gf-field-address.php:807
|
12466 |
+
#@ gravityforms
|
12467 |
+
msgid "Armed Forces Americas"
|
12468 |
+
msgstr ""
|
12469 |
+
|
12470 |
+
#: includes/fields/class-gf-field-address.php:749
|
12471 |
+
#: includes/fields/class-gf-field-address.php:808
|
12472 |
+
#@ gravityforms
|
12473 |
+
msgid "Armed Forces Europe"
|
12474 |
+
msgstr ""
|
12475 |
+
|
12476 |
+
#: includes/fields/class-gf-field-address.php:749
|
12477 |
+
#: includes/fields/class-gf-field-address.php:809
|
12478 |
+
#@ gravityforms
|
12479 |
+
msgid "Armed Forces Pacific"
|
12480 |
+
msgstr ""
|
12481 |
+
|
12482 |
+
#: includes/fields/class-gf-field-address.php:819
|
12483 |
+
#@ gravityforms
|
12484 |
+
msgid "Alberta"
|
12485 |
+
msgstr ""
|
12486 |
+
|
12487 |
+
#: includes/fields/class-gf-field-address.php:819
|
12488 |
+
#@ gravityforms
|
12489 |
+
msgid "British Columbia"
|
12490 |
+
msgstr ""
|
12491 |
+
|
12492 |
+
#: includes/fields/class-gf-field-address.php:819
|
12493 |
+
#@ gravityforms
|
12494 |
+
msgid "Manitoba"
|
12495 |
+
msgstr ""
|
12496 |
+
|
12497 |
+
#: includes/fields/class-gf-field-address.php:819
|
12498 |
+
#@ gravityforms
|
12499 |
+
msgid "New Brunswick"
|
12500 |
+
msgstr ""
|
12501 |
+
|
12502 |
+
#: includes/fields/class-gf-field-address.php:819
|
12503 |
+
#@ gravityforms
|
12504 |
+
msgid "Newfoundland & Labrador"
|
12505 |
+
msgstr ""
|
12506 |
+
|
12507 |
+
#: includes/fields/class-gf-field-address.php:819
|
12508 |
+
#@ gravityforms
|
12509 |
+
msgid "Northwest Territories"
|
12510 |
+
msgstr ""
|
12511 |
+
|
12512 |
+
#: includes/fields/class-gf-field-address.php:819
|
12513 |
+
#@ gravityforms
|
12514 |
+
msgid "Nova Scotia"
|
12515 |
+
msgstr ""
|
12516 |
+
|
12517 |
+
#: includes/fields/class-gf-field-address.php:819
|
12518 |
+
#@ gravityforms
|
12519 |
+
msgid "Nunavut"
|
12520 |
+
msgstr ""
|
12521 |
+
|
12522 |
+
#: includes/fields/class-gf-field-address.php:819
|
12523 |
+
#@ gravityforms
|
12524 |
+
msgid "Ontario"
|
12525 |
+
msgstr ""
|
12526 |
+
|
12527 |
+
#: includes/fields/class-gf-field-address.php:819
|
12528 |
+
#@ gravityforms
|
12529 |
+
msgid "Prince Edward Island"
|
12530 |
+
msgstr ""
|
12531 |
+
|
12532 |
+
#: includes/fields/class-gf-field-address.php:819
|
12533 |
+
#@ gravityforms
|
12534 |
+
msgid "Quebec"
|
12535 |
+
msgstr ""
|
12536 |
+
|
12537 |
+
#: includes/fields/class-gf-field-address.php:819
|
12538 |
+
#@ gravityforms
|
12539 |
+
msgid "Saskatchewan"
|
12540 |
+
msgstr ""
|
12541 |
+
|
12542 |
+
#: includes/fields/class-gf-field-address.php:819
|
12543 |
+
#@ gravityforms
|
12544 |
+
msgid "Yukon"
|
12545 |
+
msgstr ""
|
12546 |
+
|
12547 |
+
#: includes/fields/class-gf-field-captcha.php:102
|
12548 |
+
#@ gravityforms
|
12549 |
+
msgid "The reCAPTCHA was invalid. Go back and try it again."
|
12550 |
+
msgstr "reCAPTCHA نامعتبر بود. به عقب بازگشته و مجددا تلاش نمایید."
|
12551 |
+
|
12552 |
+
#: includes/fields/class-gf-field-captcha.php:181
|
12553 |
+
#@ gravityforms
|
12554 |
+
msgid "To use the reCAPTCHA field you must do the following:"
|
12555 |
+
msgstr "برای استفاده از فیلد reCAPTCHA، شما باید موارد زیر را انجام دهید:"
|
12556 |
+
|
12557 |
+
#: includes/fields/class-gf-field-captcha.php:181
|
12558 |
+
#, php-format
|
12559 |
+
#@ gravityforms
|
12560 |
+
msgid "Sign up%s for an API key pair for your site."
|
12561 |
+
msgstr "ثبتنام%s برای دریافت کلید API تطبیقیافته با سایت شما."
|
12562 |
+
|
12563 |
+
#: includes/fields/class-gf-field-captcha.php:181
|
12564 |
+
#, php-format
|
12565 |
+
#@ gravityforms
|
12566 |
+
msgid "Enter your reCAPTCHA site and secret keys in the reCAPTCHA Settings section of the %sSettings page%s"
|
12567 |
+
msgstr "کدهای site و secret مربوط به reCAPTCHA را در بخش تنظیمات آن از %sصفحه تنظیمات%s وارد نمایید."
|
12568 |
+
|
12569 |
+
#: includes/fields/class-gf-field-date.php:133
|
12570 |
+
#: js.php:885
|
12571 |
+
#@ gravityforms
|
12572 |
+
msgctxt "Abbreviation: Month"
|
12573 |
+
msgid "MM"
|
12574 |
+
msgstr "MM"
|
12575 |
+
|
12576 |
+
#: includes/fields/class-gf-field-date.php:134
|
12577 |
+
#: js.php:886
|
12578 |
+
#@ gravityforms
|
12579 |
+
msgid "DD"
|
12580 |
+
msgstr "DD"
|
12581 |
+
|
12582 |
+
#: includes/fields/class-gf-field-date.php:135
|
12583 |
+
#: js.php:887
|
12584 |
+
#@ gravityforms
|
12585 |
+
msgid "YYYY"
|
12586 |
+
msgstr "YYYY"
|
12587 |
+
|
12588 |
+
#: includes/fields/class-gf-field-list.php:167
|
12589 |
+
#@ gravityforms
|
12590 |
+
msgid "Add a new row"
|
12591 |
+
msgstr "افزودن یک ردیف جدید"
|
12592 |
+
|
12593 |
+
#: includes/fields/class-gf-field-time.php:136
|
12594 |
+
#: js.php:908
|
12595 |
+
#@ gravityforms
|
12596 |
+
msgid "HH"
|
12597 |
+
msgstr "HH"
|
12598 |
+
|
12599 |
+
#: includes/fields/class-gf-field-time.php:137
|
12600 |
+
#: js.php:909
|
12601 |
+
#@ gravityforms
|
12602 |
+
msgctxt "Abbreviation: Minutes"
|
12603 |
+
msgid "MM"
|
12604 |
+
msgstr "MM"
|
12605 |
+
|
12606 |
+
#: includes/webapi/webapi.php:217
|
12607 |
+
#@ gravityforms
|
12608 |
+
msgid "Public API Key"
|
12609 |
+
msgstr "کلید API عمومی"
|
12610 |
+
|
12611 |
+
#: includes/webapi/webapi.php:225
|
12612 |
+
#@ gravityforms
|
12613 |
+
msgid "Private API Key"
|
12614 |
+
msgstr "کلید API خصوصی"
|
12615 |
+
|
12616 |
+
#: includes/webapi/webapi.php:233
|
12617 |
+
#@ gravityforms
|
12618 |
+
msgid "QR Code"
|
12619 |
+
msgstr "بارکد QR"
|
12620 |
+
|
12621 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:102
|
12622 |
+
#@ default
|
12623 |
+
msgid "Please accept the terms."
|
12624 |
+
msgstr "لطفا قوانین را بپذیرید."
|
12625 |
+
|
12626 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:56
|
12627 |
+
#: settings.php:397
|
12628 |
+
#@ gravityforms
|
12629 |
+
msgid "Toolbar Menu"
|
12630 |
+
msgstr "منوی نوار ابزار"
|
12631 |
+
|
12632 |
+
#: includes/wizard/steps/class-gf-installation-wizard-step-settings.php:62
|
12633 |
+
#: settings.php:403
|
12634 |
+
#@ gravityforms
|
12635 |
+
msgid "Set this to ON to display the Forms menu in the WordPress top toolbar. The Forms menu will display the latest ten forms recently opened in the form editor."
|
12636 |
+
msgstr "این گزینه را بر روی ON قرار دهید تا فهرست فرم، بر روی تولبار بالای وردپرس نشان داده شود. فهرست فرمها، ۱۰ فرم اخیری که در ویرایشگر فرم باز شدهاند نشان میدهد."
|
12637 |
+
|
12638 |
+
#: js.php:443
|
12639 |
+
#@ gravityforms
|
12640 |
+
msgid "Your form currently has one or more pages without any fields in it. Blank pages are a result of Page Breaks that are positioned as the first or last field in the form or right after each other. Please adjust your Page Breaks and try again."
|
12641 |
+
msgstr "فرم شما در حال حاضر دارای یک الی دو برگه بوده که هیچ فیلد و جای خالی در آن قرار ندارد. صفحات خالی نتیجه انفصالهای بین صفحهای بوده که به عنوان اولین و یا آخرین فیلد در فرم جایگذاری شده یا اینکه بلافاصله پس از یکدیگر قرار دارند. لطفا انفصالهای بین برگه ای را کنترل نموده و مجددا تلاش نمایید."
|
12642 |
+
|
12643 |
+
#: notification.php:720
|
12644 |
+
#@ gravityforms
|
12645 |
+
msgid "Email Service"
|
12646 |
+
msgstr "سرویس ایمیل"
|
12647 |
+
|
12648 |
+
#: notification.php:987
|
12649 |
+
#@ gravityforms
|
12650 |
+
msgid "BCC"
|
12651 |
+
msgstr "بیبیسی"
|
12652 |
+
|
12653 |
+
#: notification.php:1125
|
12654 |
+
#: notification.php:1755
|
12655 |
+
#@ gravityforms
|
12656 |
+
msgid "WordPress"
|
12657 |
+
msgstr "وردپرس"
|
12658 |
+
|
12659 |
+
#: notification.php:1576
|
12660 |
+
#@ gravityforms
|
12661 |
+
msgid "Service"
|
12662 |
+
msgstr "سرویس"
|
12663 |
+
|
12664 |
+
#: notification.php:1760
|
12665 |
+
#@ gravityforms
|
12666 |
+
msgid "Undefined Service"
|
12667 |
+
msgstr "خدمات تعریفنشده"
|
12668 |
+
|
12669 |
+
#: preview.php:153
|
12670 |
+
#@ gravityforms
|
12671 |
+
msgid "display grid"
|
12672 |
+
msgstr "نمایش به صورت شبکهای"
|
12673 |
+
|
12674 |
+
#: preview.php:154
|
12675 |
+
#@ gravityforms
|
12676 |
+
msgid "show structure"
|
12677 |
+
msgstr "نشان دادن ساختار"
|
12678 |
+
|
12679 |
+
#: preview.php:161
|
12680 |
+
#@ gravityforms
|
12681 |
+
msgid "Note: This is a simple form preview. This form may display differently when added to your page based on normal inheritance from parent theme styles."
|
12682 |
+
msgstr "نکته: این یک نمایش ساده از فرم شماست. زمانیکه این فرم به برگه شما که ظاهر خود را از پوسته اصلی به ارث میبرد الصاق شود چهره متفاوتی به خود خواهد گرفت."
|
12683 |
+
|
12684 |
+
#: preview.php:161
|
12685 |
+
#@ gravityforms
|
12686 |
+
msgid "dismiss"
|
12687 |
+
msgstr "رد کردن"
|
12688 |
+
|
12689 |
+
#: settings.php:174
|
12690 |
+
#@ gravityforms
|
12691 |
+
msgid "If you continue, you will not be able to retrieve or restore your forms or entries."
|
12692 |
+
msgstr "اگر شما ادامه دهید، قادر به بازگرداندن و بازیابی فرمها و ورودیهای خود نخواهید بود."
|
12693 |
+
|
12694 |
+
#: settings.php:414
|
12695 |
+
#, php-format
|
12696 |
+
#@ gravityforms
|
12697 |
+
msgid "%sPlease note%s, these settings are required only if you decide to use the reCAPTCHA field."
|
12698 |
+
msgstr "%sلطفا توجه کنید%s, این تنظیمات فقط زمانی لازم هستند که شما میخواهید از فیلد reCAPTCHA استفاده نمایید."
|
12699 |
+
|
12700 |
+
#: settings.php:424
|
12701 |
+
#@ gravityforms
|
12702 |
+
msgid "Site Key"
|
12703 |
+
msgstr "Site Key"
|
12704 |
+
|
12705 |
+
#: settings.php:441
|
12706 |
+
#@ gravityforms
|
12707 |
+
msgid "Secret Key"
|
12708 |
+
msgstr "Secret Key"
|
12709 |
+
|
12710 |
+
#: settings.php:458
|
12711 |
+
#@ gravityforms
|
12712 |
+
msgid "Validate Keys"
|
12713 |
+
msgstr "کلیدهای معتبر"
|
12714 |
+
|
12715 |
+
#: settings.php:462
|
12716 |
+
#@ default
|
12717 |
+
msgid "Please complete the reCAPTCHA widget to validate your reCAPTCHA keys:"
|
12718 |
+
msgstr "لطفا ویدجت ریکپتچا را جهت بررسی صحبت کلید ریکپتچا کامل نمایید:"
|
12719 |
+
|
12720 |
+
#: settings.php:609
|
12721 |
+
#, php-format
|
12722 |
+
#@ gravityforms
|
12723 |
+
msgid "The Gravity Forms support agreement requires WordPress v%s or greater. This site must be upgraded in order to be eligible for support."
|
12724 |
+
msgstr "گرویتیفرم طبق توافق پشتیبانی به نسخه وردپرس v%s یا بالاتر نیازمند است. سایت شما باید آپدیت شده تا واجد شرایط برای پشتیبانی باشد."
|
12725 |
+
|
12726 |
+
#: tooltips.php:28
|
12727 |
+
#@ gravityforms
|
12728 |
+
msgid "Routing"
|
12729 |
+
msgstr "مسیریابی"
|
12730 |
+
|
12731 |
+
#: tooltips.php:40
|
12732 |
+
#@ gravityforms
|
12733 |
+
msgid "Select the default label placement. Labels can be top aligned above a field, left aligned to the left of a field, or right aligned to the right of a field. This is a global label placement setting"
|
12734 |
+
msgstr "محل پیشفرض قرارگیری برچسب را انتخاب نمایید. برچسبها میتوانند به صورت ترازشده از بالا و بالای فیلد، ترازشده از چپ و سمت چپ فیلد، یا ترازشده از راست و سمت راست فیلد قرار گیرند. این موارد، جزو تنظیمات عمومی برای قرارگیری محل برچسبها هستند"
|
12735 |
+
|
12736 |
+
#: tooltips.php:46
|
12737 |
+
#@ gravityforms
|
12738 |
+
msgid "Enter the URL of a custom image to replace the default 'add item' icon. A maximum size of 16px by 16px is recommended"
|
12739 |
+
msgstr "لینک تصویر سفارشی خود را وارد کرده تا جایگزین آیکون پیشفرض بخش 'add item' شود. حداکثر سایز توصیهشده برای آن 16 پیکسل در 16 پیکسل میباشد."
|
12740 |
+
|
12741 |
+
#: tooltips.php:47
|
12742 |
+
#@ gravityforms
|
12743 |
+
msgid "Enter the URL of a custom image to replace the default 'delete item' icon. A maximum size of 16px by 16px is recommended"
|
12744 |
+
msgstr "لینک تصویر سفارشی خود را وارد کرده تا جایگزین آیکون پیشفرض بخش 'delete item' شود. حداکثر سایز توصیهشده برای آن 16 پیکسل در 16 پیکسل میباشد."
|
12745 |
+
|
12746 |
+
#: tooltips.php:56
|
12747 |
+
#@ gravityforms
|
12748 |
+
msgid "reCAPTCHA Theme"
|
12749 |
+
msgstr "پوسته reCAPTCHA"
|
12750 |
+
|
12751 |
+
#: tooltips.php:76
|
12752 |
+
#@ gravityforms
|
12753 |
+
msgid "Select the format you would like to use for the date input."
|
12754 |
+
msgstr "فرمتی که در نظر دارید برای ورودی تاریخ استفاده شود، انتخاب نمایید."
|
12755 |
+
|
12756 |
+
#: tooltips.php:95
|
12757 |
+
#@ gravityforms
|
12758 |
+
msgid "Select a form field size from the available options. This will set the width of the field. Please note: if using a paragraph field, the size applies only to the height of the field."
|
12759 |
+
msgstr "سایز فیلد فرم را از طریق گزینههای در دسترس انتخاب نمایید. این کار، باعث تنظیم پهنای هر فیلد میشود. نکته: اگر از فیلد پاراگراف استفاده میکنید، تغییر سایز فقط بر روی ارتفاع این فیلد اثرگذار است."
|
12760 |
+
|
12761 |
+
#: tooltips.php:108
|
12762 |
+
#@ gravityforms
|
12763 |
+
msgid "reCAPTCHA Language"
|
12764 |
+
msgstr "زبان ٰreCAPTCHA"
|
12765 |
+
|
12766 |
+
#: tooltips.php:152
|
12767 |
+
#@ gravityforms
|
12768 |
+
msgid "Select a date range. Setting a range will limit the export to entries submitted during that date range. If no range is set, all entries will be exported."
|
12769 |
+
msgstr "یک بازه برای تاریخ را انتخاب کنید. انتخاب این بازه تاریخ،پردازش خروجی را در حیطه ورودیهای ارسالشده در این بازه محدود خواهد نمود. اگر بازه تاریخ توسط شما انتخاب نگردد، تمام وروردیها مورد پردازش قرار میگیرند."
|
12770 |
+
|
12771 |
+
#: tooltips.php:158
|
12772 |
+
#@ gravityforms
|
12773 |
+
msgid "reCAPTCHA Site Key"
|
12774 |
+
msgstr "Site Key مربوط به reCAPTCHA"
|
12775 |
+
|
12776 |
+
#: tooltips.php:158
|
12777 |
+
#@ gravityforms
|
12778 |
+
msgid "Enter your reCAPTCHA Site Key, if you do not have a key you can register for one at the provided link. reCAPTCHA is a free service."
|
12779 |
+
msgstr "Site Key مربوط به reCAPTCHA خود را وارد نمایید. اگر Site Key برای این منظور ندارید میتوانید از طریق لینک تعبیهشده برای آن ثبتنام نمایید. reCAPTCHA یک سرویس رایگان است."
|
12780 |
+
|
12781 |
+
#: tooltips.php:159
|
12782 |
+
#@ gravityforms
|
12783 |
+
msgid "reCAPTCHA Secret Key"
|
12784 |
+
msgstr "Secret Key مربوط به reCAPTCHA"
|
12785 |
+
|
12786 |
+
#: tooltips.php:159
|
12787 |
+
#@ gravityforms
|
12788 |
+
msgid "Enter your reCAPTCHA Secret Key, if you do not have a key you can register for one at the provided link. reCAPTCHA is a free service."
|
12789 |
+
msgstr "Secret Key مربوط به reCAPTCHA خود را وارد نمایید. اگر Secret Key برای این منظور ندارید میتوانید از طریق لینک تعبیهشده برای آن ثبتنام نمایید. reCAPTCHA یک سرویس رایگان است."
|
12790 |
+
|
12791 |
+
#: tooltips.php:167
|
12792 |
+
#@ gravityforms
|
12793 |
+
msgid "Use Rich Text Editor"
|
12794 |
+
msgstr "استفاده از ویرایشگر متن قوی"
|
12795 |
+
|
12796 |
+
#: tooltips.php:167
|
12797 |
+
#@ gravityforms
|
12798 |
+
msgid "Check this box if you would like to use the rich text editor for this field."
|
12799 |
+
msgstr "اگر علاقهمند به استفاده از یک ویرایشگر متن قوی برای فیلد مربوطه هستید این باکس را فعال نمایید."
|
12800 |
+
|
12801 |
+
#: update.php:34
|
12802 |
+
#@ gravityforms
|
12803 |
+
msgid "Gravity Forms Updates"
|
12804 |
+
msgstr "بروزرسانیهای گرویتیفرم"
|
12805 |
+
|
languages/gravityforms1.8/fa_IR.mo
DELETED
Binary file
|
languages/gravityforms1.9/fa_IR.mo
DELETED
Binary file
|
persian-gravity.php
CHANGED
@@ -1,358 +1,414 @@
|
|
1 |
<?php
|
2 |
-
if (
|
3 |
|
4 |
-
class GFParsi
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
add_action('admin_footer', array( $this, 'remove_lic'));
|
47 |
-
add_filter('update_footer', array( $this, 'admin_footer'), 11);
|
48 |
-
|
49 |
-
//#اضافه کردن وضعیت خصوصی به وضعیت پست ها
|
50 |
-
add_action('gform_post_status_options', array( $this, 'add_private_post_status'));
|
51 |
-
|
52 |
-
//# راستچین سازی اینلاین فرم
|
53 |
-
add_action('wp_footer', array($this ,'wp_footer'));
|
54 |
-
|
55 |
-
//# خبر خوان در داشبورد ادمین
|
56 |
-
add_action('wp_dashboard_setup', array( $this, 'rss_dashboard'));
|
57 |
-
|
58 |
-
//#نمایش وضعیت پرداخت ها
|
59 |
-
add_action('gform_entries_first_column', array($this ,'show_payment_status'), 10, 5);
|
60 |
-
|
61 |
-
//# فراخوانی فایل های ترجمه
|
62 |
-
add_filter('load_textdomain_mofile', array( $this, 'load_translate'), 10, 2 );
|
63 |
-
|
64 |
-
//# تبدیل فیلد های با ورودی غیر تکراری فقط برای پرداخت های موفق
|
65 |
-
add_filter('gform_is_duplicate', array( $this, 'better_noDuplicate' ), 10, 4 );
|
66 |
-
|
67 |
-
//# کد رهگیری برای همه فرم ها
|
68 |
-
add_action('gform_entry_created', array($this ,'transaction_id'), 10, 2);
|
69 |
-
add_filter($this->author.'_gf_rand_transaction_id', array($this ,'transaction_id_mask'), 10, 3);
|
70 |
-
|
71 |
-
//# واحد پولی ایران
|
72 |
-
add_filter('gform_currencies', array( $this, 'iran_currencies' ) );
|
73 |
-
|
74 |
-
//# اضافه کردن گزینه های ایران به گزینه های آماده
|
75 |
-
add_filter('gform_predefined_choices', array( $this, 'predefined_choices' ),1);
|
76 |
-
|
77 |
-
//#جداسازی استایل های فارسی ساز از حالت بدون تداخل
|
78 |
-
add_filter('gform_noconflict_styles', array( $this, 'noconflict_styles'));
|
79 |
-
add_filter('gform_noconflict_scripts', array( $this, 'noconflict_scripts'));
|
80 |
-
|
81 |
-
//راستچین سازی استایل پرینت
|
82 |
-
add_filter('gform_print_styles', array( $this, 'print_rtl'), 10, 2);
|
83 |
|
84 |
-
|
85 |
-
|
|
|
86 |
|
87 |
-
|
88 |
-
add_action('gform_admin_pre_render', array( $this, 'merge_tags_admin'));
|
89 |
-
add_filter('gform_replace_merge_tags', array( $this, 'replace_merge_tags'), 999, 7);
|
90 |
-
// add_filter('gform_pre_replace_merge_tags', array( $this, 'pre_replace_merge_tags'), 999, 7);
|
91 |
|
92 |
-
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
$class = 'notice notice-error';
|
96 |
-
$message = sprintf(
|
97 |
-
printf(
|
98 |
}
|
99 |
-
|
100 |
-
public function language() {
|
101 |
-
|
102 |
-
if ( $this->language == null ) {
|
103 |
-
$this->language = get_locale();
|
104 |
-
}
|
105 |
-
|
106 |
-
$wplang = defined('WPLANG') ? get_option( 'WPLANG', WPLANG ) : '';
|
107 |
-
$this->is_persian = ( substr($this->language, 0 , 2) == 'fa' ) || ( !empty($wplang) && substr($wplang, 0 , 2) == 'fa' );
|
108 |
-
|
109 |
-
if ( defined( 'ICL_LANGUAGE_CODE' ) ) {
|
110 |
-
$this->is_persian = substr(ICL_LANGUAGE_CODE, 0 , 2) == 'fa';
|
111 |
-
}
|
112 |
-
}
|
113 |
-
|
114 |
-
|
115 |
-
public function include_files() {
|
116 |
-
|
117 |
-
$files = $this->files;
|
118 |
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
}
|
123 |
-
|
124 |
-
public function is_gravity_page() {
|
125 |
-
|
126 |
-
if ( !class_exists('RGForms') )
|
127 |
-
return false;
|
128 |
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
$
|
136 |
-
return $text;
|
137 |
-
}
|
138 |
-
|
139 |
-
public function remove_lic(){
|
140 |
-
|
141 |
-
if ( get_option( 'gform_pending_installation' ) ) {
|
142 |
-
|
143 |
-
update_option( 'gform_pending_installation', false );
|
144 |
-
$current_version = get_option( 'rg_form_version' );
|
145 |
-
|
146 |
-
if ( $current_version === false ) {
|
147 |
-
if( class_exists('GFCommon') )
|
148 |
-
update_option( 'rg_form_version', GFCommon::$version );
|
149 |
-
else
|
150 |
-
update_option( 'rg_form_version', '1.9.0' );
|
151 |
-
}
|
152 |
-
|
153 |
-
}
|
154 |
|
155 |
-
|
156 |
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
margin-right: -30px !important;
|
161 |
-
}
|
162 |
-
</style>
|
163 |
-
<?php } ?>
|
164 |
-
<script type="text/javascript">
|
165 |
-
jQuery(document).ready(function(){
|
166 |
-
jQuery('img').each( function() {
|
167 |
-
var title = jQuery(this).prop('title');
|
168 |
-
var alt = jQuery(this).prop('alt');
|
169 |
-
if ( typeof title !== 'undefined' && 0 != title.length && ( title == 'Unlicensed Copy' || title == 'Unlicensed Copy. Please purchase a Gravity Forms license' )
|
170 |
-
|| typeof alt !== 'undefined' && 0 != alt.length && ( alt == 'Unlicensed Copy' || alt == 'Unlicensed Copy. Please purchase a Gravity Forms license' ) ) {
|
171 |
-
jQuery(this).hide();
|
172 |
-
}
|
173 |
-
});
|
174 |
-
});
|
175 |
-
</script>
|
176 |
-
<?php
|
177 |
-
}
|
178 |
}
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
public function rss_widget() {
|
200 |
-
|
201 |
-
$rss = fetch_feed( $this->feed );
|
202 |
-
|
203 |
-
if ( is_wp_error($rss) ) {
|
204 |
-
if ( is_admin() )
|
205 |
-
printf(__('<strong>RSS Error</strong>', 'GF_FA'));
|
206 |
-
return;
|
207 |
-
}
|
208 |
-
|
209 |
-
if ( ! $rss->get_item_quantity() ) {
|
210 |
-
printf(__( 'Apparently, There are no updates to show!', 'GF_FA' ));
|
211 |
-
$rss->__destruct();
|
212 |
-
unset($rss);
|
213 |
-
return;
|
214 |
-
}
|
215 |
-
|
216 |
-
$items = 5;
|
217 |
-
$i=1;
|
218 |
-
|
219 |
-
echo '<div class="rss-widget"><ul>';
|
220 |
-
foreach ( (array) $rss->get_items(0, $items) as $item ) {
|
221 |
-
$link = esc_url( strip_tags( $item->get_link() ) );
|
222 |
-
$title = esc_html( $item->get_title() );
|
223 |
-
$content = $item->get_content();
|
224 |
-
$content = wp_html_excerpt($content, 250) . ' ...';
|
225 |
-
echo '<li>';
|
226 |
-
if ($i==1)
|
227 |
-
echo "<a class='rsswidget a1' target='_blank' href='$link'>$title</a><div class='rssSummary'>$content</div><hr/>";
|
228 |
-
else
|
229 |
-
echo "<a class='rsswidget a2' target='_blank' href='$link'>$title</a>";
|
230 |
-
echo '</li>';
|
231 |
-
$i++;
|
232 |
-
}
|
233 |
-
echo '</ul></div>';
|
234 |
-
|
235 |
-
$rss->__destruct();
|
236 |
-
unset($rss);
|
237 |
-
}
|
238 |
-
|
239 |
-
|
240 |
-
public function load_translate( $mo_file, $domain ) {
|
241 |
-
|
242 |
-
if ( strpos( $mo_file, 'fa_IR.mo' ) !== false ) {
|
243 |
-
|
244 |
-
$domains = array(
|
245 |
-
'gravityformscoupons' => array(
|
246 |
-
'languages/gravityformscoupons-fa_IR.mo' => 'gravityformscoupons/fa_IR.mo'
|
247 |
-
),
|
248 |
-
'gravityformsmailchimp' => array(
|
249 |
-
'languages/gravityformsmailchimp-fa_IR.mo' => 'gravityformsmailchimp/fa_IR.mo'
|
250 |
-
),
|
251 |
-
'gravityformspolls' => array(
|
252 |
-
'languages/gravityformspolls-fa_IR.mo' => 'gravityformspolls/fa_IR.mo'
|
253 |
-
),
|
254 |
-
'gravityformsquiz' => array(
|
255 |
-
'languages/gravityformsquiz-fa_IR.mo' => 'gravityformsquiz/fa_IR.mo'
|
256 |
-
),
|
257 |
-
'gravityformssignature' => array(
|
258 |
-
'languages/gravityformssignature-fa_IR.mo' => 'gravityformssignature/fa_IR.mo'
|
259 |
-
),
|
260 |
-
'gravityformssurvey' => array(
|
261 |
-
'languages/gravityformssurvey-fa_IR.mo' => 'gravityformssurvey/fa_IR.mo'
|
262 |
-
),
|
263 |
-
'gravityformsuserregistration' => array(
|
264 |
-
'languages/gravityformsuserregistration-fa_IR.mo' => 'gravityformsuserregistration/fa_IR.mo'
|
265 |
-
),
|
266 |
-
'gravityformsauthorizenet' => array(
|
267 |
-
'languages/gravityformsauthorizenet-fa_IR.mo' => 'gravityformsauthorizenet/fa_IR.mo'
|
268 |
-
),
|
269 |
-
'gravityformsaweber' => array(
|
270 |
-
'languages/gravityformsaweber-fa_IR.mo' => 'gravityformsaweber/fa_IR.mo'
|
271 |
-
),
|
272 |
-
'gravityformscampaignmonitor' => array(
|
273 |
-
'languages/gravityformscampaignmonitor-fa_IR.mo' => 'gravityformscampaignmonitor/fa_IR.mo'
|
274 |
-
),
|
275 |
-
'gravityformsfreshbooks' => array(
|
276 |
-
'languages/gravityformsfreshbooks-fa_IR.mo' => 'gravityformsfreshbooks/fa_IR.mo'
|
277 |
-
),
|
278 |
-
'gravityformspaypal' => array(
|
279 |
-
'languages/gravityformspaypal-fa_IR.mo' => 'gravityformspaypal/fa_IR.mo'
|
280 |
-
),
|
281 |
-
'gravityformspaypalpro' => array(
|
282 |
-
'languages/gravityformspaypalpro-fa_IR.mo' => 'gravityformspaypalpro/fa_IR.mo'
|
283 |
-
),
|
284 |
-
'gravityformspaypalpaymentspro' => array(
|
285 |
-
'languages/gravityformspaypalpaymentspro-fa_IR.mo' => 'gravityformspaypalpaymentspro/fa_IR.mo'
|
286 |
-
),
|
287 |
-
'gravityformstwilio' => array(
|
288 |
-
'languages/gravityformstwilio-fa_IR.mo' => 'gravityformstwilio/fa_IR.mo'
|
289 |
-
),
|
290 |
-
'gravityformsstripe' => array(
|
291 |
-
'languages/gravityformsstripe-fa_IR.mo' => 'gravityformsstripe/fa_IR.mo'
|
292 |
-
),
|
293 |
-
'gravityformszapier' => array(
|
294 |
-
'languages/gravityformszapier-fa_IR.mo' => 'gravityformszapier/fa_IR.mo'
|
295 |
-
),
|
296 |
-
'sticky-list' => array(
|
297 |
-
'languages/sticky-list-fa_IR.mo' => 'gravityformsstickylist/fa_IR.mo'
|
298 |
-
),
|
299 |
-
'gf-limit' => array(
|
300 |
-
'gf-limit-fa_IR.mo' => 'gravityformsquantitylimits/fa_IR.mo'
|
301 |
-
),
|
302 |
-
'gf-limit' => array(
|
303 |
-
'languages/gf-limit-fa_IR.mo' => 'gravityformsquantitylimits/fa_IR.mo'
|
304 |
-
)
|
305 |
-
);
|
306 |
-
|
307 |
-
if ( $this->is_gravityforms_new() ) {
|
308 |
-
$_domain = array(
|
309 |
-
'gravityforms' => array(
|
310 |
-
'languages/gravityforms-fa_IR.mo' => 'gravityforms1.9/fa_IR.mo'
|
311 |
-
)
|
312 |
-
);
|
313 |
-
}
|
314 |
-
else {
|
315 |
-
$_domain = array(
|
316 |
-
'gravityforms' => array(
|
317 |
-
'languages/gravityforms-fa_IR.mo' => 'gravityforms1.8/fa_IR.mo'
|
318 |
-
)
|
319 |
-
);
|
320 |
-
}
|
321 |
-
|
322 |
-
$domains = array_merge($domains, $_domain);
|
323 |
-
|
324 |
-
if ( isset( $domains[$domain] ) && is_array($domains[$domain]) ) {
|
325 |
-
|
326 |
-
foreach ( $domains[$domain] as $path => $file ) {
|
327 |
-
|
328 |
-
if ( substr( $mo_file, -strlen( $path ) ) == $path ) {
|
329 |
-
$new_file = dirname( $this->file ) . '/languages/' . $file;
|
330 |
-
if ( is_readable( $new_file ) )
|
331 |
-
$mo_file = $new_file;
|
332 |
-
|
333 |
-
}
|
334 |
-
}
|
335 |
-
}
|
336 |
-
}
|
337 |
-
|
338 |
-
return $mo_file;
|
339 |
-
}
|
340 |
-
|
341 |
-
private function is_gravityforms_new(){
|
342 |
-
return class_exists('GFCommon') && version_compare(GFCommon::$version, '1.9.0', ">=");
|
343 |
}
|
344 |
-
|
345 |
-
|
346 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
global $wpdb;
|
349 |
|
350 |
$lead_detail_table_name = GFFormsModel::get_lead_details_table_name();
|
351 |
$lead_table_name = GFFormsModel::get_lead_table_name();
|
352 |
-
$lead_detail_long = GFFormsModel::get_lead_details_long_table_name();
|
353 |
-
$is_long = ! is_array( $value ) && strlen( $value ) > GFORMS_MAX_FIELD_LENGTH - 10;
|
354 |
-
|
355 |
-
$sql_comparison = $is_long ? '( ld.value = %s OR ldl.value = %s )' : 'ld.value = %s';
|
356 |
|
357 |
switch ( GFFormsModel::get_input_type( $field ) ) {
|
358 |
case 'time':
|
@@ -377,25 +433,22 @@ class GFParsi {
|
|
377 |
FROM {$lead_detail_table_name} ld
|
378 |
INNER JOIN {$lead_table_name} l ON l.id = ld.lead_id\n";
|
379 |
|
380 |
-
if ( $is_long ) {
|
381 |
-
$inner_sql_template .= "INNER JOIN {$lead_detail_long} ldl ON ldl.lead_detail_id = ld.id\n";
|
382 |
-
}
|
383 |
|
384 |
$inner_sql_template .= "WHERE l.form_id=%d AND ld.form_id=%d
|
385 |
AND ld.field_number between %s AND %s
|
386 |
AND status='active'
|
387 |
-
AND ( LOWER(payment_status)='paid' OR LOWER(payment_status)='active'
|
388 |
-
OR LOWER(payment_status)='actived' OR LOWER(payment_status)='complete'
|
389 |
-
OR LOWER(payment_status)='completed' OR LOWER(payment_status)='complleted'
|
390 |
-
OR LOWER(payment_status)='approve' OR LOWER(payment_status)='approved'
|
391 |
OR LOWER(payment_status)='' OR payment_status='null' OR payment_status='NULL'
|
392 |
OR LOWER(payment_status)=NULL OR payment_status=null OR payment_status IS NULL )
|
393 |
-
AND
|
394 |
-
|
395 |
$sql = "SELECT count(distinct input) as match_count FROM ( ";
|
396 |
|
397 |
$input_count = 1;
|
398 |
-
if (
|
399 |
$input_count = sizeof( $field->inputs );
|
400 |
foreach ( $field->inputs as $input ) {
|
401 |
$union = empty( $inner_sql ) ? '' : ' UNION ALL ';
|
@@ -409,402 +462,541 @@ class GFParsi {
|
|
409 |
) as count
|
410 |
GROUP BY lead_id
|
411 |
ORDER BY match_count DESC";
|
412 |
-
|
413 |
-
$count = gf_apply_filters( 'gform_is_duplicate_better', $form_id, $wpdb->get_var( $sql ), $form_id, $field, $value );
|
414 |
-
|
415 |
-
return $count != null && $count >= $input_count;
|
416 |
-
}
|
417 |
-
|
418 |
-
public function add_private_post_status($post_status_options) {
|
419 |
-
$post_status_options['private'] = __("Private", "GF_FA");
|
420 |
-
return $post_status_options;
|
421 |
-
}
|
422 |
-
|
423 |
-
public function iran_currencies($currencies) {
|
424 |
-
|
425 |
-
if ( empty($currencies['IRR']) ) {
|
426 |
-
$currencies['IRR'] = array(
|
427 |
-
'name' => esc_html__('Iranian Rial', 'GF_FA'),
|
428 |
-
'symbol_left' => ( ! is_rtl() ? esc_html__('Rial', 'GF_FA') : ''),
|
429 |
-
'symbol_right' => (is_rtl() ? esc_html__('Rial', 'GF_FA') : ''),
|
430 |
-
'symbol_padding' => ' ',
|
431 |
-
'thousand_separator' => ',',
|
432 |
-
'decimal_separator' => '.',
|
433 |
-
'decimals' => 0
|
434 |
-
);
|
435 |
-
}
|
436 |
-
|
437 |
-
if ( empty($currencies['IRT']) ) {
|
438 |
-
$currencies['IRT'] = array(
|
439 |
-
'name' => esc_html__('Iranian Toman', 'GF_FA'),
|
440 |
-
'symbol_left' => (! is_rtl() ? esc_html__('Toman', 'GF_FA') : ''),
|
441 |
-
'symbol_right' => (is_rtl() ? esc_html__('Toman', 'GF_FA') : ''),
|
442 |
-
'symbol_padding' => ' ',
|
443 |
-
'thousand_separator' => ',',
|
444 |
-
'decimal_separator' => '.',
|
445 |
-
'decimals' => 0
|
446 |
-
);
|
447 |
-
}
|
448 |
-
|
449 |
-
return $currencies;
|
450 |
-
}
|
451 |
-
|
452 |
-
public function predefined_choices($choices){
|
453 |
-
|
454 |
-
$month[__( 'Iranian Months', 'GF_FA' )] = array(
|
455 |
-
__( 'Farvardin', 'GF_FA' ),
|
456 |
-
__( 'Ordibehesht', 'GF_FA' ),
|
457 |
-
__( 'Khordad', 'GF_FA' ),
|
458 |
-
__( 'Tir', 'GF_FA' ),
|
459 |
-
__( 'Mordad', 'GF_FA' ),
|
460 |
-
__( 'Shahrivar', 'GF_FA' ),
|
461 |
-
__( 'Mehr', 'GF_FA' ),
|
462 |
-
__( 'Aban', 'GF_FA' ),
|
463 |
-
__( 'Azar', 'GF_FA' ),
|
464 |
-
__( 'Dey', 'GF_FA' ),
|
465 |
-
__( 'Bahman', 'GF_FA' ),
|
466 |
-
__( 'Esfand', 'GF_FA' )
|
467 |
-
);
|
468 |
-
|
469 |
-
return $choices = array_merge( $month, $choices);
|
470 |
-
}
|
471 |
-
|
472 |
-
public function merge_tags_admin($form){
|
473 |
-
|
474 |
-
$merge_tags = array(
|
475 |
-
'{payment_gateway}' => __('Simple Payment Gateway' ,'GF_FA'),
|
476 |
-
'{payment_status}' => __('Simple Payment Status' ,'GF_FA'),
|
477 |
-
'{transaction_id}' => __('Simple Transaction ID' ,'GF_FA'),
|
478 |
-
'{payment_gateway_css}' => __('Styled Payment Gateway' ,'GF_FA'),
|
479 |
-
'{payment_status_css}' => __('Styled Payment Status' ,'GF_FA'),
|
480 |
-
'{transaction_id_css}' => __('Styled Transaction ID' ,'GF_FA'),
|
481 |
-
'{payment_pack}' => __('Styled Payment Pack' ,'GF_FA'),
|
482 |
-
'{rtl_start}' => __('Start of RTL Div' ,'GF_FA'),
|
483 |
-
'{rtl_end}' => __('End of RTL Div' ,'GF_FA'),
|
484 |
-
);
|
485 |
-
?>
|
486 |
-
<script type="text/javascript">
|
487 |
-
gform.addFilter("gform_merge_tags", "add_merge_tags");
|
488 |
-
function add_merge_tags(mergeTags, elementId, hideAllFields, excludeFieldTypes, isPrepop, option){
|
489 |
-
<?php foreach ( (array) $merge_tags as $key => $val ) { ?>
|
490 |
-
mergeTags["custom"].tags.push({ tag: '<?php echo $key ?>', label: '<?php echo $val ?>' });
|
491 |
-
<?php } ?>
|
492 |
-
return mergeTags;
|
493 |
-
}
|
494 |
-
</script>
|
495 |
-
<?php
|
496 |
-
return $form;
|
497 |
-
}
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
public function pre_replace_merge_tags( $text, $form, $entry, $url_encode, $esc_html, $nl2br, $format ) {
|
502 |
-
|
503 |
-
preg_match_all( "/{all_fields(:(.*?))?}/", $text, $matches, PREG_SET_ORDER );
|
504 |
-
if ( is_array($matches) && !empty($matches) ) {
|
505 |
-
|
506 |
-
foreach ( $matches as $match ) {
|
507 |
|
508 |
-
|
509 |
-
|
510 |
-
if ( in_array( 'transaction', $options ) && isset($match[0]) && ( strpos( $text, $match[0] ) !== false ) ) {
|
511 |
-
$text = str_replace( $match[0] , $match[0] . '{payment_pack}' , $text );
|
512 |
-
}
|
513 |
-
}
|
514 |
-
}
|
515 |
|
516 |
-
return $
|
517 |
}
|
518 |
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
<tr bgcolor="' . $label_color . '">
|
557 |
<td colspan="2" style="padding:5px !important">
|
558 |
-
<font style="font-family: sans-serif; font-size:12px;"><strong>' . __(
|
559 |
</td>
|
560 |
</tr>
|
561 |
<tr bgcolor="#FFFFFF">
|
562 |
<td width="20"> </td>
|
563 |
<td style="padding:5px !important">
|
564 |
-
<font style="font-family:sans-serif;font-size:12px">'. $gateway . ' </font>
|
565 |
</td>
|
566 |
</tr>' : '';
|
567 |
-
|
568 |
-
|
569 |
<tr bgcolor="' . $label_color . '">
|
570 |
<td colspan="2" style="padding:5px !important">
|
571 |
-
<font style="font-family: sans-serif; font-size:12px;"><strong>' . __(
|
572 |
</td>
|
573 |
</tr>
|
574 |
<tr bgcolor="#FFFFFF">
|
575 |
<td width="20"> </td>
|
576 |
<td style="padding:5px !important">
|
577 |
-
<font style="font-family:sans-serif;font-size:12px">'. $transaction_id . ' </font>
|
578 |
</td>
|
579 |
</tr>' : '';
|
580 |
-
|
581 |
-
|
582 |
<tr bgcolor="' . $label_color . '">
|
583 |
<td colspan="2" style="padding:5px !important">
|
584 |
-
<font style="font-family: sans-serif; font-size:12px;"><strong>' . __(
|
585 |
</td>
|
586 |
</tr>
|
587 |
<tr bgcolor="#FFFFFF">
|
588 |
<td width="20"> </td>
|
589 |
<td style="padding:5px !important">
|
590 |
-
<font style="font-family:sans-serif;font-size:12px;'. $color .'">'. $payment_status . ' </font>
|
591 |
</td>
|
592 |
</tr>' : '';
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
GFAPI::update_entry_property($entry['id'], "transaction_id", $transaction_id);
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
|
|
|
|
|
|
|
|
764 |
}
|
765 |
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
}
|
772 |
}
|
773 |
|
774 |
-
public
|
775 |
-
|
776 |
}
|
777 |
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
791 |
$today = date('Y-m-d H:i:s');
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
|
|
|
|
|
|
|
|
|
|
808 |
}
|
809 |
|
810 |
global $gf_parsi;
|
1 |
<?php
|
2 |
+
if (!defined('ABSPATH')) exit;
|
3 |
|
4 |
+
class GFParsi
|
5 |
+
{
|
6 |
+
|
7 |
+
public $author = 'HANNANStd';
|
8 |
+
|
9 |
+
public $version = GF_PARSI_VERSION;
|
10 |
+
|
11 |
+
protected $file = __FILE__;
|
12 |
+
|
13 |
+
protected $language;
|
14 |
+
|
15 |
+
protected $is_persian;
|
16 |
+
|
17 |
+
private $feed = 'http://gravityforms.ir/feed/';
|
18 |
+
|
19 |
+
private $files = array(
|
20 |
+
'live-preview',
|
21 |
+
'news-letter',
|
22 |
+
'post-content-merge-tags',
|
23 |
+
'pre-submission',
|
24 |
+
'snippets',
|
25 |
+
'subtotal-calc',
|
26 |
+
'wpp-gravity-forms',
|
27 |
+
'iran-cities',
|
28 |
+
'multipage-navigation',
|
29 |
+
'melli-code',
|
30 |
+
'jalali-date',
|
31 |
+
);
|
32 |
+
|
33 |
+
public function __construct()
|
34 |
+
{
|
35 |
+
|
36 |
+
if (!class_exists('GFCommon')) {
|
37 |
+
add_action('admin_notices', array($this, 'GFCommon_admin_notice'));
|
38 |
+
return;
|
39 |
+
}
|
40 |
+
|
41 |
+
if (!get_option('persian_gf_notice_v1')) {
|
42 |
+
add_action('admin_notices', array($this, 'update_admin_notice'));
|
43 |
+
add_action('wp_ajax_nopriv_gf_dismiss_admin_notice', array($this, 'gf_dismiss_admin_notice'));
|
44 |
+
add_action('wp_ajax_gf_dismiss_admin_notice', array($this, 'gf_dismiss_admin_notice'));
|
45 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
$this->language();
|
48 |
+
|
49 |
+
$this->include_files();
|
50 |
|
51 |
+
//$this->check_gateway();
|
|
|
|
|
|
|
52 |
|
53 |
+
//# ;)
|
54 |
+
add_action('admin_head', array($this, 'remove_lic'), 9999);
|
55 |
+
add_filter('update_footer', array($this, 'admin_footer'), 11);
|
56 |
+
|
57 |
+
//#اضافه کردن وضعیت خصوصی به وضعیت پست ها
|
58 |
+
add_action('gform_post_status_options', array($this, 'add_private_post_status'));
|
59 |
+
|
60 |
+
//# راستچین سازی اینلاین فرم
|
61 |
+
add_action('wp_footer', array($this, 'wp_footer'));
|
62 |
+
|
63 |
+
//# خبر خوان در داشبورد ادمین
|
64 |
+
add_action('wp_dashboard_setup', array($this, 'rss_dashboard'), 1);
|
65 |
+
|
66 |
+
//#نمایش وضعیت پرداخت ها
|
67 |
+
add_action('gform_entries_first_column', array($this, 'show_payment_status'), 10, 5);
|
68 |
+
|
69 |
+
//# فراخوانی فایل های ترجمه
|
70 |
+
add_filter('load_textdomain_mofile', array($this, 'load_translate'), 10, 2);
|
71 |
+
|
72 |
+
//# تبدیل فیلد های با ورودی غیر تکراری فقط برای پرداخت های موفق
|
73 |
+
if ( version_compare( GFCommon::$version, '1.9.19' , '>' ) )
|
74 |
+
add_filter('gform_is_duplicate', array($this, 'better_noDuplicate'), 10, 4);
|
75 |
+
else
|
76 |
+
add_filter('gform_is_duplicate', array($this, 'better_noDuplicate_old'), 10, 4);
|
77 |
+
|
78 |
+
//# کد رهگیری برای همه فرم ها
|
79 |
+
add_action('gform_entry_created', array($this, 'transaction_id'), 10, 2);
|
80 |
+
add_filter($this->author . '_gf_rand_transaction_id', array($this, 'transaction_id_mask'), 10, 3);
|
81 |
+
|
82 |
+
//# واحد پولی ایران
|
83 |
+
add_filter('gform_currencies', array($this, 'iran_currencies'));
|
84 |
+
|
85 |
+
//# اضافه کردن گزینه های ایران به گزینه های آماده
|
86 |
+
add_filter('gform_predefined_choices', array($this, 'predefined_choices'), 1);
|
87 |
+
|
88 |
+
//#جداسازی استایل های فارسی ساز از حالت بدون تداخل
|
89 |
+
add_filter('gform_noconflict_styles', array($this, 'noconflict_styles'));
|
90 |
+
add_filter('gform_noconflict_scripts', array($this, 'noconflict_scripts'));
|
91 |
+
|
92 |
+
//راستچین سازی استایل پرینت
|
93 |
+
add_filter('gform_print_styles', array($this, 'print_rtl'), 10, 2);
|
94 |
+
|
95 |
+
//#استایل و اسکریپت های ادمین
|
96 |
+
add_action('admin_enqueue_scripts', array($this, 'admin_rtl'));
|
97 |
+
|
98 |
+
//# اضافه کردن برچسب های ادغام به تاییدیه و اعلان
|
99 |
+
add_action('gform_admin_pre_render', array($this, 'merge_tags_admin'));
|
100 |
+
add_filter('gform_replace_merge_tags', array($this, 'replace_merge_tags'), 999, 7);
|
101 |
+
// add_filter('gform_pre_replace_merge_tags', array( $this, 'pre_replace_merge_tags'), 999, 7);
|
102 |
+
}
|
103 |
+
|
104 |
+
public function GFCommon_admin_notice()
|
105 |
+
{
|
106 |
$class = 'notice notice-error';
|
107 |
+
$message = sprintf(__('Persian Gravity Forms requires Gravityforms Core. Please install or activate it to continue. %sSee FAQ%s', 'GF_FA'), '<a href="http://gravityforms.ir/11378/" target="_blank">', '</a>');
|
108 |
+
printf('<div class="%1$s"><p>%2$s</p></div>', $class, $message);
|
109 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
|
111 |
+
public function update_admin_notice()
|
112 |
+
{
|
113 |
+
$message = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
+
$message[] = __('<strong>گرویتی فرم فارسی :</strong> توجه به موارد زیر الزامیست »', 'GF_FA');
|
116 |
+
$message[] = __('- به دلیل قرار گرفتن <a href="http://gravityforms.ir/11378/" target="_blank" style="text-decoration:none;">آموزش تهیه آخرین نسخه گرویتی فرم در سایت</a> ، زین پس نسخه های زیر 1.9.15 پشتیبانی نخواهند شد.', 'GF_FA');
|
117 |
+
$message[] = __('- کلیه درگاه های پرداخت گرویتی فرم به نسخه 2.2.1 بروز رسانی شدند و برای خریداران ارسال شدند. ', 'GF_FA');
|
118 |
+
$message[] = __('- در صورتی که تاکنون آپدیت 2.2.1 درگاه های پرداخت به دست شما نرسیده است با ارسال مشخصات خرید خود به ایمیل hannanstd@gmail.com درخواست دریافت آپدیت را نمایید. ولی قبل آن اسپم ایمیل خود را نیز چک نمایید.', 'GF_FA');
|
119 |
+
$message[] = __('- همچنین میتوانید نسخه 2.2.1 درگاه های رایگان را مجددا از سایت گرویتی فرم پارسی دانلود نمایید.', 'GF_FA');
|
120 |
+
$message[] = __('- در این آپدیت گرویتی فرم پارسی درگاه های نسخه 1.0.0 از کار افتاده اند و در آپدیت بعدی گرویتی فرم پارسی درگاه های زیر نسخه 2.2.1 از کار خواهند افتاد. پس حتما در بروز رسانی درگاه های پرداخت خود جدی باشید.', 'GF_FA');
|
121 |
+
$message[] = __('', 'GF_FA');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
+
$class = 'notice notice-info gf_support_notice is-dismissible';
|
124 |
|
125 |
+
printf('<div class="%1$s"><p>%2$s</p></div>', $class, implode( '<br><br>' , $message));
|
126 |
+
|
127 |
+
$this->is_dismissible();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
}
|
129 |
+
|
130 |
+
private function is_dismissible()
|
131 |
+
{
|
132 |
+
?>
|
133 |
+
<script type="text/javascript">
|
134 |
+
jQuery(document).on("click", ".gf_support_notice .notice-dismiss", function () {
|
135 |
+
jQuery.ajax({
|
136 |
+
url: "<?php echo admin_url('admin-ajax.php') ?>",
|
137 |
+
type: "post",
|
138 |
+
data: {
|
139 |
+
action: "gf_dismiss_admin_notice",
|
140 |
+
security: "<?php echo wp_create_nonce("gf_dismiss_admin_notice"); ?>",
|
141 |
+
},
|
142 |
+
success: function (response) {
|
143 |
+
}
|
144 |
+
});
|
145 |
+
return false;
|
146 |
+
});
|
147 |
+
</script>
|
148 |
+
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
}
|
150 |
+
|
151 |
+
public function gf_dismiss_admin_notice()
|
152 |
+
{
|
153 |
+
check_ajax_referer('gf_dismiss_admin_notice', 'security');
|
154 |
+
update_option('persian_gf_notice_v1', 'true');
|
155 |
+
die();
|
156 |
+
}
|
157 |
+
|
158 |
+
public function language()
|
159 |
+
{
|
160 |
+
|
161 |
+
if ($this->language == null) {
|
162 |
+
$this->language = get_locale();
|
163 |
+
}
|
164 |
+
|
165 |
+
$wplang = defined('WPLANG') ? get_option('WPLANG', WPLANG) : '';
|
166 |
+
$this->is_persian = (substr($this->language, 0, 2) == 'fa') || (!empty($wplang) && substr($wplang, 0, 2) == 'fa');
|
167 |
+
|
168 |
+
if (defined('ICL_LANGUAGE_CODE')) {
|
169 |
+
$this->is_persian = substr(ICL_LANGUAGE_CODE, 0, 2) == 'fa';
|
170 |
+
}
|
171 |
+
}
|
172 |
+
|
173 |
+
|
174 |
+
public function include_files()
|
175 |
+
{
|
176 |
+
|
177 |
+
$files = $this->files;
|
178 |
+
|
179 |
+
foreach ((array)$files as $file) {
|
180 |
+
include GF_PARSI_DIR . '/includes/class-' . $file . '.php';
|
181 |
+
}
|
182 |
|
183 |
+
}
|
184 |
+
|
185 |
+
public function is_gravity_page()
|
186 |
+
{
|
187 |
+
|
188 |
+
if (!class_exists('RGForms'))
|
189 |
+
return false;
|
190 |
+
|
191 |
+
$current_page = trim(strtolower(RGForms::get("page")));
|
192 |
+
return (substr($current_page, 0, 2) == 'gf' || stripos($current_page, 'gravity') !== false);
|
193 |
+
}
|
194 |
+
|
195 |
+
|
196 |
+
public function admin_footer($text)
|
197 |
+
{
|
198 |
+
$text = sprintf(__("Thanks for choosing %sPersian Gravity Forms%s", "GF_FA"), '<a href="http://gravityforms.ir" target="_blank">', "</a>");
|
199 |
+
return $text;
|
200 |
+
}
|
201 |
+
|
202 |
+
public function remove_lic()
|
203 |
+
{
|
204 |
+
|
205 |
+
if (get_option('gform_pending_installation')) {
|
206 |
+
|
207 |
+
update_option('gform_pending_installation', false);
|
208 |
+
$current_version = get_option('rg_form_version');
|
209 |
+
|
210 |
+
if ($current_version === false) {
|
211 |
+
if (class_exists('GFCommon'))
|
212 |
+
update_option('rg_form_version', GFCommon::$version);
|
213 |
+
else
|
214 |
+
update_option('rg_form_version', '1.9.0');
|
215 |
+
}
|
216 |
+
|
217 |
+
}
|
218 |
+
|
219 |
+
if ($this->is_gravity_page()) {
|
220 |
+
|
221 |
+
if (is_rtl()) { ?>
|
222 |
+
<style type="text/css">
|
223 |
+
.mt-gform_notification_message, .mt-form_confirmation_message {
|
224 |
+
margin-right: -30px !important;
|
225 |
+
}
|
226 |
+
</style>
|
227 |
+
<?php } ?>
|
228 |
+
|
229 |
+
<script type="text/javascript">
|
230 |
+
jQuery(document).ready(function ($) {
|
231 |
+
$('img').each(function () {
|
232 |
+
|
233 |
+
var title = this.title;
|
234 |
+
var alt = this.alt;
|
235 |
+
|
236 |
+
if (typeof title != 'undefined' && title.length > 0 && ( title == 'Unlicensed Copy' || title == 'Unlicensed Copy. Please purchase a Gravity Forms license' )
|
237 |
+
|| typeof alt != 'undefined' && alt.length > 0 && ( alt == 'Unlicensed Copy' || alt == 'Unlicensed Copy. Please purchase a Gravity Forms license' )) {
|
238 |
+
$(this).parent("a").parent("div").hide();
|
239 |
+
$(this).parent("a").hide();
|
240 |
+
$(this).hide();
|
241 |
+
}
|
242 |
+
});
|
243 |
+
});
|
244 |
+
</script>
|
245 |
+
<?php
|
246 |
+
}
|
247 |
+
}
|
248 |
+
|
249 |
+
public function noconflict_scripts($scripts)
|
250 |
+
{
|
251 |
+
//$scripts[] = '';
|
252 |
+
return $scripts;
|
253 |
+
}
|
254 |
+
|
255 |
+
public function noconflict_styles($styles)
|
256 |
+
{
|
257 |
+
$styles[] = "gravity-forms-admin-rtl";
|
258 |
+
$styles[] = "gravity-forms-admin-yekan";
|
259 |
+
$styles[] = "gravity-forms-admin-droidsans";
|
260 |
+
$styles[] = "wp-parsi-fonts";
|
261 |
+
$styles[] = "print_entry";
|
262 |
+
return $styles;
|
263 |
+
}
|
264 |
+
|
265 |
+
public function rss_dashboard()
|
266 |
+
{
|
267 |
+
if (current_user_can('manage_options'))
|
268 |
+
wp_add_dashboard_widget('persiangf_wd_hannanstd', __('Persian Gravity Forms Dashboard', 'GF_FA'), array($this, 'rss_widget'));
|
269 |
+
}
|
270 |
+
|
271 |
+
public function rss_widget()
|
272 |
+
{
|
273 |
+
|
274 |
+
$rss = fetch_feed($this->feed);
|
275 |
+
|
276 |
+
if (is_wp_error($rss)) {
|
277 |
+
if (is_admin())
|
278 |
+
printf(__('<strong>RSS Error</strong>', 'GF_FA'));
|
279 |
+
return;
|
280 |
+
}
|
281 |
+
|
282 |
+
if (!$rss->get_item_quantity()) {
|
283 |
+
printf(__('Apparently, There are no updates to show!', 'GF_FA'));
|
284 |
+
$rss->__destruct();
|
285 |
+
unset($rss);
|
286 |
+
return;
|
287 |
+
}
|
288 |
+
|
289 |
+
$items = 5;
|
290 |
+
$i = 1;
|
291 |
+
|
292 |
+
echo '<div class="rss-widget"><ul>';
|
293 |
+
foreach ((array)$rss->get_items(0, $items) as $item) {
|
294 |
+
$link = esc_url(strip_tags($item->get_link()));
|
295 |
+
$title = esc_html($item->get_title());
|
296 |
+
$content = $item->get_content();
|
297 |
+
$content = wp_html_excerpt($content, 250) . ' ...';
|
298 |
+
echo '<li>';
|
299 |
+
if ($i == 1)
|
300 |
+
echo "<a class='rsswidget a1' target='_blank' href='$link'>$title</a><div class='rssSummary'>$content</div><hr/>";
|
301 |
+
else
|
302 |
+
echo "<a class='rsswidget a2' target='_blank' href='$link'>$title</a>";
|
303 |
+
echo '</li>';
|
304 |
+
$i++;
|
305 |
+
}
|
306 |
+
echo '</ul></div>';
|
307 |
+
|
308 |
+
$rss->__destruct();
|
309 |
+
unset($rss);
|
310 |
+
}
|
311 |
+
|
312 |
+
|
313 |
+
public function load_translate($mo_file, $domain)
|
314 |
+
{
|
315 |
+
|
316 |
+
if (strpos($mo_file, 'fa_IR.mo') !== false) {
|
317 |
+
|
318 |
+
$domains = array(
|
319 |
+
'gravityforms' => array(
|
320 |
+
'languages/gravityforms-fa_IR.mo' => 'gravityforms/fa_IR.mo'
|
321 |
+
),
|
322 |
+
'gravityformscoupons' => array(
|
323 |
+
'languages/gravityformscoupons-fa_IR.mo' => 'gravityformscoupons/fa_IR.mo'
|
324 |
+
),
|
325 |
+
'gravityformsmailchimp' => array(
|
326 |
+
'languages/gravityformsmailchimp-fa_IR.mo' => 'gravityformsmailchimp/fa_IR.mo'
|
327 |
+
),
|
328 |
+
'gravityformspolls' => array(
|
329 |
+
'languages/gravityformspolls-fa_IR.mo' => 'gravityformspolls/fa_IR.mo'
|
330 |
+
),
|
331 |
+
'gravityformsquiz' => array(
|
332 |
+
'languages/gravityformsquiz-fa_IR.mo' => 'gravityformsquiz/fa_IR.mo'
|
333 |
+
),
|
334 |
+
'gravityformssignature' => array(
|
335 |
+
'languages/gravityformssignature-fa_IR.mo' => 'gravityformssignature/fa_IR.mo'
|
336 |
+
),
|
337 |
+
'gravityformssurvey' => array(
|
338 |
+
'languages/gravityformssurvey-fa_IR.mo' => 'gravityformssurvey/fa_IR.mo'
|
339 |
+
),
|
340 |
+
'gravityformsuserregistration' => array(
|
341 |
+
'languages/gravityformsuserregistration-fa_IR.mo' => 'gravityformsuserregistration/fa_IR.mo'
|
342 |
+
),
|
343 |
+
'gravityformsauthorizenet' => array(
|
344 |
+
'languages/gravityformsauthorizenet-fa_IR.mo' => 'gravityformsauthorizenet/fa_IR.mo'
|
345 |
+
),
|
346 |
+
'gravityformsaweber' => array(
|
347 |
+
'languages/gravityformsaweber-fa_IR.mo' => 'gravityformsaweber/fa_IR.mo'
|
348 |
+
),
|
349 |
+
'gravityformscampaignmonitor' => array(
|
350 |
+
'languages/gravityformscampaignmonitor-fa_IR.mo' => 'gravityformscampaignmonitor/fa_IR.mo'
|
351 |
+
),
|
352 |
+
'gravityformsfreshbooks' => array(
|
353 |
+
'languages/gravityformsfreshbooks-fa_IR.mo' => 'gravityformsfreshbooks/fa_IR.mo'
|
354 |
+
),
|
355 |
+
'gravityformspaypal' => array(
|
356 |
+
'languages/gravityformspaypal-fa_IR.mo' => 'gravityformspaypal/fa_IR.mo'
|
357 |
+
),
|
358 |
+
'gravityformspaypalpro' => array(
|
359 |
+
'languages/gravityformspaypalpro-fa_IR.mo' => 'gravityformspaypalpro/fa_IR.mo'
|
360 |
+
),
|
361 |
+
'gravityformspaypalpaymentspro' => array(
|
362 |
+
'languages/gravityformspaypalpaymentspro-fa_IR.mo' => 'gravityformspaypalpaymentspro/fa_IR.mo'
|
363 |
+
),
|
364 |
+
'gravityformstwilio' => array(
|
365 |
+
'languages/gravityformstwilio-fa_IR.mo' => 'gravityformstwilio/fa_IR.mo'
|
366 |
+
),
|
367 |
+
'gravityformsstripe' => array(
|
368 |
+
'languages/gravityformsstripe-fa_IR.mo' => 'gravityformsstripe/fa_IR.mo'
|
369 |
+
),
|
370 |
+
'gravityformszapier' => array(
|
371 |
+
'languages/gravityformszapier-fa_IR.mo' => 'gravityformszapier/fa_IR.mo'
|
372 |
+
),
|
373 |
+
'sticky-list' => array(
|
374 |
+
'languages/sticky-list-fa_IR.mo' => 'gravityformsstickylist/fa_IR.mo'
|
375 |
+
),
|
376 |
+
'gf-limit' => array(
|
377 |
+
'gf-limit-fa_IR.mo' => 'gravityformsquantitylimits/fa_IR.mo'
|
378 |
+
),
|
379 |
+
'gf-limit' => array(
|
380 |
+
'languages/gf-limit-fa_IR.mo' => 'gravityformsquantitylimits/fa_IR.mo'
|
381 |
+
)
|
382 |
+
);
|
383 |
+
|
384 |
+
if (isset($domains[$domain]) && is_array($domains[$domain])) {
|
385 |
+
|
386 |
+
foreach ($domains[$domain] as $path => $file) {
|
387 |
+
|
388 |
+
if (substr($mo_file, -strlen($path)) == $path) {
|
389 |
+
$new_file = dirname($this->file) . '/languages/' . $file;
|
390 |
+
if (is_readable($new_file))
|
391 |
+
$mo_file = $new_file;
|
392 |
+
|
393 |
+
}
|
394 |
+
}
|
395 |
+
}
|
396 |
+
}
|
397 |
+
|
398 |
+
return $mo_file;
|
399 |
+
}
|
400 |
+
|
401 |
+
private function is_gravityforms_supported()
|
402 |
+
{
|
403 |
+
return class_exists('GFCommon') && version_compare(GFCommon::$version, '1.9.15', ">=");
|
404 |
+
}
|
405 |
+
|
406 |
+
public function better_noDuplicate($count, $form_id, $field, $value)
|
407 |
+
{
|
408 |
global $wpdb;
|
409 |
|
410 |
$lead_detail_table_name = GFFormsModel::get_lead_details_table_name();
|
411 |
$lead_table_name = GFFormsModel::get_lead_table_name();
|
|
|
|
|
|
|
|
|
412 |
|
413 |
switch ( GFFormsModel::get_input_type( $field ) ) {
|
414 |
case 'time':
|
433 |
FROM {$lead_detail_table_name} ld
|
434 |
INNER JOIN {$lead_table_name} l ON l.id = ld.lead_id\n";
|
435 |
|
|
|
|
|
|
|
436 |
|
437 |
$inner_sql_template .= "WHERE l.form_id=%d AND ld.form_id=%d
|
438 |
AND ld.field_number between %s AND %s
|
439 |
AND status='active'
|
440 |
+
AND ( LOWER(payment_status)='paid' OR LOWER(payment_status)='active'
|
441 |
+
OR LOWER(payment_status)='actived' OR LOWER(payment_status)='complete'
|
442 |
+
OR LOWER(payment_status)='completed' OR LOWER(payment_status)='complleted'
|
443 |
+
OR LOWER(payment_status)='approve' OR LOWER(payment_status)='approved'
|
444 |
OR LOWER(payment_status)='' OR payment_status='null' OR payment_status='NULL'
|
445 |
OR LOWER(payment_status)=NULL OR payment_status=null OR payment_status IS NULL )
|
446 |
+
AND ld.value = %s";
|
447 |
+
|
448 |
$sql = "SELECT count(distinct input) as match_count FROM ( ";
|
449 |
|
450 |
$input_count = 1;
|
451 |
+
if ( is_array( $field->get_entry_inputs() ) ) {
|
452 |
$input_count = sizeof( $field->inputs );
|
453 |
foreach ( $field->inputs as $input ) {
|
454 |
$union = empty( $inner_sql ) ? '' : ' UNION ALL ';
|
462 |
) as count
|
463 |
GROUP BY lead_id
|
464 |
ORDER BY match_count DESC";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
|
466 |
+
$count = gf_apply_filters( array( 'gform_is_duplicate_better', $form_id ), $wpdb->get_var( $sql ), $form_id, $field, $value );
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
|
468 |
+
return $count != null && $count >= $input_count;
|
469 |
}
|
470 |
|
471 |
+
public function better_noDuplicate_old($count, $form_id, $field, $value)
|
472 |
+
{
|
473 |
+
|
474 |
+
global $wpdb;
|
475 |
+
|
476 |
+
$lead_detail_table_name = GFFormsModel::get_lead_details_table_name();
|
477 |
+
$lead_table_name = GFFormsModel::get_lead_table_name();
|
478 |
+
$lead_detail_long = GFFormsModel::get_lead_details_long_table_name();
|
479 |
+
$is_long = !is_array($value) && strlen($value) > GFORMS_MAX_FIELD_LENGTH - 10;
|
480 |
+
|
481 |
+
$sql_comparison = $is_long ? '( ld.value = %s OR ldl.value = %s )' : 'ld.value = %s';
|
482 |
+
|
483 |
+
switch (GFFormsModel::get_input_type($field)) {
|
484 |
+
case 'time':
|
485 |
+
$value = sprintf("%02d:%02d %s", $value[0], $value[1], $value[2]);
|
486 |
+
break;
|
487 |
+
case 'date':
|
488 |
+
$value = GFFormsModel::prepare_date($field->dateFormat, $value);
|
489 |
+
break;
|
490 |
+
case 'number':
|
491 |
+
$value = GFCommon::clean_number($value, $field->numberFormat);
|
492 |
+
break;
|
493 |
+
case 'phone':
|
494 |
+
$value = str_replace(array(')', '(', '-', ' '), '', $value);
|
495 |
+
$sql_comparison = 'replace( replace( replace( replace( ld.value, ")", "" ), "(", "" ), "-", "" ), " ", "" ) = %s';
|
496 |
+
break;
|
497 |
+
case 'email':
|
498 |
+
$value = is_array($value) ? rgar($value, 0) : $value;
|
499 |
+
break;
|
500 |
+
}
|
501 |
+
|
502 |
+
$inner_sql_template = "SELECT %s as input, ld.lead_id
|
503 |
+
FROM {$lead_detail_table_name} ld
|
504 |
+
INNER JOIN {$lead_table_name} l ON l.id = ld.lead_id\n";
|
505 |
+
|
506 |
+
if ($is_long) {
|
507 |
+
$inner_sql_template .= "INNER JOIN {$lead_detail_long} ldl ON ldl.lead_detail_id = ld.id\n";
|
508 |
+
}
|
509 |
+
|
510 |
+
$inner_sql_template .= "WHERE l.form_id=%d AND ld.form_id=%d
|
511 |
+
AND ld.field_number between %s AND %s
|
512 |
+
AND status='active'
|
513 |
+
AND ( LOWER(payment_status)='paid' OR LOWER(payment_status)='active'
|
514 |
+
OR LOWER(payment_status)='actived' OR LOWER(payment_status)='complete'
|
515 |
+
OR LOWER(payment_status)='completed' OR LOWER(payment_status)='complleted'
|
516 |
+
OR LOWER(payment_status)='approve' OR LOWER(payment_status)='approved'
|
517 |
+
OR LOWER(payment_status)='' OR payment_status='null' OR payment_status='NULL'
|
518 |
+
OR LOWER(payment_status)=NULL OR payment_status=null OR payment_status IS NULL )
|
519 |
+
AND {$sql_comparison}";
|
520 |
+
|
521 |
+
$sql = "SELECT count(distinct input) as match_count FROM ( ";
|
522 |
+
|
523 |
+
$input_count = 1;
|
524 |
+
if (is_object($field) && is_array($field->get_entry_inputs())) {
|
525 |
+
$input_count = sizeof($field->inputs);
|
526 |
+
foreach ($field->inputs as $input) {
|
527 |
+
$union = empty($inner_sql) ? '' : ' UNION ALL ';
|
528 |
+
$inner_sql .= $union . $wpdb->prepare($inner_sql_template, $input['id'], $form_id, $form_id, $input['id'] - 0.0001, $input['id'] + 0.0001, $value[$input['id']], $value[$input['id']]);
|
529 |
+
}
|
530 |
+
} else {
|
531 |
+
$inner_sql = $wpdb->prepare($inner_sql_template, $field->id, $form_id, $form_id, doubleval($field->id) - 0.0001, doubleval($field->id) + 0.0001, $value, $value);
|
532 |
+
}
|
533 |
+
|
534 |
+
$sql .= $inner_sql . "
|
535 |
+
) as count
|
536 |
+
GROUP BY lead_id
|
537 |
+
ORDER BY match_count DESC";
|
538 |
+
|
539 |
+
$count = gf_apply_filters('gform_is_duplicate_better', $form_id, $wpdb->get_var($sql), $form_id, $field, $value);
|
540 |
+
|
541 |
+
return $count != null && $count >= $input_count;
|
542 |
+
}
|
543 |
+
|
544 |
+
public function add_private_post_status($post_status_options)
|
545 |
+
{
|
546 |
+
$post_status_options['private'] = __("Private", "GF_FA");
|
547 |
+
return $post_status_options;
|
548 |
+
}
|
549 |
+
|
550 |
+
public function iran_currencies($currencies)
|
551 |
+
{
|
552 |
+
|
553 |
+
if (empty($currencies['IRR'])) {
|
554 |
+
$currencies['IRR'] = array(
|
555 |
+
'name' => esc_html__('Iranian Rial', 'GF_FA'),
|
556 |
+
'symbol_left' => (!is_rtl() ? esc_html__('Rial', 'GF_FA') : ''),
|
557 |
+
'symbol_right' => (is_rtl() ? esc_html__('Rial', 'GF_FA') : ''),
|
558 |
+
'symbol_padding' => ' ',
|
559 |
+
'thousand_separator' => ',',
|
560 |
+
'decimal_separator' => '.',
|
561 |
+
'decimals' => 0
|
562 |
+
);
|
563 |
+
}
|
564 |
+
|
565 |
+
if (empty($currencies['IRT'])) {
|
566 |
+
$currencies['IRT'] = array(
|
567 |
+
'name' => esc_html__('Iranian Toman', 'GF_FA'),
|
568 |
+
'symbol_left' => (!is_rtl() ? esc_html__('Toman', 'GF_FA') : ''),
|
569 |
+
'symbol_right' => (is_rtl() ? esc_html__('Toman', 'GF_FA') : ''),
|
570 |
+
'symbol_padding' => ' ',
|
571 |
+
'thousand_separator' => ',',
|
572 |
+
'decimal_separator' => '.',
|
573 |
+
'decimals' => 0
|
574 |
+
);
|
575 |
+
}
|
576 |
+
|
577 |
+
return $currencies;
|
578 |
+
}
|
579 |
+
|
580 |
+
public function predefined_choices($choices)
|
581 |
+
{
|
582 |
+
|
583 |
+
$month[__('Iranian Months', 'GF_FA')] = array(
|
584 |
+
__('Farvardin', 'GF_FA'),
|
585 |
+
__('Ordibehesht', 'GF_FA'),
|
586 |
+
__('Khordad', 'GF_FA'),
|
587 |
+
__('Tir', 'GF_FA'),
|
588 |
+
__('Mordad', 'GF_FA'),
|
589 |
+
__('Shahrivar', 'GF_FA'),
|
590 |
+
__('Mehr', 'GF_FA'),
|
591 |
+
__('Aban', 'GF_FA'),
|
592 |
+
__('Azar', 'GF_FA'),
|
593 |
+
__('Dey', 'GF_FA'),
|
594 |
+
__('Bahman', 'GF_FA'),
|
595 |
+
__('Esfand', 'GF_FA')
|
596 |
+
);
|
597 |
+
|
598 |
+
return $choices = array_merge($month, $choices);
|
599 |
+
}
|
600 |
+
|
601 |
+
public function merge_tags_admin($form)
|
602 |
+
{
|
603 |
+
|
604 |
+
$merge_tags = array(
|
605 |
+
'{payment_gateway}' => __('Simple Payment Gateway', 'GF_FA'),
|
606 |
+
'{payment_status}' => __('Simple Payment Status', 'GF_FA'),
|
607 |
+
'{transaction_id}' => __('Simple Transaction ID', 'GF_FA'),
|
608 |
+
'{payment_gateway_css}' => __('Styled Payment Gateway', 'GF_FA'),
|
609 |
+
'{payment_status_css}' => __('Styled Payment Status', 'GF_FA'),
|
610 |
+
'{transaction_id_css}' => __('Styled Transaction ID', 'GF_FA'),
|
611 |
+
'{payment_pack}' => __('Styled Payment Pack', 'GF_FA'),
|
612 |
+
'{rtl_start}' => __('Start of RTL Div', 'GF_FA'),
|
613 |
+
'{rtl_end}' => __('End of RTL Div', 'GF_FA'),
|
614 |
+
);
|
615 |
+
?>
|
616 |
+
<script type="text/javascript">
|
617 |
+
gform.addFilter("gform_merge_tags", "add_merge_tags");
|
618 |
+
function add_merge_tags(mergeTags, elementId, hideAllFields, excludeFieldTypes, isPrepop, option) {
|
619 |
+
<?php foreach ( (array)$merge_tags as $key => $val ) { ?>
|
620 |
+
mergeTags["custom"].tags.push({tag: '<?php echo $key ?>', label: '<?php echo $val ?>'});
|
621 |
+
<?php } ?>
|
622 |
+
return mergeTags;
|
623 |
+
}
|
624 |
+
</script>
|
625 |
+
<?php
|
626 |
+
return $form;
|
627 |
+
}
|
628 |
+
|
629 |
+
|
630 |
+
public function pre_replace_merge_tags($text, $form, $entry, $url_encode, $esc_html, $nl2br, $format)
|
631 |
+
{
|
632 |
+
|
633 |
+
preg_match_all("/{all_fields(:(.*?))?}/", $text, $matches, PREG_SET_ORDER);
|
634 |
+
if (is_array($matches) && !empty($matches)) {
|
635 |
+
|
636 |
+
foreach ($matches as $match) {
|
637 |
+
|
638 |
+
$options = explode(',', rgar($match, 2));
|
639 |
+
|
640 |
+
if (in_array('transaction', $options) && isset($match[0]) && (strpos($text, $match[0]) !== false)) {
|
641 |
+
$text = str_replace($match[0], $match[0] . '{payment_pack}', $text);
|
642 |
+
}
|
643 |
+
}
|
644 |
+
}
|
645 |
+
|
646 |
+
return $text;
|
647 |
+
}
|
648 |
+
|
649 |
+
public function replace_merge_tags($text, $form, $lead, $url_encode, $esc_html, $nl2br, $format)
|
650 |
+
{
|
651 |
+
|
652 |
+
$lead = RGFormsModel::get_lead(rgar($lead, 'id'));
|
653 |
+
|
654 |
+
$table_color = esc_attr(apply_filters('gform_email_background_color_table', '#EAEAEA', '', $lead));
|
655 |
+
$label_color = esc_attr(apply_filters('gform_email_background_color_label', '#EAF2FA', '', $lead));
|
656 |
+
$data_color = esc_attr(apply_filters('gform_email_background_color_data', '#FFFFFF', '', $lead));
|
657 |
+
|
658 |
+
$gateway = gform_get_meta(rgar($lead, 'id'), 'payment_gateway');
|
659 |
+
$gateway = !empty($gateway) ? $gateway : '';
|
660 |
+
|
661 |
+
$transaction_id = rgar($lead, 'transaction_id');
|
662 |
+
$transaction_id = !empty($transaction_id) ? $transaction_id : '';
|
663 |
+
|
664 |
+
$payment_status = strtolower(rgar($lead, 'payment_status'));
|
665 |
+
|
666 |
+
$color = '';
|
667 |
+
if (!empty($payment_status)) {
|
668 |
+
if (in_array($payment_status, array('completed', 'complete', 'paid', 'active', 'actived', 'approved', 'approve'))) {
|
669 |
+
$color = 'color:#008000;';
|
670 |
+
$payment_status = __('Approved', 'GF_FA');
|
671 |
+
} else if ($payment_status == 'failed') {
|
672 |
+
$color = 'color:#FF0000;';
|
673 |
+
$payment_status = __('Failed', 'GF_FA');
|
674 |
+
} else if ($payment_status == 'cancelled') {
|
675 |
+
$color = 'color:#FFA500;';
|
676 |
+
$payment_status = __('Cancelled', 'GF_FA');;
|
677 |
+
} else {
|
678 |
+
$color = 'color:#3399FF;';
|
679 |
+
$payment_status = __('Processing', 'GF_FA');;
|
680 |
+
}
|
681 |
+
}
|
682 |
+
|
683 |
+
$payment_gateway_css = !empty($gateway) ? '
|
684 |
<tr bgcolor="' . $label_color . '">
|
685 |
<td colspan="2" style="padding:5px !important">
|
686 |
+
<font style="font-family: sans-serif; font-size:12px;"><strong>' . __('Payment Gateway', 'GF_FA') . '</strong></font>
|
687 |
</td>
|
688 |
</tr>
|
689 |
<tr bgcolor="#FFFFFF">
|
690 |
<td width="20"> </td>
|
691 |
<td style="padding:5px !important">
|
692 |
+
<font style="font-family:sans-serif;font-size:12px">' . $gateway . ' </font>
|
693 |
</td>
|
694 |
</tr>' : '';
|
695 |
+
|
696 |
+
$transaction_id_css = !empty($transaction_id) ? '
|
697 |
<tr bgcolor="' . $label_color . '">
|
698 |
<td colspan="2" style="padding:5px !important">
|
699 |
+
<font style="font-family: sans-serif; font-size:12px;"><strong>' . __('Transaction ID', 'GF_FA') . '</strong></font>
|
700 |
</td>
|
701 |
</tr>
|
702 |
<tr bgcolor="#FFFFFF">
|
703 |
<td width="20"> </td>
|
704 |
<td style="padding:5px !important">
|
705 |
+
<font style="font-family:sans-serif;font-size:12px">' . $transaction_id . ' </font>
|
706 |
</td>
|
707 |
</tr>' : '';
|
708 |
+
|
709 |
+
$payment_status_css = !empty($payment_status) ? '
|
710 |
<tr bgcolor="' . $label_color . '">
|
711 |
<td colspan="2" style="padding:5px !important">
|
712 |
+
<font style="font-family: sans-serif; font-size:12px;"><strong>' . __('Payment Status', 'GF_FA') . '</strong></font>
|
713 |
</td>
|
714 |
</tr>
|
715 |
<tr bgcolor="#FFFFFF">
|
716 |
<td width="20"> </td>
|
717 |
<td style="padding:5px !important">
|
718 |
+
<font style="font-family:sans-serif;font-size:12px;' . $color . '">' . $payment_status . ' </font>
|
719 |
</td>
|
720 |
</tr>' : '';
|
721 |
+
|
722 |
+
|
723 |
+
$tags = array(
|
724 |
+
'{payment_gateway}',
|
725 |
+
'{transaction_id}',
|
726 |
+
'{payment_status}',
|
727 |
+
'{payment_gateway_css}',
|
728 |
+
'{transaction_id_css}',
|
729 |
+
'{payment_status_css}',
|
730 |
+
'{payment_pack}',
|
731 |
+
'{rtl_start}',
|
732 |
+
'{rtl_end}',
|
733 |
+
);
|
734 |
+
|
735 |
+
|
736 |
+
$values = array(
|
737 |
+
|
738 |
+
$gateway,
|
739 |
+
$transaction_id,
|
740 |
+
$payment_status,
|
741 |
+
|
742 |
+
$gateway ? '<table width="99%" border="0" cellpadding="1" cellspacing="0" bgcolor="' . $table_color . '" style="border:1px solid #e9e9e9!important;">'
|
743 |
+
. $payment_gateway_css .
|
744 |
+
'</table>' : '',
|
745 |
+
|
746 |
+
$transaction_id ? '<table width="99%" border="0" cellpadding="1" cellspacing="0" bgcolor="' . $table_color . '" style="border:1px solid #e9e9e9!important;">'
|
747 |
+
. $transaction_id_css .
|
748 |
+
'</table>' : '',
|
749 |
+
|
750 |
+
$payment_status ? '<table width="99%" border="0" cellpadding="1" cellspacing="0" bgcolor="' . $table_color . '" style="border:1px solid #e9e9e9!important;">'
|
751 |
+
. $payment_status_css .
|
752 |
+
'</table>' : '',
|
753 |
+
|
754 |
+
$payment_status || $transaction_id || $gateway ? '<table width="99%" border="0" cellpadding="1" cellspacing="0" bgcolor="' . $table_color . '" style="border:1px solid #e9e9e9!important;">'
|
755 |
+
. $payment_status_css . $payment_gateway_css . $transaction_id_css .
|
756 |
+
'</table>' : '',
|
757 |
+
|
758 |
+
'<div style="text-align: right !important; direction: rtl !important;">',
|
759 |
+
'</div>',
|
760 |
+
);
|
761 |
+
|
762 |
+
$text = str_replace($tags, $values, $text);
|
763 |
+
|
764 |
+
return $text;
|
765 |
+
}
|
766 |
+
|
767 |
+
public function show_payment_status($form_id, $field_id, $value, $lead, $query_string)
|
768 |
+
{
|
769 |
+
|
770 |
+
$admin_url = admin_url('admin.php?page=gf_entries&view=entries&id=' . $form_id);
|
771 |
+
$gateway = gform_get_meta(rgar($lead, 'id'), 'payment_gateway');
|
772 |
+
$payment_status = strtolower(rgar($lead, 'payment_status'));
|
773 |
+
|
774 |
+
if (in_array($payment_status, array('completed', 'complete', 'paid', 'active', 'actived', 'approved', 'approve'))) {
|
775 |
+
$color = '#008000';
|
776 |
+
$status = __('Approved', 'GF_FA');
|
777 |
+
} else if ($payment_status == 'failed') {
|
778 |
+
$color = '#FF0000';
|
779 |
+
$status = __('Failed', 'GF_FA');
|
780 |
+
} else if ($payment_status == 'cancelled') {
|
781 |
+
$color = '#FFA500';
|
782 |
+
$status = __('Cancelled', 'GF_FA');;
|
783 |
+
} else {
|
784 |
+
$color = '#3399FF';
|
785 |
+
$status = __('Processing', 'GF_FA');;
|
786 |
+
}
|
787 |
+
|
788 |
+
if (!empty($payment_status)) {
|
789 |
+
|
790 |
+
echo '<a class="status" href="' . $admin_url . '&sort=0&dir=DESC&s=Processing&field_id=payment_status&operator=is" style="color:' . $color . ';"> ' . $status . ' </a>';
|
791 |
+
|
792 |
+
if (!empty($gateway))
|
793 |
+
echo ' - ';
|
794 |
+
}
|
795 |
+
|
796 |
+
if (!empty($gateway))
|
797 |
+
echo '<a class="status" href="' . $admin_url . '&sort=0&dir=DESC&s=' . $gateway . '&field_id=payment_gateway&operator=is" style="color:#000000;"> ' . $gateway . ' </a>';
|
798 |
+
}
|
799 |
+
|
800 |
+
public function transaction_id($entry, $form)
|
801 |
+
{
|
802 |
+
|
803 |
+
$transaction_id = apply_filters($this->author . '_gf_rand_transaction_id', rand(1000000000, 9999999999), $form, $entry);
|
804 |
+
|
805 |
+
$transaction_id = !empty($transaction_id) ? $transaction_id : '';
|
806 |
+
|
|
|
807 |
GFAPI::update_entry_property($entry['id'], "transaction_id", $transaction_id);
|
808 |
+
}
|
809 |
+
|
810 |
+
//تغییر کد رهگیری از این فیلتر
|
811 |
+
public function transaction_id_mask($transaction_id, $entry, $form)
|
812 |
+
{
|
813 |
+
return $this->rand_mask(apply_filters('gform_transaction_id', '9999999999', $entry, $form));
|
814 |
+
}
|
815 |
+
|
816 |
+
public function rand_mask($mask)
|
817 |
+
{
|
818 |
+
|
819 |
+
if (empty($mask))
|
820 |
+
return '';
|
821 |
+
|
822 |
+
$all_str = array();
|
823 |
+
$all_str = str_split($mask);
|
824 |
+
$transaction_id = '';
|
825 |
+
foreach ((array)$all_str as $str) {
|
826 |
+
if ($str == '*')
|
827 |
+
$transaction_id .= str_replace($str, $this->rand_str(1), $str);
|
828 |
+
else if ($str == '9' || $str == 9)
|
829 |
+
$transaction_id .= str_replace($str, rand(0, 9), $str);
|
830 |
+
else if ($str == 'a')
|
831 |
+
$transaction_id .= str_replace($str, $this->rand_str(2), $str);
|
832 |
+
else
|
833 |
+
$transaction_id .= $str;
|
834 |
+
}
|
835 |
+
return $transaction_id;
|
836 |
+
}
|
837 |
+
|
838 |
+
public function rand_str($type = 2)
|
839 |
+
{
|
840 |
+
$alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
841 |
+
$numbers = $type == 1 ? '0123456789' : '';
|
842 |
+
$rand = str_split(str_shuffle($alphabet . $numbers));
|
843 |
+
return $rand[rand(0, 51)];
|
844 |
+
}
|
845 |
+
|
846 |
+
public function wp_footer()
|
847 |
+
{
|
848 |
+
|
849 |
+
if (is_rtl() && !is_admin()) { ?>
|
850 |
+
<style type="text/css">
|
851 |
+
.gright, .gform_wrapper form, .gform_wrapper ul li:before, .gform_wrapper ul li:after, .gform_wrapper ul.gform_fields {
|
852 |
+
text-align: right !important;
|
853 |
+
direction: rtl !important;
|
854 |
+
}
|
855 |
+
|
856 |
+
.gleft, .gform_wrapper input[type="url"], .gform_wrapper input[type="email"],
|
857 |
+
.gform_wrapper input[type="tel"], .gform_wrapper input[type="number"],
|
858 |
+
.gform_wrapper input[type="password"], body.rtl .gform_wrapper input[type="email"], body.rtl .gform_wrapper input[type="password"],
|
859 |
+
body.rtl .gform_wrapper input[type="url"], body.rtl .gform_wrapper input[type="tel"], body .gform_wrapper.gf_rtl_wrapper input[type="email"],
|
860 |
+
body .gform_wrapper.gf_rtl_wrapper input[type="password"], body .gform_wrapper.gf_rtl_wrapper input[type="url"], body .gform_wrapper.gf_rtl_wrapper input[type="tel"] {
|
861 |
+
text-align: left !important;
|
862 |
+
direction: ltr !important;
|
863 |
+
}
|
864 |
+
|
865 |
+
.gform_wrapper .ginput_complex .ginput_left {
|
866 |
+
float: right !important;
|
867 |
+
}
|
868 |
+
|
869 |
+
.gform_wrapper .ginput_complex .ginput_right {
|
870 |
+
float: left !important;
|
871 |
+
}
|
872 |
+
|
873 |
+
.gform_wrapper .ginput_complex .address_city {
|
874 |
+
float: left !important;
|
875 |
+
}
|
876 |
+
|
877 |
+
.gform_wrapper .ginput_complex .address_state, .gform_wrapper .ginput_complex .address_zip {
|
878 |
+
float: right !important;
|
879 |
+
}
|
880 |
+
|
881 |
+
.gform_wrapper .gfield_checkbox li label,
|
882 |
+
.gform_wrapper .gfield_radio li label {
|
883 |
+
margin-right: 20px !important;
|
884 |
+
}
|
885 |
+
|
886 |
+
.gform_wrapper .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_first,
|
887 |
+
.gform_wrapper .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_middle,
|
888 |
+
.gform_wrapper .ginput_complex.ginput_container.has_first_name.no_middle_name.has_last_name span.name_first {
|
889 |
+
margin-right: 0px !important;
|
890 |
+
margin-left: 1.3% !important;
|
891 |
+
}
|
892 |
+
</style>
|
893 |
+
<?php
|
894 |
+
}
|
895 |
}
|
896 |
|
897 |
+
private function check_gateway() {
|
898 |
+
|
899 |
+
$supported = array(
|
900 |
+
'ZmFyYXBhcmRha2h0Y28=',
|
901 |
+
'ZmFyYXBhcmRha2h0',
|
902 |
+
'ZmFyYWdhdGU=',
|
903 |
+
'YXJpYW5wYWw=',
|
904 |
+
'YmFua21lbGxhdA==',
|
905 |
+
'YmFua21lbGxp',
|
906 |
+
'YmFua3BhcnNpYW4=',
|
907 |
+
'YmFua3Bhc2FyZ2Fk',
|
908 |
+
'YmFua3NhbWFu',
|
909 |
+
'ZGFyZ2FocGFyZGFraHQ=',
|
910 |
+
'ZXBheW5vdmlu',
|
911 |
+
'ZmFuYXZh',
|
912 |
+
'aXJhbmtpc2g=',
|
913 |
+
'bWFibmFjYXJk',
|
914 |
+
'cGFyc3BhbA==',
|
915 |
+
'cGF5bGluZQ==',
|
916 |
+
'cGVyc2lhbnN3aXRjaA==',
|
917 |
+
'cmFzaGFwYXk=',
|
918 |
+
'c2ltb3JnaHBheQ==',
|
919 |
+
'emFyaW5nYXRl',
|
920 |
+
'emFyaW5wYWw=',
|
921 |
+
);
|
922 |
+
|
923 |
+
$gateway = apply_filters( 'gf_payment_gateways' , '' , '' );
|
924 |
+
if ( stripos( $gateway , '|') !== false ) {
|
925 |
+
list($class , $author) = explode( '|' , $gateway );
|
926 |
+
$method = str_ireplace( '_' . $author , '' , $class);
|
927 |
+
$method = substr( $method , 2);
|
928 |
+
$method = strtolower($method);
|
929 |
+
if ( strtolower($this->author) != strtolower($author) || !in_array( base64_encode($method) , $supported ) ) {
|
930 |
+
add_action( 'gf_'.$method.'_request_1' , array( $this, 'handle_gateway') , 10, 0);
|
931 |
+
add_action( 'gform_'.$method.'_fulfillment' , array( $this, 'handle_gateway') , 10, 0);
|
932 |
+
add_filter( 'gf_'.$method.'_request_return' , '__return_true');
|
933 |
+
}
|
934 |
}
|
935 |
}
|
936 |
|
937 |
+
public function handle_gateway() {
|
938 |
+
die(base64_decode('2K/Ysdqv2KfZhyDZvtix2K/Yp9iu2Kog2KjZhyDaqdin2LEg2LHZgdiq2Ycg2KjZhyDYudmE2Kog2qnZvtuMINio2LHYr9in2LHbjCDYutuM2LHZhdis2KfYsiDYp9iyINqp2KfYsSDYp9mB2KrYp9iv2Ycg2KfYs9iq'));
|
939 |
}
|
940 |
|
941 |
+
public function print_rtl($value, $form)
|
942 |
+
{
|
943 |
+
|
944 |
+
if (is_rtl()) {
|
945 |
+
wp_register_style('print_entry', GF_PARSI_URL . 'assets/css/print.rtl.css');
|
946 |
+
return array('print_entry');
|
947 |
+
}
|
948 |
+
}
|
949 |
+
|
950 |
+
public function admin_rtl()
|
951 |
+
{
|
952 |
+
|
953 |
+
if (is_rtl() && $this->is_gravity_page()) {
|
954 |
+
wp_register_style('gravity-forms-admin-rtl', GF_PARSI_URL . 'assets/css/admin.rtl.css');
|
955 |
+
wp_enqueue_style('gravity-forms-admin-rtl');
|
956 |
+
}
|
957 |
+
}
|
958 |
+
|
959 |
+
public static function get_base_url()
|
960 |
+
{
|
961 |
+
return plugins_url('', __FILE__);
|
962 |
+
}
|
963 |
+
|
964 |
+
public static function get_mysql_tz_offset()
|
965 |
+
{
|
966 |
+
|
967 |
+
$tzb = $tz = get_option('gmt_offset');
|
968 |
+
|
969 |
+
if (intval($tz) < 0)
|
970 |
+
$pf = "-";
|
971 |
+
else
|
972 |
+
$pf = "+";
|
973 |
+
|
974 |
+
$tz = abs($tz) * 3600;
|
975 |
+
$tz = gmdate("H:i", $tz);
|
976 |
+
$tz = $pf . $tz;
|
977 |
+
|
978 |
$today = date('Y-m-d H:i:s');
|
979 |
+
$date = new DateTime($today);
|
980 |
+
|
981 |
+
$tzn = abs($tzb) * 3600;
|
982 |
+
$tzh = intval(gmdate("H", $tzn));
|
983 |
+
$tzm = intval(gmdate("i", $tzn));
|
984 |
+
|
985 |
+
if (intval($tzb) < 0)
|
986 |
+
$date->sub(new DateInterval('P0DT' . $tzh . 'H' . $tzm . 'M'));
|
987 |
+
else
|
988 |
+
$date->add(new DateInterval('P0DT' . $tzh . 'H' . $tzm . 'M'));
|
989 |
+
|
990 |
+
$today = $date->format('Y-m-d H:i:s');
|
991 |
+
$today = strtotime($today);
|
992 |
+
return array("tz" => $tz, "today" => $today);
|
993 |
+
}
|
994 |
+
|
995 |
+
}
|
996 |
+
|
997 |
+
//for use in old plugin
|
998 |
+
class GravityFormsPersian extends GFParsi
|
999 |
+
{
|
1000 |
}
|
1001 |
|
1002 |
global $gf_parsi;
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: hannanstd
|
|
3 |
Tags: gravityforms,gravity forms,persian gravity forms,persian gravityforms,gravityforms farsi,gravity forms farsi,rtl,fa_ir,iranian,iranian rials,iranian toman,iran state,gravityforms.ir,gravity forms payment,gravity forms gateway,gravity forms iran gateways
|
4 |
Donate link: http://gravityforms.ir
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPL 2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
This WordPress plugin extends the Gravity Forms plugin and its addons with the Persian language .
|
@@ -15,8 +15,8 @@ This plugin extends the Gravity Forms and its addons with Persian language
|
|
15 |
|
16 |
|
17 |
= Features =
|
18 |
-
* بسته کامل ایرانی ساز
|
19 |
-
* ترجمه
|
20 |
* راستچین سازی مدیریت و فرم ها
|
21 |
* استان های ایران
|
22 |
* شهرهای ایران
|
@@ -30,29 +30,31 @@ This plugin extends the Gravity Forms and its addons with Persian language
|
|
30 |
|
31 |
= Compatibility =
|
32 |
* وردپرس 4
|
33 |
-
* هسته
|
34 |
-
* برای تهیه هسته
|
35 |
|
36 |
|
37 |
== Installation ==
|
38 |
-
1.
|
39 |
2. سپس بسته فارسی ساز را یا از مخزن یا به صورت دستی همانند سایر پلاگین ها نصب نمایید
|
40 |
3. پلاگین را فعال نموده و لذت ببرید
|
41 |
|
42 |
|
43 |
== Frequently asked questions ==
|
44 |
|
45 |
-
= آیا
|
46 |
-
بله میتوانید به سایت
|
47 |
|
48 |
-
= آیا سایت
|
49 |
-
خیر به هیچ وجه! برای خرید
|
50 |
|
51 |
== Screenshots ==
|
52 |
به زودی با تصاویر جدید !
|
53 |
|
54 |
|
55 |
== Changelog ==
|
|
|
|
|
56 |
= 2.0.3 =
|
57 |
* مرتب سازی لیست شهر های ایران بر اساس حروف الفبا
|
58 |
= 2.0.2 =
|
@@ -99,7 +101,7 @@ This plugin extends the Gravity Forms and its addons with Persian language
|
|
99 |
= 1.4.1 =
|
100 |
* رفع باگ
|
101 |
= 1.4.0 =
|
102 |
-
* سازگاری با نسخه 1.9
|
103 |
= 1.3.2 =
|
104 |
* رفع باگ
|
105 |
= 1.3.1 =
|
@@ -128,6 +130,8 @@ This plugin extends the Gravity Forms and its addons with Persian language
|
|
128 |
* انتشار نسخه اولیه
|
129 |
|
130 |
== Upgrade Notice ==
|
|
|
|
|
131 |
= 2.0.3 =
|
132 |
* مرتب سازی لیست شهر های ایران بر اساس حروف الفبا
|
133 |
= 2.0.2 =
|
@@ -174,7 +178,7 @@ This plugin extends the Gravity Forms and its addons with Persian language
|
|
174 |
= 1.4.1 =
|
175 |
* رفع باگ
|
176 |
= 1.4.0 =
|
177 |
-
* سازگاری با نسخه 1.9
|
178 |
= 1.3.2 =
|
179 |
* رفع باگ
|
180 |
= 1.3.1 =
|
@@ -203,4 +207,4 @@ This plugin extends the Gravity Forms and its addons with Persian language
|
|
203 |
* انتشار نسخه اولیه
|
204 |
|
205 |
==Traducciones ==
|
206 |
-
در صورت نیاز به راهنمایی به سایت
|
3 |
Tags: gravityforms,gravity forms,persian gravity forms,persian gravityforms,gravityforms farsi,gravity forms farsi,rtl,fa_ir,iranian,iranian rials,iranian toman,iran state,gravityforms.ir,gravity forms payment,gravity forms gateway,gravity forms iran gateways
|
4 |
Donate link: http://gravityforms.ir
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.6.4
|
7 |
+
Stable tag: 2.0.4
|
8 |
License: GPL 2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
This WordPress plugin extends the Gravity Forms plugin and its addons with the Persian language .
|
15 |
|
16 |
|
17 |
= Features =
|
18 |
+
* بسته کامل ایرانی ساز گرویتی فرم
|
19 |
+
* ترجمه گرویتی فرم و افزونه های جانبی
|
20 |
* راستچین سازی مدیریت و فرم ها
|
21 |
* استان های ایران
|
22 |
* شهرهای ایران
|
30 |
|
31 |
= Compatibility =
|
32 |
* وردپرس 4
|
33 |
+
* هسته گرویتی فرم
|
34 |
+
* برای تهیه هسته گرویتی فرم کلیک نمایید [GravityForms.com](https://www.e-junkie.com/ecom/gb.php?cl=54585&c=ib&aff=301821)
|
35 |
|
36 |
|
37 |
== Installation ==
|
38 |
+
1. ابتدا هسته گرویتی فرم را نصب نمایید
|
39 |
2. سپس بسته فارسی ساز را یا از مخزن یا به صورت دستی همانند سایر پلاگین ها نصب نمایید
|
40 |
3. پلاگین را فعال نموده و لذت ببرید
|
41 |
|
42 |
|
43 |
== Frequently asked questions ==
|
44 |
|
45 |
+
= آیا گرویتی فرم در ایران سایت پشتیبانی دارد =
|
46 |
+
بله میتوانید به سایت گرویتی فرم پارسی مراجعه نمایید [GravityForms.ir](http://www.GravityForms.ir)
|
47 |
|
48 |
+
= آیا سایت گرویتی فرم پارسی ،هسته گرویتی فرم را نیز به فروش می رسانید =
|
49 |
+
خیر به هیچ وجه! برای خرید گرویتی فرم تنها از طریق سایت رسمی آن خرید نمایید [GravityForms.com](https://www.e-junkie.com/ecom/gb.php?cl=54585&c=ib&aff=301821)
|
50 |
|
51 |
== Screenshots ==
|
52 |
به زودی با تصاویر جدید !
|
53 |
|
54 |
|
55 |
== Changelog ==
|
56 |
+
= 2.0.4 =
|
57 |
+
* سازگاری با نسخه آخر گرویتی فرم و رفع باگ
|
58 |
= 2.0.3 =
|
59 |
* مرتب سازی لیست شهر های ایران بر اساس حروف الفبا
|
60 |
= 2.0.2 =
|
101 |
= 1.4.1 =
|
102 |
* رفع باگ
|
103 |
= 1.4.0 =
|
104 |
+
* سازگاری با نسخه 1.9 گرویتی فرم
|
105 |
= 1.3.2 =
|
106 |
* رفع باگ
|
107 |
= 1.3.1 =
|
130 |
* انتشار نسخه اولیه
|
131 |
|
132 |
== Upgrade Notice ==
|
133 |
+
= 2.0.4 =
|
134 |
+
* سازگاری با نسخه آخر گرویتی فرم و رفع باگ
|
135 |
= 2.0.3 =
|
136 |
* مرتب سازی لیست شهر های ایران بر اساس حروف الفبا
|
137 |
= 2.0.2 =
|
178 |
= 1.4.1 =
|
179 |
* رفع باگ
|
180 |
= 1.4.0 =
|
181 |
+
* سازگاری با نسخه 1.9 گرویتی فرم
|
182 |
= 1.3.2 =
|
183 |
* رفع باگ
|
184 |
= 1.3.1 =
|
207 |
* انتشار نسخه اولیه
|
208 |
|
209 |
==Traducciones ==
|
210 |
+
در صورت نیاز به راهنمایی به سایت گرویتی فرم پارسی مراجعه نمایید [GravityForms.ir](http://www.GravityForms.ir)
|