<!-- Alter HTML was skipped because the helper library refused to process the html -->
<!DOCTYPE html>
<html dir="rtl" lang="fa-IR">
<head>
	<meta charset="UTF-8">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<link rel="pingback" href="https://parsguitar.com/xmlrpc.php">

	<script id="ebm-browser-runtime-blocker-inline">
window.EBM_BROWSER_BLOCK_CFG={"siteHost":"parsguitar.com","siteHosts":["parsguitar.com"],"context":"frontend","mode":"blocklist","masterSwitch":1,"hasRules":true,"domHooks":true,"observerRoot":"body","initialScanScope":"body","hasPathRules":false,"allowed":[],"blocked":[".cloudflare.com",".elementor.com",".fontawesome.com",".googleapis.com",".gravatar.com",".jsdelivr.net",".mixpanel.com",".quic.cloud",".w.org",".woocommerce.com",".wordpress.org",".yoast.com","api.appsero.com","api.elementor.com","api.indexnow.org","api.smtp.com","api.themeisle.com","api.wordpress.org","api.wp-rocket.me","assets.elementor.com","b.rucss.wp-rocket.me","bdthemes.com","cdn.jsdelivr.net","cdnjs.cloudflare.com","connect.advancedcustomfields.com","dashboard.bdthemes.io","downloads.wordpress.org","edd-api.sigmaplugin.com","fonts.googleapis.com","fonts.gstatic.com","icanhazip.com","jsdelivr.net","licenses.bdthemes.co","my.elementor.com","my.yoast.com","packages.translationspress.com","profiles.wordpress.org","raw.githubusercontent.com","rest.akismet.com","rocketcdn.me","saas.wp-rocket.me","sigmaplugin.com","storina.com","themeisle.com","translate.wordpress.org","translations.wpmailsmtp.com","unpkg.com","use.fontawesome.com","woocommerce.com","woocommerce.ir","wordpress.org","wp-parsi.com","wp-planet.ir","wpmailsmtpapi.com","wpmailsmtpusage.com","wpmelon-updates.com","wpsaas.gpltimes.com","wpshout.com","xtemos.com"],"asset":[".cdn.jsdelivr.net",".cdnjs.cloudflare.com",".googleapis.com",".gstatic.com",".jsdelivr.net",".use.fontawesome.com","fonts.googleapis.com","fonts.gstatic.com","unpkg.com"],"tempAllowWporg":false,"localLibraryEnabled":0,"localLibraryRewrite":0,"localLibraryEndpoint":"https:\/\/parsguitar.com\/?ebm_local_asset=1"};
(function(){
  'use strict';

  var cfg = window.EBM_BROWSER_BLOCK_CFG || null;
  if(!cfg || !cfg.masterSwitch || !cfg.hasRules) return;

  var siteHost = sanitizeHost(cfg.siteHost || '');
  var localHosts = buildLocalHosts(cfg.siteHosts || cfg.localHosts || [], siteHost);
  var mode = String(cfg.mode || 'blocklist');
  var allowed = normalizePatterns(cfg.allowed || []);
  var blocked = normalizePatterns(cfg.blocked || []);
  var asset = normalizePatterns(cfg.asset || []);
  var tempAllowWporg = !!cfg.tempAllowWporg;
  var localLibraryEnabled = !!cfg.localLibraryEnabled;
  var localLibraryRewrite = cfg.localLibraryRewrite !== false;
  var localLibraryEndpoint = String(cfg.localLibraryEndpoint || '');
  var domHooks = cfg.domHooks !== false;
  var observerRoot = String(cfg.observerRoot || 'body');
  var initialScanScope = String(cfg.initialScanScope || 'body');
  var queued = [];
  var queueScheduled = false;

  function sanitizeHost(val){
    if(!val || typeof val !== 'string') return '';
    val = val.trim().toLowerCase();
    val = val.replace(/\.$/, '').replace(/^www\./, '');
    if(!/^[a-z0-9.-]+$/.test(val)) return '';
    if(val.length < 2 || val.length > 253) return '';
    return val;
  }

  function buildLocalHosts(list, fallback){
    var map = Object.create(null);
    var out = [];
    function push(val){
      var h = sanitizeHost(val || '');
      if(!h || map[h]) return;
      map[h] = true;
      out.push(h);
    }
    if(Array.isArray(list)){
      for(var i=0;i<list.length;i++) push(list[i]);
    }
    push(fallback || '');
    try { push((window.location && window.location.hostname) ? window.location.hostname : ''); } catch(e){}
    return out;
  }

  function safeUrl(input){
    if(!input || typeof input !== 'string') return null;
    input = input.trim();
    if(!input || input.indexOf('data:') === 0 || input.indexOf('blob:') === 0 || input.indexOf('javascript:') === 0) return null;
    try { return new URL(input, window.location.href); } catch(e) { return null; }
  }

  function sampleFromUrl(urlObj){
    if(!urlObj) return '';
    var out = (urlObj.pathname || '/') + (urlObj.search || '');
    if(out.length > 220) out = out.slice(0, 220);
    return out;
  }

  function normalizePatterns(list){
    var out = [];
    if(!Array.isArray(list)) return out;
    for(var i=0;i<list.length;i++){
      var p = list[i];
      if(typeof p !== 'string') continue;
      p = p.trim();
      if(!p) continue;
      p = p.replace(/\s+/g, '');
      var rest = p;
      var m = p.match(/^(https?):\/\//i);
      if(m){ rest = p.slice(m[0].length); }
      var slashPos = rest.indexOf('/');
      var hostPart = slashPos >= 0 ? rest.slice(0, slashPos) : rest;
      var pathPart = slashPos >= 0 ? rest.slice(slashPos) : '';
      var prefix = '';
      if(hostPart.indexOf('*.') === 0){ prefix = '*.'; hostPart = hostPart.slice(2); }
      else if(hostPart.indexOf('.') === 0){ prefix = '.'; hostPart = hostPart.slice(1); }
      var host = sanitizeHost(hostPart);
      if(!host) continue;
      if(pathPart){
        pathPart = pathPart.replace(/[?#].*$/, '');
        pathPart = '/' + pathPart.replace(/^\/+/, '');
        pathPart = pathPart.replace(/[^A-Za-z0-9\-._~\/%:@+]/g, '');
      }
      out.push({prefix:prefix, host:host, path:pathPart || ''});
    }
    return out;
  }

  function isWpOrgHost(host){
    host = sanitizeHost(host);
    return !!host && (host === 'wordpress.org' || /(?:^|\.)wordpress\.org$/.test(host) || host === 'wp.org' || /(?:^|\.)wp\.org$/.test(host));
  }

  function isExternalHost(host){
    host = sanitizeHost(host);
    if(!host) return false;
    for(var i=0;i<localHosts.length;i++){
      var local = localHosts[i];
      if(!local) continue;
      if(host === local) return false;
      if(host.length > local.length && host.slice(-(local.length + 1)) === '.' + local) return false;
    }
    return true;
  }

  function hostMatchesPattern(host, pattern){
    if(!host || !pattern || !pattern.host) return false;
    host = sanitizeHost(host);
    if(pattern.prefix === '*.'){
      return host.length > pattern.host.length + 1 && host.slice(-pattern.host.length) === pattern.host && host.charAt(host.length - pattern.host.length - 1) === '.';
    }
    if(pattern.prefix === '.'){
      return host === pattern.host || (host.length > pattern.host.length && host.slice(-pattern.host.length) === pattern.host && host.charAt(host.length - pattern.host.length - 1) === '.');
    }
    return host === pattern.host;
  }

  function requestMatches(urlObj, list){
    if(!urlObj || !list || !list.length) return false;
    var host = sanitizeHost(urlObj.hostname || '');
    var path = urlObj.pathname || '/';
    for(var i=0;i<list.length;i++){
      var p = list[i];
      if(!p) continue;
      if(!hostMatchesPattern(host, p)) continue;
      if(p.path && path.indexOf(p.path) !== 0) continue;
      return true;
    }
    return false;
  }

  function shouldBlockUrl(input){
    if(mode === 'disabled') return false;
    var urlObj = safeUrl(input);
    if(!urlObj) return false;
    var host = sanitizeHost(urlObj.hostname || '');
    if(!host || !isExternalHost(host)) return false;
    if(tempAllowWporg && isWpOrgHost(host)) return false;
    if(mode === 'allowlist') return !requestMatches(urlObj, allowed);
    return requestMatches(urlObj, blocked) || requestMatches(urlObj, asset);
  }

  function shouldBlockSrcset(val){
    if(!val || typeof val !== 'string') return false;
    var parts = val.split(',');
    for(var i=0;i<parts.length;i++){
      var candidate = parts[i].trim().split(/\s+/)[0] || '';
      if(candidate && shouldBlockUrl(candidate)) return true;
    }
    return false;
  }

  function resolverUrl(input){
    if(!localLibraryEnabled || !localLibraryRewrite || !localLibraryEndpoint) return '';
    var urlObj = safeUrl(input);
    if(!urlObj) return '';
    var out = localLibraryEndpoint + (localLibraryEndpoint.indexOf('?') >= 0 ? '&' : '?') + 'u=' + encodeURIComponent(String(urlObj.href || ''));
    try { out += '&ctx=' + encodeURIComponent(String(cfg.context || '')); } catch(e){}
    return out;
  }

  function rewriteSrcset(val){
    if(!val || typeof val !== 'string') return '';
    var parts = val.split(',');
    var out = [];
    for(var i=0;i<parts.length;i++){
      var chunk = parts[i].trim();
      if(!chunk) continue;
      var pieces = chunk.split(/\s+/);
      var candidate = pieces[0] || '';
      if(candidate && shouldBlockUrl(candidate)){
        var localized = resolverUrl(candidate);
        if(localized){
          pieces[0] = localized;
          out.push(pieces.join(' '));
          continue;
        }
      }
      out.push(chunk);
    }
    return out.join(', ');
  }

  function rememberBlocked(detail){
    if(!detail || !detail.host) return;
    try {
      var queue = Array.isArray(window.__EBM_BLOCKED_EVENTS__) ? window.__EBM_BLOCKED_EVENTS__ : [];
      queue.push({
        h: String(detail.host || ''),
        t: String(detail.type || 'blocked'),
        s: String(detail.sample || ''),
        ts: parseInt(detail.ts || 0, 10) || Math.floor(Date.now() / 1000),
        u: String(detail.url || '')
      });
      if(queue.length > 180) queue = queue.slice(queue.length - 180);
      window.__EBM_BLOCKED_EVENTS__ = queue;
    } catch(e){}

    try {
      var evt;
      if(typeof CustomEvent === 'function') {
        evt = new CustomEvent('ebm:request-blocked', {detail: detail});
      } else if(document && document.createEvent) {
        evt = document.createEvent('CustomEvent');
        evt.initCustomEvent('ebm:request-blocked', false, false, detail);
      }
      if(evt) window.dispatchEvent(evt);
    } catch(e){}
  }

  function emitBlocked(input, type){
    var urlObj = safeUrl(input);
    if(!urlObj) return;
    var host = sanitizeHost(urlObj.hostname || '');
    if(!host || !isExternalHost(host)) return;
    rememberBlocked({
      host: host,
      type: String(type || 'blocked').replace(/[^a-z0-9_-]/gi, '').toLowerCase(),
      sample: sampleFromUrl(urlObj),
      url: String(urlObj.href || ''),
      ts: Math.floor(Date.now() / 1000),
      context: String(cfg.context || '')
    });
  }

  function emitBlockedFromSrcset(val, type){
    if(!val || typeof val !== 'string') return;
    var parts = val.split(',');
    for(var i=0;i<parts.length;i++){
      var candidate = parts[i].trim().split(/\s+/)[0] || '';
      if(candidate && shouldBlockUrl(candidate)) emitBlocked(candidate, type);
    }
  }

  function markBlocked(el, attr, value){
    try {
      if(!el || !el.setAttribute) return;
      el.setAttribute('data-ebm-blocked', '1');
      if(attr && value) el.setAttribute('data-ebm-blocked-' + attr, String(value).slice(0, 300));
    } catch(e){}
  }

  function isTargetElement(el){
    if(!el || el.nodeType !== 1 || !el.tagName) return false;
    var tag = String(el.tagName).toLowerCase();
    return tag === 'script' || tag === 'link' || tag === 'img' || tag === 'iframe' || tag === 'source';
  }

  function blockedTypeForElement(el){
    var tag = (el && el.tagName) ? String(el.tagName).toLowerCase() : 'dom';
    return 'blocked_' + tag;
  }

  function neutralizeElement(el){
    if(!isTargetElement(el)) return false;
    var tag = String(el.tagName || '').toLowerCase();
    var blockedAny = false;
    var attrs = ['src', 'href', 'srcset'];
    for(var i=0;i<attrs.length;i++){
      var attr = attrs[i];
      var val = '';
      try { val = el.getAttribute && el.getAttribute(attr) ? String(el.getAttribute(attr)) : ''; } catch(e) { val = ''; }
      if(!val) continue;
      var isBlocked = (attr === 'srcset') ? shouldBlockSrcset(val) : shouldBlockUrl(val);
      if(isBlocked){
        blockedAny = true;
        markBlocked(el, attr, val);
        if(attr === 'srcset') emitBlockedFromSrcset(val, blockedTypeForElement(el));
        else emitBlocked(val, blockedTypeForElement(el));
        var localized = (attr === 'srcset') ? rewriteSrcset(val) : resolverUrl(val);
        if(localized){
          try { el.setAttribute(attr, localized); } catch(ex){}
          blockedAny = false;
          continue;
        }
        try { el.removeAttribute(attr); } catch(e){}
      }
    }

    if(tag === 'img' || tag === 'source'){
      ['data-src', 'data-lazy-src', 'data-srcset'].forEach(function(attr){
        try {
          var val = el.getAttribute && el.getAttribute(attr) ? String(el.getAttribute(attr)) : '';
          if(!val) return;
          var isBlocked = (attr.indexOf('srcset') >= 0) ? shouldBlockSrcset(val) : shouldBlockUrl(val);
          if(isBlocked){
            blockedAny = true;
            markBlocked(el, attr, val);
            if(attr.indexOf('srcset') >= 0) emitBlockedFromSrcset(val, blockedTypeForElement(el));
            else emitBlocked(val, blockedTypeForElement(el));
            var localized = (attr.indexOf('srcset') >= 0) ? rewriteSrcset(val) : resolverUrl(val);
            if(localized){
              el.setAttribute(attr, localized);
              blockedAny = false;
              return;
            }
            el.removeAttribute(attr);
          }
        } catch(e){}
      });
    }

    if(!blockedAny) return false;
    if(tag === 'script') { try { el.type = 'application/ebm-blocked-javascript'; } catch(e){} }
    if(tag === 'iframe') { try { el.setAttribute('src', 'about:blank'); } catch(e){} }
    try { if(el.parentNode) el.parentNode.removeChild(el); } catch(e){}
    return true;
  }

  function processNode(node){
    if(!node) return;
    if(node.nodeType === 1){
      neutralizeElement(node);
      if(node.querySelectorAll){
        var items = node.querySelectorAll('script[src],link[href],img[src],img[srcset],img[data-src],img[data-lazy-src],img[data-srcset],iframe[src],source[src],source[srcset],source[data-src],source[data-srcset]');
        for(var i=0;i<items.length;i++) neutralizeElement(items[i]);
      }
      return;
    }
    if(node.nodeType === 11 && node.querySelectorAll){
      var items = node.querySelectorAll('script[src],link[href],img[src],img[srcset],img[data-src],img[data-lazy-src],img[data-srcset],iframe[src],source[src],source[srcset],source[data-src],source[data-srcset]');
      for(var j=0;j<items.length;j++) neutralizeElement(items[j]);
    }
  }

  function flushQueue(){
    queueScheduled = false;
    var batch = queued.slice(0);
    queued.length = 0;
    for(var i=0;i<batch.length;i++) processNode(batch[i]);
  }

  function scheduleNode(node){
    if(!node) return;
    queued.push(node);
    if(queueScheduled) return;
    queueScheduled = true;
    var ric = window.requestIdleCallback;
    if(typeof ric === 'function') ric(flushQueue, {timeout: 120});
    else window.setTimeout(flushQueue, 24);
  }

  function patchNodeInsertion(){
    if(!domHooks || !window.Node || !Node.prototype) return;
    ['appendChild', 'insertBefore', 'replaceChild'].forEach(function(name){
      try {
        var orig = Node.prototype[name];
        if(typeof orig !== 'function') return;
        Node.prototype[name] = function(node){
          processNode(node);
          return orig.apply(this, arguments);
        };
      } catch(e){}
    });
  }

  function patchSetAttribute(){
    if(!domHooks || !window.Element || !Element.prototype) return;
    try {
      var orig = Element.prototype.setAttribute;
      if(typeof orig !== 'function') return;
      Element.prototype.setAttribute = function(name, value){
        var attr = String(name || '').toLowerCase();
        if(isTargetElement(this)){
          var val = (value == null) ? '' : String(value);
          var should = false;
          if(attr === 'src' || attr === 'href' || attr === 'data-src' || attr === 'data-lazy-src') should = shouldBlockUrl(val);
          else if(attr === 'srcset' || attr === 'data-srcset') should = shouldBlockSrcset(val);
          if(should){
            markBlocked(this, attr, val);
            if(attr.indexOf('srcset') >= 0) emitBlockedFromSrcset(val, blockedTypeForElement(this));
            else emitBlocked(val, blockedTypeForElement(this));
            var localized = (attr.indexOf('srcset') >= 0) ? rewriteSrcset(val) : resolverUrl(val);
            if(localized){
              return orig.call(this, name, localized);
            }
            try { this.removeAttribute(attr); } catch(ex){}
            return;
          }
        }
        return orig.apply(this, arguments);
      };
    } catch(e){}
  }

  function patchProperty(proto, prop, checker, type){
    if(!domHooks || !proto) return;
    try {
      var desc = Object.getOwnPropertyDescriptor(proto, prop);
      if(!desc || !desc.set || !desc.get) return;
      Object.defineProperty(proto, prop, {
        configurable: true,
        enumerable: desc.enumerable,
        get: function(){ return desc.get.call(this); },
        set: function(v){
          if(checker(v)){
            markBlocked(this, prop.toLowerCase(), v);
            if(prop.toLowerCase() === 'srcset') emitBlockedFromSrcset(String(v || ''), type);
            else emitBlocked(String(v || ''), type);
            var localized = (prop.toLowerCase() === 'srcset') ? rewriteSrcset(String(v || '')) : resolverUrl(String(v || ''));
            if(localized){
              return desc.set.call(this, localized);
            }
            try { if(this.removeAttribute) this.removeAttribute(prop.toLowerCase()); } catch(e){}
            return v;
          }
          return desc.set.call(this, v);
        }
      });
    } catch(e){}
  }

  function patchProperties(){
    if(window.HTMLScriptElement) patchProperty(HTMLScriptElement.prototype, 'src', shouldBlockUrl, 'blocked_script');
    if(window.HTMLIFrameElement) patchProperty(HTMLIFrameElement.prototype, 'src', shouldBlockUrl, 'blocked_iframe');
    if(window.HTMLImageElement){
      patchProperty(HTMLImageElement.prototype, 'src', shouldBlockUrl, 'blocked_img');
      patchProperty(HTMLImageElement.prototype, 'srcset', shouldBlockSrcset, 'blocked_img');
    }
    if(window.HTMLSourceElement){
      patchProperty(HTMLSourceElement.prototype, 'src', shouldBlockUrl, 'blocked_source');
      patchProperty(HTMLSourceElement.prototype, 'srcset', shouldBlockSrcset, 'blocked_source');
    }
    if(window.HTMLLinkElement) patchProperty(HTMLLinkElement.prototype, 'href', shouldBlockUrl, 'blocked_link');
  }

  function patchXHR(){
    try {
      var origOpen = XMLHttpRequest.prototype.open;
      var origSend = XMLHttpRequest.prototype.send;
      XMLHttpRequest.prototype.open = function(method, url){
        this.__ebmBlocked = shouldBlockUrl(url);
        this.__ebmBlockedUrl = url || '';
        if(this.__ebmBlocked){
          emitBlocked(String(url || ''), 'blocked_xhr');
          var localized = resolverUrl(String(url || ''));
          if(localized){
            arguments[1] = localized;
            this.__ebmBlocked = false;
            return origOpen.apply(this, arguments);
          }
          return;
        }
        return origOpen.apply(this, arguments);
      };
      XMLHttpRequest.prototype.send = function(){
        if(this.__ebmBlocked){
          try { this.dispatchEvent(new Event('error')); } catch(e){}
          try { this.dispatchEvent(new Event('loadend')); } catch(e){}
          return;
        }
        return origSend.apply(this, arguments);
      };
    } catch(e){}
  }

  function patchFetch(){
    try {
      if(!window.fetch) return;
      var origFetch = window.fetch;
      window.fetch = function(input){
        var u = '';
        try { u = (typeof input === 'string') ? input : ((input && input.url) ? input.url : ''); } catch(e) {}
        if(shouldBlockUrl(u)){
          emitBlocked(String(u || ''), 'blocked_fetch');
          var localized = resolverUrl(String(u || ''));
          if(localized){
            if(typeof input === 'string') arguments[0] = localized;
            else if(input && typeof Request === 'function' && input instanceof Request) arguments[0] = new Request(localized, input);
            return origFetch.apply(this, arguments);
          }
          return Promise.reject(new TypeError('Failed to fetch'));
        }
        return origFetch.apply(this, arguments);
      };
    } catch(e){}
  }

  function observeMutations(){
    if(!window.MutationObserver) return;
    try {
      var root = (observerRoot === 'document') ? (document.documentElement || document) : (document.body || document.head || document.documentElement || document);
      var mo = new MutationObserver(function(muts){
        for(var i=0;i<muts.length;i++){
          var m = muts[i];
          if(m.type === 'childList' && m.addedNodes){
            for(var j=0;j<m.addedNodes.length;j++) scheduleNode(m.addedNodes[j]);
          } else if(m.type === 'attributes' && m.target && isTargetElement(m.target)) {
            scheduleNode(m.target);
          }
        }
      });
      mo.observe(root, {childList:true, subtree:true, attributes:true, attributeFilter:['src', 'href', 'srcset', 'data-src', 'data-lazy-src', 'data-srcset']});
    } catch(e){}
  }

  function scanExisting(){
    try {
      if(initialScanScope === 'document') {
        processNode(document.documentElement || document);
        return;
      }
      if(document.head) processNode(document.head);
      if(document.body) processNode(document.body);
      else processNode(document.documentElement || document);
    } catch(e){}
  }

  patchNodeInsertion();
  patchSetAttribute();
  patchProperties();
  patchXHR();
  patchFetch();
  observeMutations();
  scanExisting();
  if(document.readyState === 'loading') document.addEventListener('DOMContentLoaded', scanExisting, {once:true});
  else window.setTimeout(scanExisting, 50);
})();
</script>
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

	<!-- This site is optimized with the Yoast SEO Premium plugin v28.0 (Yoast SEO v28.1) - https://yoast.com/product/yoast-seo-premium-wordpress/ -->
	<title>آکورد ابی با قابلیت تعویض گام آنلاین برای گیتار - صفحه 2 از 6 - پارس گیتار</title>
	<meta name="description" content="آکوردهای ابی با قابلیت تعویض گام به صورت آنلاین و دریافت PDF به صورت رایگان ، همچنین آکوردهای ابی دارای آموزش ریتم و آکورد هستند." />
	<link rel="canonical" href="https://parsguitar.com/vocalist/ا/ابی/page/2/" />
	<link rel="prev" href="https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" />
	<link rel="next" href="https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/page/3/" />
	<meta property="og:locale" content="fa_IR" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="بایگانی‌های ابی" />
	<meta property="og:description" content="آکوردهای ابی با قابلیت تعویض گام به صورت آنلاین و دریافت PDF به صورت رایگان ، همچنین آکوردهای ابی دارای آموزش ریتم و آکورد هستند." />
	<meta property="og:url" content="https://parsguitar.com/vocalist/ا/ابی/" />
	<meta property="og:site_name" content="پارس گیتار" />
	<meta name="twitter:card" content="summary_large_image" />
	<meta name="twitter:site" content="@parsguitar" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"CollectionPage","@id":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/","url":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2\/","name":"آکورد ابی با قابلیت تعویض گام آنلاین برای گیتار - صفحه 2 از 6 - پارس گیتار","isPartOf":{"@id":"https:\/\/parsguitar.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2\/#primaryimage"},"image":{"@id":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2\/#primaryimage"},"thumbnailUrl":"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1.jpg","description":"آکوردهای ابی با قابلیت تعویض گام به صورت آنلاین و دریافت PDF به صورت رایگان ، همچنین آکوردهای ابی دارای آموزش ریتم و آکورد هستند.","breadcrumb":{"@id":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2\/#breadcrumb"},"inLanguage":"fa-IR"},{"@type":"ImageObject","inLanguage":"fa-IR","@id":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2\/#primaryimage","url":"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1.jpg","contentUrl":"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1.jpg","width":550,"height":550},{"@type":"BreadcrumbList","@id":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"خانه","item":"https:\/\/parsguitar.com\/"},{"@type":"ListItem","position":2,"name":"ا","item":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/"},{"@type":"ListItem","position":3,"name":"ابی"}]},{"@type":"WebSite","@id":"https:\/\/parsguitar.com\/#website","url":"https:\/\/parsguitar.com\/","name":"پارس گیتار","description":"آموزش تخصصی گیتار","publisher":{"@id":"https:\/\/parsguitar.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/parsguitar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fa-IR"},{"@type":"Organization","@id":"https:\/\/parsguitar.com\/#organization","name":"پارس گیتار","url":"https:\/\/parsguitar.com\/","logo":{"@type":"ImageObject","inLanguage":"fa-IR","@id":"https:\/\/parsguitar.com\/#\/schema\/logo\/image\/","url":"https:\/\/parsguitar.com\/wp-content\/uploads\/2017\/11\/retina-logo.png","contentUrl":"https:\/\/parsguitar.com\/wp-content\/uploads\/2017\/11\/retina-logo.png","width":777,"height":302,"caption":"پارس گیتار"},"image":{"@id":"https:\/\/parsguitar.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/parsguitar.ir\/","https:\/\/x.com\/parsguitar","https:\/\/www.instagram.com\/parsguitar.ir\/","https:\/\/www.youtube.com\/channel\/UCUYumYwBxi7Vaz9ex4jtHBA"]}]}</script>
	<!-- / Yoast SEO Premium plugin. -->


<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<link rel='stylesheet' id='dokan-shipping-block-checkout-support-css' href='https://parsguitar.com/wp-content/plugins/dokan-pro/assets/blocks/shipping/index.css?ver=9799136811508b406b2e' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){margin-left: auto !important;margin-right: auto !important;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: none;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-icon svg){width: 24px;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */
</style>
<link rel='stylesheet' id='advanced-speed-optimizer-css' href='https://parsguitar.com/wp-content/plugins/advanced-speed-optimizer/public/css/advanced-speed-optimizer-public.css?ver=1.1.5' media='all' />
<link rel='stylesheet' id='digits-style-css' href='https://parsguitar.com/wp-content/plugins/digits/assets/css/main.css?ver=9.2' media='all' />
<style id="digits-style-inline-css">

                #woocommerce-order-data .address p:nth-child(3) a,.woocommerce-customer-details--phone{
                    text-align:right;
                    }
/*# sourceURL=digits-style-inline-css */
</style>
<link rel='stylesheet' id='digits-login-style-rtl-css' href='https://parsguitar.com/wp-content/plugins/digits/assets/css/login-rtl.css?ver=9.2' media='all' />
<link rel='stylesheet' id='studiare-plugn-css' href='https://parsguitar.com/wp-content/plugins/studiare-core/assets/css/plugin.css?ver=7.0.3' media='all' />
<link rel='stylesheet' id='swiper-css-css' href='https://parsguitar.com/wp-content/plugins/studiare-core/assets/css/swiper.min.css?ver=7.0.3' media='all' />
<style id="woocommerce-inline-inline-css">
.woocommerce form .form-row .required { visibility: visible; }
/*# sourceURL=woocommerce-inline-inline-css */
</style>
<link rel='stylesheet' id='dokan-style-css' href='https://parsguitar.com/wp-content/plugins/dokan-lite/assets/css/style.css?ver=1784914676' media='all' />
<link rel='stylesheet' id='dokan-modal-css' href='https://parsguitar.com/wp-content/plugins/dokan-lite/assets/vendors/izimodal/iziModal.min.css?ver=1784914676' media='all' />
<link rel='stylesheet' id='dokan-fontawesome-css' href='https://parsguitar.com/wp-content/plugins/dokan-lite/assets/vendors/font-awesome/css/font-awesome.min.css?ver=5.0.10' media='all' />
<link rel='stylesheet' id='dokan-rtl-style-css' href='https://parsguitar.com/wp-content/plugins/dokan-lite/assets/css/rtl.css?ver=5.0.10' media='all' />
<link rel='stylesheet' id='my-theme-style-css' href='https://parsguitar.com/wp-content/themes/studiare/css/all.css?ver=1.0.0' media='all' />
<link rel='stylesheet' id='font-awesome-pro-css' href='https://parsguitar.com/wp-content/themes/studiare/css/fontawesome.min.css?ver=7.0.3' media='all' />
<link rel='stylesheet' id='irani-fonts-css' href='https://parsguitar.com/wp-content/themes/studiare/css/irani-fonts.css?ver=7.0.3' media='all' />
<link rel='stylesheet' id='experts-css' href='https://parsguitar.com/wp-content/themes/studiare/css/experts.css?ver=7.0.3' media='all' />
<link rel='stylesheet' id='studiare-plus-rtl-css' href='https://parsguitar.com/wp-content/themes/studiare/css/rtl.css?ver=7.0.3' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='https://parsguitar.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://parsguitar.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.0' media='all' />
<link rel='stylesheet' id='elementor-post-46908-css' href='https://parsguitar.com/wp-content/uploads/elementor/css/post-46908.css?ver=1787069818' media='all' />
<link rel='stylesheet' id='wd-style-base-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/base-rtl.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-helpers-wpb-elem-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/helpers-wpb-elem.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-woo-dokan-vend-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/int-woo-dokan-vend.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-elementor-base-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/int-elem-base-rtl.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-woocommerce-base-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/woocommerce-base-rtl.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-mod-star-rating-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/mod-star-rating.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-woocommerce-block-notices-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/woo-mod-block-notices-rtl.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-woo-opt-hide-larger-price-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/woo-opt-hide-larger-price.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='wd-wp-blocks-css' href='https://parsguitar.com/wp-content/themes/studiare/css/parts/wp-blocks.min.css?ver=Version' media='all' />
<link rel='stylesheet' id='xts-style-default_header-css' href='https://parsguitar.com/wp-content/uploads/2026/08/xts-default_header-1785996485.css?ver=11.2' media='all' />
<link rel='stylesheet' id='xts-style-theme_settings_default-css' href='https://parsguitar.com/wp-content/uploads/2026/08/xts-theme_settings_default-1786023387.css?ver=11.2' media='all' />
<link rel='stylesheet' id='wpc-filter-everything-css' href='https://parsguitar.com/wp-content/plugins/filter-everything-pro/assets/css/filter-everything.min.css?ver=1.9.2.2' media='all' />
<link rel='stylesheet' id='wpc-filter-everything-custom-css' href='https://parsguitar.com/wp-content/uploads/cache/filter-everything/70d793d691bdc922dadb62a85362c56c.css?ver=7.0.3' media='all' />
<script id="jquery-core-js-extra">
var xlwcty = {"ajax_url":"https://parsguitar.com/wp-admin/admin-ajax.php","version":"2.24.0","wc_version":"10.9.4"};
//# sourceURL=jquery-core-js-extra
</script>
<script id="jquery-core-js" src="https://parsguitar.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
<script id="wp-hooks-js" src="https://parsguitar.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script>
<script id="wp-i18n-js" src="https://parsguitar.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'rtl' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="dokan-modal-js" src="https://parsguitar.com/wp-content/plugins/dokan-lite/assets/vendors/izimodal/iziModal.min.js?ver=5.0.10"></script>
<script id="dokan-sweetalert2-js" src="https://parsguitar.com/wp-content/plugins/dokan-lite/assets/vendors/sweetalert2/sweetalert2.all.min.js?ver=1784914676"></script>
<script id="moment-js" src="https://parsguitar.com/wp-includes/js/dist/vendor/moment.min.js?ver=2.30.1"></script>
<script id="moment-js-after">
moment.updateLocale( 'fa_IR', {"months":["\u0698\u0627\u0646\u0648\u06cc\u0647","\u0641\u0648\u0631\u06cc\u0647","\u0645\u0627\u0631\u0633","\u0622\u0648\u0631\u06cc\u0644","\u0645\u06cc","\u0698\u0648\u0626\u0646","\u062c\u0648\u0644\u0627\u06cc","\u0622\u06af\u0648\u0633\u062a","\u0633\u067e\u062a\u0627\u0645\u0628\u0631","\u0627\u06a9\u062a\u0628\u0631","\u0646\u0648\u0627\u0645\u0628\u0631","\u062f\u0633\u0627\u0645\u0628\u0631"],"monthsShort":["\u0698\u0627\u0646\u0648\u06cc\u0647","\u0641\u0648\u0631\u06cc\u0647","\u0645\u0627\u0631\u0633","\u0622\u0648\u0631\u06cc\u0644","\u0645\u0647","\u0698\u0648\u0626\u0646","\u062c\u0648\u0644\u0627\u06cc","\u0622\u06af\u0648\u0633\u062a","\u0633\u067e\u062a\u0627\u0645\u0628\u0631","\u0627\u06a9\u062a\u0628\u0631","\u0646\u0648\u0627\u0645\u0628\u0631","\u062f\u0633\u0627\u0645\u0628\u0631"],"weekdays":["\u06cc\u06a9\u0634\u0646\u0628\u0647","\u062f\u0648\u0634\u0646\u0628\u0647","\u0633\u0647\u200c\u0634\u0646\u0628\u0647","\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647","\u067e\u0646\u062c\u200c\u0634\u0646\u0628\u0647","\u062c\u0645\u0639\u0647","\u0634\u0646\u0628\u0647"],"weekdaysShort":["\u06cc","\u062f","\u0633","\u0686","\u067e","\u062c","\u0634"],"week":{"dow":6},"longDateFormat":{"LT":"H:i","LTS":null,"L":null,"LL":"j F Y","LLL":"F j, Y g:i a","LLLL":null}} );
//# sourceURL=moment-js-after
</script>
<script id="dokan-util-helper-js-extra">
var dokan_helper = {"i18n_date_format":"j F Y","i18n_time_format":"H:i","week_starts_day":"6","reverse_withdrawal":{"enabled":false},"timepicker_locale":{"am":"am","pm":"pm","AM":"AM","PM":"PM","hr":"hr","hrs":"hrs","mins":"mins"},"daterange_picker_local":{"toLabel":"\u0628\u0647","firstDay":6,"fromLabel":"\u0627\u0632","separator":" - ","weekLabel":"W","applyLabel":"\u0627\u0639\u0645\u0627\u0644","cancelLabel":"\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646","customRangeLabel":"\u0633\u0641\u0627\u0631\u0634\u06cc","daysOfWeek":["Su","Mo","Tu","We","Th","Fr","Sa"],"monthNames":["January","February","March","\u0622\u067e\u0631\u06cc\u0644","\u0645\u0650\u06cc","\u0698\u0648\u0626\u0646","\u062c\u0648\u0644\u0627\u06cc","\u0622\u06af\u0648\u0633\u062a","\u0633\u067e\u062a\u0627\u0645\u0628\u0631","\u0627\u06a9\u062a\u0628\u0631","\u0646\u0648\u0627\u0645\u0628\u0631","\u062f\u0633\u0627\u0645\u0628\u0631"]},"sweetalert_local":{"cancelButtonText":"\u0644\u063a\u0648","closeButtonText":"\u0628\u0633\u062a\u0646","confirmButtonText":"\u0628\u0633\u06cc\u0627\u0631 \u062e\u0648\u0628","denyButtonText":"No","closeButtonAriaLabel":"\u0627\u06cc\u0646 \u062f\u06cc\u0627\u0644\u0648\u06af \u0631\u0627 \u0628\u0628\u0646\u062f\u06cc\u062f"}};
var dokan = {"ajaxurl":"https://parsguitar.com/wp-admin/admin-ajax.php","nonce":"055e10e963","order_nonce":"485fa4f579","product_edit_nonce":"91d2e503db","ajax_loader":"https://parsguitar.com/wp-content/plugins/dokan-lite/assets/images/ajax-loader.gif","seller":{"available":"\u0645\u0648\u062c\u0648\u062f","notAvailable":"\u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a"},"delete_confirm":"\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f\u061f","wrong_message":"\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0634\u062f. \u062f\u0648\u0628\u0627\u0631\u0647 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f.","vendor_percentage":"","commission_type":"","rounding_precision":"6","mon_decimal_point":".","currency_format_num_decimals":"0","currency_format_symbol":"\u062a\u0648\u0645\u0627\u0646","currency_format_decimal_sep":".","currency_format_thousand_sep":",","currency_format":"%v%s","round_at_subtotal":"yes","product_types":{"simple":"\u0633\u0627\u062f\u0647","variable":"\u0645\u062a\u063a\u06cc\u0631","external":"External/Affiliate product","grouped":"\u0645\u062d\u0635\u0648\u0644 \u06af\u0631\u0648\u0647"},"loading_img":"https://parsguitar.com/wp-content/plugins/dokan-lite/assets/images/loading.gif","store_product_search_nonce":"c7dc4d478d","i18n_download_permission":"\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0627\u0646\u0644\u0648\u062f \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f\u061f","i18n_download_access":"\u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u062f\u0633\u062a\u0631\u0633\u06cc \u0631\u0627 \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f - \u06a9\u0627\u0631\u0628\u0631 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0642\u0628\u0644\u0627 \u0645\u062c\u0648\u0632 \u0627\u06cc\u0646 \u0641\u0627\u06cc\u0644 \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u062f \u06cc\u0627 \u0627\u06cc\u0645\u06cc\u0644 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628 \u062a\u0646\u0638\u06cc\u0645 \u0646\u0634\u062f\u0647 \u0628\u0627\u0634\u062f. \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062d\u0627\u0635\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628 \u062a\u0646\u0638\u06cc\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0648 \u0633\u0641\u0627\u0631\u0634 \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a.","maximum_tags_select_length":"-1","modal_header_color":"#9c2c33","allow_shipment":"","wc_shipping_enabled":"1","has_shipment_func":"1","i18n_location_name":"Please provide a location name!","i18n_location_state":"Please provide","i18n_country_name":"Please provide a country!","i18n_invalid":"Failed! Somthing went wrong","i18n_chat_message":"Facebook SDK is not found, or blocked by the browser. Can not initialize the chat.","i18n_sms_code":"Insert SMS code","i18n_gravater":"Upload a Photo","i18n_phone_number":"Insert Phone No.","dokan_pro_i18n":{"dokan":{"domain":"dokan","locale_data":{"dokan":{"":{"domain":"dokan","lang":"fa_IR","plural_forms":"nplurals=1; plural=0;"}," (%d)":[" (%d)"]," ) between bookings":[") \u0628\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0627\u0631\u062f"]," Edit":[" \u0648\u06cc\u0631\u0627\u06cc\u0634"]," Export CSV":[" \u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc CSV"]," Per-item coupons will only work if the item is not on sale. Per-cart coupons will only work if there are no sale items in the cart.":["\u0647\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062a\u0646\u0647\u0627 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0627\u0631 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u06a9\u0647 \u0642\u06cc\u0645\u062a \u0645\u062d\u0635\u0648\u0644 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0628\u062f\u0648\u0646 \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627\u0634\u062f. \u0647\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0632\u0645\u0627\u0646\u06cc \u06a9\u0627\u0631 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0622\u0646 \u0645\u062d\u0635\u0648\u0644\u06cc \u06a9\u0647 \u0642\u06cc\u0645\u062a \u0622\u0646 \u0627\u0632 \u0642\u0628\u0644 \u062a\u062e\u0641\u06cc\u0641 \u062e\u0648\u0631\u062f\u0647 \u060c \u0646\u0628\u0627\u0634\u062f."]," See More":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u06cc\u0634\u062a\u0631"]," Write a Review ":["\u0627\u0631\u0633\u0627\u0644 \u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc"]," You Earn : ":[" \u062f\u0631\u0622\u0645\u062f \u0634\u0645\u0627: "]," and Variation":["\u0648 \u0645\u062a\u063a\u06cc\u0631"]," via ":["\u0627\u0632 \u0637\u0631\u064a\u0642"],"\"%s\" sent you a message from your \"%s\" store":["\"%s\" \u0628\u0631\u0627\u06cc \u0634\u0645\u0627 \u06cc\u06a9 \u067e\u06cc\u0627\u0645 \u0627\u0632 \u0641\u0631\u0648\u0634\u06af\u0627\u0647  \"%s\" \u0627\u0631\u0633\u0627\u0644 \u06a9\u0631\u062f"],"\"%s\" separate terms":["\"%s\" \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0642\u0648\u0627\u0646\u06cc\u0646 \u062c\u062f\u0627\u06af\u0627\u0646\u0647"],"\"{product_title}\" has been cancelled":["\"{product_title}\" \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a "],"# of persons":["\u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f"],"#%s &ndash; Variation SKU must be unique.":["#%s \u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u063a\u06cc\u0631 \u0628\u0627\u06cc\u062f \u06cc\u06a9\u062a\u0627 \u0628\u0627\u0634\u062f."],"% Profile complete":["% \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f"],"%d orders checked out of %d":["%d \u0628\u0631\u0631\u0633\u06cc \u0633\u0641\u0627\u0631\u0634\u062a\u0627\u062a \u0627\u0632 %d"],"%d orders sync completed out of %d":["%d \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u06a9\u0627\u0645\u0644\u0627 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0634\u062f %d"],"%s":["%s"],"%s &#8220;%s&#8221; already exists.":["%s &#8220;%s&#8221; \u062f\u0631\u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f."],"%s - Order %s":["%s - \u0633\u0641\u0627\u0631\u0634  %s"],"%s / %s":["%s / %s"],"%s / &infin;":["%s / &infin;"],"%s Discount":["%s \u062a\u062e\u0641\u06cc\u0641"],"%s ago":["%s \u067e\u06cc\u0634"],"%s average daily sales":["%s \u0645\u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634 \u0631\u0648\u0632\u0627\u0646\u0647"],"%s charged for shipping":["%s \u0634\u0627\u0631\u0698 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"%s customer review":["\u202b%s \u062f\u06cc\u062f\u06af\u0627\u0647 \u0645\u0634\u062a\u0631\u06cc"],"%s items purchased":["%s \u0627\u0642\u0644\u0627\u0645 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u0634\u062f\u0647"],"%s orders placed":["%s \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647"],"%s product imported":["%s \u0645\u062d\u0635\u0648\u0644 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0634\u062f"],"%s product updated":["%s \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0634\u062f"],"%s product was skipped":["%s \u0645\u062d\u0635\u0648\u0644 \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0634\u062f"],"%s sales in this period":["%s \u0641\u0631\u0648\u0634 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"%s worth of coupons used":["\u0645\u0642\u062f\u0627\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 %s"],"%s: %d":["%s: %d"],"%s: %s":["%s: %s"],"&laquo;":["&\u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a;"],"&laquo; Previous":["&laquo; \u0642\u0628\u0644\u06cc"],"&larr; Back to Zone List":["&larr; \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0644\u06cc\u0633\u062a \u0645\u0646\u0637\u0642\u0647"],"&larr; Previous":["&larr; \u0642\u0628\u0644\u06cc"],"&nbsp; Edit":["&nbsp; \u0648\u06cc\u0631\u0627\u06cc\u0634"],"&raquo;":["&\u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a;"],"( Get your App ID )":["( \u062f\u0631\u06cc\u0627\u0641\u062a \u0634\u0646\u0627\u0633\u0647 \u0627\u067e \u0634\u0645\u0627 )"],"( Get your App Secret )":["( \u062f\u0631\u06cc\u0627\u0641\u062a \u0633\u06cc\u06a9\u0631\u062a \u0627\u067e \u0634\u0645\u0627 )"],"( Invalid order )":["( \u0633\u0641\u0627\u0631\u0634 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 )"],"(Adding reply will re-open the ticket)":["(\u0627\u0631\u0633\u0627\u0644 \u067e\u0627\u0633\u062e \u0628\u0639\u062b \u0628\u0627\u0632 \u0634\u062f\u0646 \u0645\u062c\u062f\u062f \u062a\u06cc\u06a9\u062a \u062e\u0648\u0627\u0647\u062f \u0634\u062f)"],"(No Name)":["(\u0628\u062f\u0648\u0646 \u0646\u0627\u0645)"],"(no name)":["(\u0628\u062f\u0648\u0646 \u0646\u0627\u0645)"],")":[")"],"+ Add a category":["+ \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"+ Add product images":["+ \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0627\u0648\u06cc\u0631 \u0645\u062d\u0635\u0648\u0644"],"- Select a category -":["- \u0627\u0646\u062a\u062e\u0627\u0628 \u06af\u0631\u0648\u0647 -"],"- select -":["- \u0627\u0646\u062a\u062e\u0627\u0628 -"],"-- Change Status --":["-- \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a --"],"-- Select --":["-- \u0627\u0646\u062a\u062e\u0627\u0628 --"],"-- Select a pack --":["-- \u06cc\u06a9 \u067e\u06a9 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f --"],"--Select Country--":["--\u06a9\u0634\u0648\u0631 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f--"],"--Select State--":["- \u06cc\u06a9 \u0627\u0633\u062a\u0627\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f-"],"-None-":["-\u0647\u06cc\u0686-"],"0":["0"],"0.00":["0.00"],"1":["3"],"\u003Cb\u003EAuction Integration \u003C/b\u003E requires %sWooCommerce Simple Auctions plugin%s to be installed & activated first !":["\u003Cb\u003E\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u062d\u0631\u0627\u062c\u003C/b\u003E \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u06a9\u0647 \u0627\u0641\u0632\u0648\u0646\u0647  %sWooCommerce Simple Auctions %s \u0646\u0635\u0628 \u0648 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062f !"],"\u003Cb\u003EDokan WC Booking \u003C/b\u003E requires %sWooCommerce Bookings plugin%s to be installed & activated!":["\u003Cb\u003E\u0631\u0632\u0631\u0648 \u0648\u0648\u06a9\u0627\u0645\u0631\u0633 \u062f\u06a9\u0627\u0646 \u003C/b\u003E\u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u06a9\u0647 \u0627\u0641\u0632\u0648\u0646\u0647 %sWooCommerce Bookings %s \u0646\u0635\u0628 \u0648 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062f!"],"\u003Cdiv class=\"pack_data_option\"\u003E\u003Cstrong\u003E%d\u003C/strong\u003E Products \u003Cbr /\u003E":["\u003Cdiv class=\"pack_data_option\"\u003E\u062d\u062f \u0627\u06a9\u062b\u0631 \u062a\u0627 \u003Cstrong\u003E%d\u003C/strong\u003E \u0645\u062d\u0635\u0648\u0644\u003Cbr /\u003E"],"\u003Cem\u003Eor\u003C/em\u003E enter the path to a CSV file on your server:":["\u003Cem\u003E\u06cc\u0627\u003C/em\u003E \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u0645\u0633\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u062f\u0631 \u0633\u0631\u0648\u0631 \u062e\u0648\u062f: "],"\u003Ci\u003EThis user already has recurring pack assigned. Are you sure to assign a new normal pack to the user? If you do so, the existing recurring plan will be replaced with the new one\u003Ci\u003E":["\u003Ci\u003E \u0627\u06cc\u0646 \u06a9\u0627\u0631\u0628\u0631 \u062f\u0627\u0631\u0627\u06cc \u067e\u06a9 \u067e\u06a9 \u0627\u0633\u062a. \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u06cc\u06a9 \u067e\u06a9 \u062c\u062f\u06cc\u062f \u0631\u0627 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0647\u06cc\u062f\u061f \u0627\u06af\u0631 \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f\u060c \u067e\u06a9 \u0645\u0648\u062c\u0648\u062f\u060c \u0628\u0627 \u06cc\u06a9 \u0645\u0648\u0631\u062f \u062c\u062f\u06cc\u062f \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062e\u0648\u0627\u0647\u062f \u0634\u062f\u003Ci\u003E"],"\u003Cp\u003E\u003Cb\u003ETo Verify your Email \u003Ca href='%s'\u003EClick Here\u003C/a\u003E\u003C/b\u003E\u003C/p\u003E":["\u003Cp\u003E\u003Cb\u003E\u0628\u0631\u0627\u06cc \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u003Ca href='%s'\u003E\u0627\u06cc\u0646\u062c\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f\u003C/a\u003E\u003C/b\u003E\u003C/p\u003E"],"A booking has been made by %s and is awaiting your approval. The details of this booking are as follows:":["\u0631\u0632\u0631\u0648 \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a \u062a\u0648\u0633\u0637 %s \u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0627\u06cc\u06cc\u062f. \u062c\u0632\u0626\u06cc\u0627\u062a \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648\u060c \u0639\u0628\u0627\u0631\u062a\u0646\u062f \u0627\u0632:"],"A new announcement is made at - {site_name}":["\u06cc\u06a9 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u062c\u062f\u06cc\u062f \u062f\u0631 \u0633\u0627\u06cc\u062a {site_name} \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0627\u0633\u062a"],"A new auction product is submitted to your site":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u062c\u062f\u06cc\u062f \u0628\u0647 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f"],"A new booking has been made by %s. The details of this booking are as follows:":["\u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 %s.\u0627\u0646\u062c\u0627\u0645 \u0634\u062f\u0647 \u0634\u0631\u062d \u06a9\u0627\u0645\u0644 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0631\u0632\u0631\u0648:"],"A new product is submitted to your site.":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u0628\u0647 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a."],"A new reply was made in the ticket ":["\u06cc\u06a9 \u067e\u0627\u0633\u062e \u062c\u062f\u06cc\u062f \u062f\u0631 \u062a\u06cc\u06a9\u062a \u0627\u0646\u062c\u0627\u0645 \u0634\u062f "],"A product has been updated in your site.":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a."],"A product with this ID already exists.":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0627\u06cc\u0646 \u0634\u0646\u0627\u0633\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. "],"A product with this SKU already exists.":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0627\u06cc\u0646 \u0645\u0648\u062c\u0648\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. "],"A shipping zone is a geographic region where a certain set of shipping methods are offered. We will match a customer to a single zone using their shipping address and present the shipping methods within that zone to them.":["\u06cc\u06a9 \u0646\u0627\u062d\u06cc\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06cc\u06a9 \u0645\u0646\u0637\u0642\u0647 \u062c\u063a\u0631\u0627\u0641\u06cc\u0627\u06cc\u06cc \u0627\u0633\u062a \u06a9\u0647 \u0645\u062c\u0645\u0648\u0639\u0647\u200c\u0627\u06cc \u0627\u0632 \u0631\u0648\u0634\u200c\u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0631 \u0622\u0646 \u0627\u0631\u0627\u0626\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f. \u0645\u0627 \u06cc\u06a9 \u0645\u0634\u062a\u0631\u06cc \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u0645\u0646\u0637\u0642\u0647 \u0648\u0627\u062d\u062f \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0622\u062f\u0631\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644\u0634 \u0645\u0637\u0627\u0628\u0642\u062a \u062e\u0648\u0627\u0647\u06cc\u0645 \u062f\u0627\u062f \u0648 \u0631\u0648\u0634\u200c\u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u062f\u0631 \u0622\u0646\u200c \u0645\u0646\u0637\u0642\u0647 \u0628\u0647 \u0622\u0646\u200c\u0647\u0627 \u0627\u0631\u0627\u0626\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u0645."],"A subscription has been removed from your cart. Due to payment gateway restrictions, products and subscriptions can not be purchased at the same time.":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0627\u0632 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0634\u0645\u0627 \u062d\u0630\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a. \u0628\u0627 \u062a\u0648\u062c\u0647 \u0628\u0647 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631\u0648\u0627\u0632\u0647\u060c \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0648 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0647\u0627 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u06cc\u06a9 \u0632\u0645\u0627\u0646 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f."],"A support request has been made by customer on your store ":["\u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a "],"API Credentials":["\u0627\u0639\u062a\u0628\u0627\u0631 API"],"API Key":["\u06a9\u0644\u06cc\u062f API:"],"API Password":["\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 API"],"API Secret":["\u06a9\u0644\u06cc\u062f API Secret"],"API Signature":["\u0627\u0645\u0636\u0627 API"],"API Username":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc API"],"Above Product Tab":["\u0632\u06cc\u0631 \u0632\u0628\u0627\u0646\u0647 \u0645\u062d\u0635\u0648\u0644"],"Above Single Product Tabs":["\u0628\u0627\u0644\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u0628 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u06a9\u06cc"],"Accepted":["\u067e\u0630\u06cc\u0631\u0641\u062a\u0647 \u0634\u062f\u0647"],"Access Denied":["\u0627\u0645\u06a9\u0627\u0646 \u062f\u0633\u062a\u0631\u0633\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"Access Expires":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc"],"Account SID":["SID \u062d\u0633\u0627\u0628"],"Action":["\u0627\u0646\u062c\u0627\u0645"],"Actions":["\u0627\u0639\u0645\u0627\u0644"],"Activate":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc"],"Activate this plugin":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u0627\u06cc\u0646 \u067e\u0644\u0627\u06af\u06cc\u0646"],"Activated":["\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Activating":["\u062f\u0631 \u062d\u0627\u0644 \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc"],"Active":["\u0641\u0639\u0627\u0644 "],"Active Gateway":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062f\u0631\u0648\u0627\u0632\u0647"],"Active Vendors":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0641\u0639\u0627\u0644"],"Add %s profile link to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 %s \u0644\u06cc\u0646\u06a9 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0631\u0627\u06cc \u0628\u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s%% \u062f\u0631\u0635\u062f \u067e\u06cc\u0634\u0631\u0641\u062a"],"Add Announcement":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"Add Banner to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u0646\u0631 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"Add Bookable product":["\u0631\u0632\u0631\u0648 \u0648\u0627\u062d\u062f \u0627\u0642\u0627\u0645\u062a\u06cc "],"Add Booking Product":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"Add Coupon":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Add File":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644"],"Add Location":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0645\u06a9\u0627\u0646"],"Add Map location to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0646\u0642\u0634\u0647 \u0645\u062d\u0644 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"Add New":["\u0627\u0641\u0632\u0648\u062f\u0646(\u0634\u063a\u0644)"],"Add New Announcement":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u062c\u062f\u06cc\u062f"],"Add New Auction Product":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u0645\u0632\u0627\u06cc\u062f\u0647 \u0627\u06cc "],"Add New Booking Product":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648 "],"Add New Staff":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0631\u0645\u0646\u062f \u062c\u062f\u06cc\u062f"],"Add New Topic":["\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0633\u062a \u062c\u062f\u06cc\u062f"],"Add New review":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0646\u0638\u0631 \u062c\u062f\u06cc\u062f "],"Add Person Type":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0646\u0648\u0639 \u0627\u0641\u0631\u0627\u062f"],"Add Phone to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0644\u0641\u0646 \u0628\u0631\u0627\u06cc \u0628\u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s%% \u062f\u0631\u0635\u062f\u067e\u06cc\u0634\u0631\u0641\u062a"],"Add Profile Picture to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s%% \u062f\u0631\u0635\u062f \u067e\u06cc\u0634\u0631\u0641\u062a."],"Add Range":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u062f\u0648\u062f\u0647"],"Add Reply":["\u067e\u0627\u0633\u062e \u062f\u0627\u062f\u0646"],"Add Shipping Method":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Add Shipping Methods":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Add Store Name to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"Add Variation":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"Add a Payment method to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0631\u0648\u0634 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"Add address to gain %s%% progress":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0622\u062f\u0631\u0633 %s \u0631\u0627 \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"Add attribute":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc"],"Add auction Product":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c"],"Add auction product":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c"],"Add booking product":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u0632\u0631\u0648 \u0645\u062d\u0635\u0648\u0644"],"Add gallery image":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06af\u0627\u0644\u0631\u06cc \u0639\u06a9\u0633"],"Add new":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06cc\u06a9 \u0645\u0648\u0631\u062f \u062c\u062f\u06cc\u062f"],"Add new Coupon":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062c\u062f\u06cc\u062f"],"Add new Resource":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u06cc\u0644\u0628\u0648\u0631\u062f \u062c\u062f\u06cc\u062f "],"Add new staff":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0631\u0645\u0646\u062f \u062c\u062f\u06cc\u062f"],"Add the countries you deliver your products to. You can specify states as well. If the shipping price is same except some countries/states, there is an option \u003Cstrong\u003EEverywhere Else\u003C/strong\u003E, you can use that.":["\u06a9\u0634\u0648\u0631\u0647\u0627\u06cc\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0622\u0646\u0647\u0627 \u0639\u0631\u0636\u0647 \u0645\u06cc \u06a9\u0646\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f \u0634\u0645\u0627 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0648\u0644\u062a \u0647\u0627 \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f. \u0627\u06af\u0631 \u0642\u06cc\u0645\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0647 \u062c\u0632 \u0628\u0631\u062e\u06cc \u06a9\u0634\u0648\u0631\u0647\u0627 / \u0627\u06cc\u0627\u0644\u062a \u0645\u0634\u0627\u0628\u0647 \u0628\u0627\u0634\u062f\u060c \u06cc\u06a9 \u06af\u0632\u06cc\u0646\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f \u003Cstrong\u003E\u0647\u0631 \u062c\u0627\u06cc \u062f\u06cc\u06af\u0631\u003C/strong\u003E, \u0634\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0632 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u062f."],"Add to cart":["\u0627\u0636\u0627\u0641\u0647 \u0628\u0647 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f"],"Add your shipping method for appropiate zone":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0645\u0646\u0637\u0642\u0647 \u0645\u0646\u0627\u0633\u0628 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f"],"Add&nbsp;meta":["\u0627\u0641\u0632\u0648\u062f\u0646&nbsp;\u0645\u062a\u0627"],"Add/link Resource":["\u0627\u0641\u0632\u0648\u062f\u0646/\u0644\u06cc\u0646\u06a9 \u0645\u0648\u062c\u0648\u062f\u06cc"],"Additional Resources":["\u0645\u0646\u0627\u0628\u0639 \u0627\u0636\u0627\u0641\u06cc "],"Additional cost":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"],"Address":["\u0622\u062f\u0631\u0633 "],"Address ":["\u0622\u062f\u0631\u0633"],"Address Verification":["\u062a\u0627\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633"],"Address:":["\u0646\u0634\u0627\u0646\u06cc:"],"Adjacent Buffering ?":["\u0628\u0627\u0641\u0631 \u0645\u062c\u0627\u0648\u0631\u061f"],"Admin":["\u0645\u062f\u06cc\u0631\u06cc\u062a"],"Admin Commission":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631"],"Admin Commission from this category":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0627\u0632 \u0627\u06cc\u0646 \u062f\u0633\u062a\u0647"],"Admin Commission type":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631"],"Admin commission":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631"],"After Single Product Tabs":["\u067e\u0633 \u0627\u0632 \u0632\u0628\u0627\u0646\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u06a9\u06cc "],"After pre-tax discounts.":["\u0628\u0639\u062f \u0627\u0632 \u062a\u062e\u0641\u06cc\u0641 \u0647\u0627\u06cc \u0642\u0628\u0644 \u0627\u0632 \u0645\u0627\u0644\u06cc\u0627\u062a."],"All":["\u0647\u0645\u0647"],"All (%d)":["\u0647\u0645\u0647 (%d)"],"All \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u0647\u0645\u0647 \u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"All Booking Product":["\u0647\u0645\u0647 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"All Day":["\u062a\u0645\u0627\u0645 \u0631\u0648\u0632"],"All Logs":["\u0647\u0645\u0647 \u06af\u0632\u0627\u0631\u0634\u0627\u062a"],"All Reviews":["\u062a\u0645\u0627\u0645 \u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc"],"All Tickets":["\u0647\u0645\u0647\u200c\u06cc \u062a\u06cc\u06a9\u062a\u200c\u0647\u0627"],"All Topics":["\u0647\u0645\u0647 \u067e\u0633\u062a \u0647\u0627"],"All Vendor":["\u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"All Vendors":["\u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"All blocks being booked":["\u062a\u0645\u0627\u0645 \u0645\u06a9\u0627\u0646 \u062f\u0631 \u062d\u0627\u0644 \u0631\u0632\u0631\u0648"],"All dates are...":["\u062a\u0645\u0627\u0645 \u062a\u0627\u0631\u06cc\u062e \u0647\u0627 ... \u0647\u0633\u062a\u0646\u062f"],"All done!":["\u0647\u0645\u0647 \u0627\u0646\u062c\u0627\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"All done.":["\u0627\u0646\u062c\u0627\u0645 \u0634\u062f"],"All matching rules will be applied to the booking.":["\u062a\u0645\u0627\u0645 \u0642\u0648\u0627\u0646\u06cc\u0646 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0631\u0632\u0631\u0648 \u0627\u0639\u0645\u0627\u0644 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f."],"All orders are checked and no duplicate was found. %s":["\u062a\u0645\u0627\u0645 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0628\u0631\u0631\u0633\u06cc \u0634\u062f \u0648 \u0645\u0627 \u0633\u0641\u0627\u0631\u0634 \u062a\u06a9\u0631\u0627\u0631\u06cc \u067e\u06cc\u062f\u0627 \u0646\u06a9\u0631\u062f\u0647 \u0627\u06cc\u0645. %s"],"All orders are checked and we found some duplicate orders":["\u062a\u0645\u0627\u0645 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0628\u0631\u0631\u0633\u06cc \u0634\u062f \u0648 \u0645\u0627 \u0686\u0646\u062f \u0633\u0641\u0627\u0631\u0634 \u062a\u06a9\u0631\u0627\u0631\u06cc \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u0645."],"All orders has been synchronized. %s":["\u0647\u0645\u0647 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0634\u062f. %s"],"All selected modules are successfully activated":["\u062a\u0645\u0627\u0645 \u0645\u0627\u0698\u0648\u0644\u200c\u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0641\u0639\u0627\u0644 \u0634\u062f\u0646\u062f"],"All selected modules are successfully deactivated":["\u062a\u0645\u0627\u0645 \u0645\u0627\u0698\u0648\u0644\u200c\u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0646\u062f"],"All vendors who are actively selling are filtered within this list.":["\u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u06a9\u0647 \u0628\u0647 \u0637\u0648\u0631 \u0641\u0639\u0627\u0644 \u0641\u0631\u0648\u0634 \u0645\u06cc \u06a9\u0646\u0646\u062f \u062f\u0631 \u0627\u06cc\u0646 \u0641\u0647\u0631\u0633\u062a \u0641\u06cc\u0644\u062a\u0631 \u0645\u06cc \u0634\u0648\u0646\u062f."],"Allow":["\u0627\u062c\u0627\u0632\u0647 \u062f\u0627\u062f\u0646"],"Allow Backorders":["\u0627\u062c\u0627\u0632\u0647 \u0628\u0631\u06af\u0634\u062a \u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"Allow Backorders?":["\u0627\u062c\u0627\u0632\u0647 \u0628\u0631\u06af\u0634\u062a \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0645\u06cc \u062f\u0647\u06cc\u062f \u061f"],"Allow backorders?":["\u0627\u062c\u0627\u0632\u0647 \u0628\u0631\u06af\u0634\u062a \u0633\u0641\u0627\u0631\u0634\u061f"],"Allow but notify customer":["\u0627\u062c\u0627\u0632\u0647 \u062f\u0647\u06cc\u062f \u0627\u0645\u0627 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc \u0627\u0637\u0644\u0627\u0639 \u0628\u062f\u0647\u062f"],"Allow customer reviews?":["\u0645\u062c\u0627\u0632 \u0628\u0648\u062f\u0646 \u062f\u06cc\u062f\u06af\u0627\u0647\u061f "],"Allow only one quantity of this product to be bought in a single order":["\u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u062a\u0646\u0647\u0627 \u06cc\u06a9 \u0645\u0642\u062f\u0627\u0631 \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u062f\u0631 \u06cc\u06a9 \u062c\u0647\u062a \u0648\u0627\u062d\u062f \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a"],"Allow vendor to duplicate their product":["\u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0645\u0647\u0645\u0627\u0646 \u0627\u062c\u0627\u0632\u0647 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u062f\u0627\u0631\u0646\u062f"],"Allow, but notify customer":["\u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f\u060c \u0627\u0645\u0627 \u0628\u0627 \u0627\u0637\u0644\u0627\u0639 \u0645\u0634\u062a\u0631\u06cc"],"Allowed categories":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627\u06cc \u0645\u062c\u0627\u0632 "],"Amount":["\u0645\u06cc\u0632\u0627\u0646"],"Amount already refunded":["\u0645\u06cc\u0632\u0627\u0646 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062a\u0627 \u06a9\u0646\u0648\u0646"],"Announcement":["\u0627\u0639\u0644\u0627\u0646"],"Announcement Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"Announcement draft successfully":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633 \u0634\u062f"],"Announcement status":["\u0648\u0636\u0639\u06cc\u062a \u0627\u0639\u0644\u0627\u0646"],"Announcement title must be required":["\u0639\u0646\u0648\u0627\u0646 \u0627\u0637\u0644\u0627\u0639\u200c\u0631\u0633\u0627\u0646\u06cc \u0628\u0627\u06cc\u062f \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0628\u0627\u0634\u062f"],"Announcements":["\u0627\u0639\u0644\u0627\u0646\u0627\u062a"],"Anti-spam":["\u0636\u062f \u0647\u0631\u0632\u0646\u0627\u0645\u0647"],"Any":["\u0647\u0631"],"Any category":["\u0647\u0631 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"App ID":["\u0622\u06cc\u062f\u06cc  \u0628\u0631\u0646\u0627\u0645\u0647"],"App Id":["\u0622\u06cc \u062f\u06cc \u0627\u067e\u0644\u06cc\u06a9\u06cc\u0634\u0646"],"App Secret":["\u06a9\u0644\u06cc\u062f \u0631\u0627\u0632 \u0628\u0631\u0646\u0627\u0645\u0647 (App Secret)"],"Apply":["\u0627\u0639\u0645\u0627\u0644\u200c"],"Approve":["\u062a\u0627\u06cc\u06cc\u062f"],"Approve Refund":["\u062a\u0627\u06cc\u06cc\u062f \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Approve Requests":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f"],"Approve Vendors":["\u062a\u0623\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"Approved":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u062f"],"Approved (":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647 ("],"Approved \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"April":["\u0622\u0648\u0631\u06cc\u0644"],"Are you cheating?":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u062a\u0642\u0644\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f\u061f"],"Are you sure want to delete":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f"],"Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max 50 per run).":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u062a\u0645\u0627\u0645 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0631\u0627 \u0644\u06cc\u0646\u06a9 \u06a9\u0646\u06cc\u062f\u061f \u0627\u06cc\u0646 \u06cc\u06a9 \u062a\u063a\u06cc\u06cc\u0631 \u062c\u062f\u06cc\u062f \u0628\u0631\u0627\u06cc \u0647\u0631 \u062a\u0631\u06a9\u06cc\u0628 \u0645\u0645\u06a9\u0646 \u0627\u0632 \u062a\u0646\u0648\u0639 \u0635\u0641\u0627\u062a \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0645\u06cc \u06a9\u0646\u062f (\u062d\u062f\u0627\u06a9\u062b\u0631 50 \u062f\u0631 \u0647\u0631 \u0627\u062c\u0631\u0627)."],"Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock.":["\u0622\u06cc\u0627 \u0627\u0632 \u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0627\u06cc\u062a\u0645 \u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f\u061f \u062f\u0631 \u0635\u0648\u0631\u062a\u06cc \u06a9\u0647 \u0642\u0628\u0644\u0627 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u0627\u0632  \u0638\u0631\u0641\u06cc\u062a \u06a9\u0645 \u0634\u062f\u0647 \u0628\u0627\u0634\u062f\u060c \u06cc\u0627 \u0627\u06cc\u0646\u06a9\u0647 \u0631\u0632\u0631\u0648 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u062b\u0628\u062a \u0634\u062f\u0647 \u0628\u0627\u0634\u062f\u060c \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0635\u062d\u06cc\u062d  \u0638\u0631\u0641\u06cc\u062a \u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0627\u0634\u062a."],"Are you sure you want to remove this person type?":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0646\u0648\u0639 \u0634\u062e\u0635 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f"],"Are you sure you want to remove this resource?":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0645\u0646\u0628\u0639 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f"],"Are you sure you want to remove this variation?":["\u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f  \u0627\u06cc\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f"],"Are you sure you wish to delete this refund? This action cannot be undone.":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f \u0627\u06cc\u0646 \u0639\u0645\u0644\u06cc\u0627\u062a \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u06af\u0634\u062a \u0646\u06cc\u0633\u062a."],"Are you sure you wish to process this refund request? This action cannot be undone.":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627 \u067e\u0631\u062f\u0627\u0632\u0634 \u06a9\u0646\u06cc\u062f\u061f \u0627\u06cc\u0646 \u0639\u0645\u0644\u06cc\u0627\u062a \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u06af\u0634\u062a \u0646\u06cc\u0633\u062a."],"Assign Subscription Pack":["\u0628\u0633\u062a\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0647\u06cc\u062f"],"Attribute":["\u0648\u06cc\u0698\u06af\u06cc"],"Attribute %d default":["\u0648\u06cc\u0698\u06af\u06cc %d \u067e\u06cc\u0634 \u0641\u0631\u0636"],"Attribute %d global":["\u0648\u06cc\u0698\u06af\u06cc %d \u0633\u0631\u0627\u0633\u0631\u06cc"],"Attribute %d name":["\u0646\u0627\u0645 %d \u0648\u06cc\u0698\u06af\u06cc"],"Attribute %d value(s)":["\u0648\u06cc\u0698\u06af\u06cc %d \u0645\u0642\u062f\u0627\u0631"],"Attribute %d visible":["\u0648\u06cc\u0698\u06af\u06cc %d \u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647"],"Attribute Name":["\u0646\u0627\u0645 \u0648\u06cc\u0698\u06af\u06cc"],"Attribute name":["\u0646\u0627\u0645 \u0648\u06cc\u0698\u06af\u06cc "],"Attribute value(s)":["\u0645\u0642\u062f\u0627\u0631 \u0645\u0634\u062e\u0635\u0647 (\u0647\u0627) "],"Attribute visibility":["\u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u0648\u062f\u0646 \u0645\u0634\u062e\u0635\u0647 "],"Attributes":["\u0648\u06cc\u0698\u06af\u06cc \u0647\u0627"],"Auction":["\u0645\u0632\u0627\u06cc\u062f\u0647"],"Auction End date":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u062d\u0631\u0627\u062c"],"Auction Start date":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u062d\u0631\u0627\u062c"],"Auction type":["\u0646\u0648\u0639 \u062d\u0631\u0627\u062c"],"August":["\u0627\u0648\u062a"],"Auth Token":["\u0631\u0645\u0632 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc"],"Author":["\u0637\u0631\u0627\u062d"],"Auto":["\u0627\u062a\u0648\u0645\u0627\u062a\u06cc\u06a9"],"Automatically assigned":["\u0628\u0647 \u0637\u0648\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Availability":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644"],"Available Quantity":["\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u062c\u0648\u062f"],"Available Vendor Display area title":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0646\u0627\u0645 \u0645\u0646\u0637\u0642\u0647 "],"Available Vendor Section Display Position":["\u0645\u0648\u0642\u0639\u06cc\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0647\u0646\u062f\u0647 \u0628\u062e\u0634 \u0645\u0648\u062c\u0648\u062f "],"Available placeholders: %s":["\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f: %s"],"Back to Tickets":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062a\u06cc\u06a9\u062a \u0647\u0627 "],"Back to all Notice":["\u0628\u0631\u06af\u0634\u062a \u0628\u0647 \u0647\u0645\u0647 \u0646\u06a9\u062a\u0647 \u0647\u0627"],"Back to all Staff":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646"],"Back to list":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0644\u06cc\u0633\u062a"],"Backorders allowed?":["\u067e\u06cc\u0634\u200c\u0641\u0631\u0648\u0634 \u0645\u062c\u0627\u0632 \u0627\u0633\u062a\u061f "],"Balance":["\u062a\u0631\u0627\u0632"],"Balance Date":["\u062a\u0627\u0631\u06cc\u062e \u0645\u0648\u062c\u0648\u062f\u06cc"],"Bank Payment":["\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627\u0646\u06a9\u06cc"],"Base Cost":["\u0647\u0632\u06cc\u0646\u0647 \u067e\u0627\u06cc\u0647"],"Base cost":["\u0647\u0632\u06cc\u0646\u0647 \u067e\u0627\u06cc\u0647"],"Basename of the module as array":["\u0646\u0627\u0645 \u0645\u0627\u0698\u0648\u0644 \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0622\u0631\u0627\u06cc\u0647 \u0642\u0631\u0627\u0631 \u0645\u06cc \u062f\u0647\u06cc\u0645"],"Become a Vendor":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0634\u0648\u06cc\u062f"],"Before adding variations, add and save some attributes on the \u003Cstrong\u003EAttributes\u003C/strong\u003E tab.":["\u0642\u0628\u0644 \u0627\u0632 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a\u060c \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0648 \u0635\u0631\u0641\u0647 \u062c\u0648\u06cc\u06cc \u062f\u0631 \u0628\u0631\u062e\u06cc \u0627\u0632 \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627\u06cc \u062f\u0631 \u003Cstrong\u003E \u0639\u0646\u0627\u0635\u0631 \u003C/ strong\u003E \u0628\u0631\u06af\u0647."],"Before an email will be sent to the vendor":["\u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646\u06a9\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0634\u0648\u062f "],"Before pre-tax discounts.":["\u0642\u0628\u0644 \u0627\u0632 \u062a\u062e\u0641\u06cc\u0641 \u0642\u0628\u0644 \u0627\u0632 \u0645\u0627\u0644\u06cc\u0627\u062a."],"Before you can upload your import file, you will need to fix the following error:":["\u0642\u0628\u0644 \u0627\u0632 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0641\u0627\u06cc\u0644\u060c \u0628\u0627\u06cc\u062f \u062e\u0637\u0627\u0647\u0627\u06cc \u0632\u06cc\u0631 \u0631\u0627 \u0628\u0631\u0637\u0631\u0641 \u06a9\u0646\u06cc\u062f:"],"Best Selling Product":["\u067e\u0631\u0641\u0631\u0648\u0634\u062a\u0631\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Best Vendor":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0631\u062a\u0631"],"Bid increment":["\u0627\u0641\u0632\u0627\u06cc\u0634 \u0642\u06cc\u0645\u062a"],"Billing cycle":["\u0686\u0631\u062e\u0647 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628"],"Billing cycle stop":["\u062a\u0648\u0642\u0641 \u0686\u0631\u062e\u0647 \u067e\u0631\u062f\u0627\u062e\u062a"],"Bitcoin Currency":["\u0646\u0631\u062e \u0628\u06cc\u062a \u06a9\u0648\u06cc\u0646"],"Block Cost":["\u0647\u0632\u06cc\u0646\u0647 \u0628\u0644\u0627\u06a9"],"Block cost":["\u0647\u0632\u06cc\u0646\u0647 \u0628\u0644\u0648\u06a9"],"Block count":["\u062a\u0639\u062f\u0627\u062f \u0628\u0644\u0627\u06a9"],"Body of the email.":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0627\u06cc\u0645\u06cc\u0644."],"Boo ya!":["\u0628\u0644\u0647 \u06cc\u0627! "],"Bookable":["\u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648"],"Booked Product":["\u0631\u0632\u0631\u0648 \u0645\u062d\u0635\u0648\u0644"],"Booked Product : ":["\u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648 \u0634\u062f\u0647:"],"Booked by":["\u0631\u0632\u0631\u0648 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637"],"Booked: %s":["\u0631\u0632\u0631\u0648 \u0634\u062f:  %s"],"Booking":["\u0631\u0632\u0631\u0648"],"Booking #%d":["\u0631\u0632\u0631\u0648 #%d"],"Booking #%s":["\u0631\u0632\u0631\u0648 #%s"],"Booking Details":["\u062c\u0632\u06cc\u06cc\u0627\u062a\u00a0\u0631\u0632\u0631\u0648 \u0634\u0645\u0627"],"Booking End Date":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0631\u0632\u0631\u0648"],"Booking End Date :":["\u062a\u0627\u0631\u06cc\u062e \u0627\u062a\u0645\u0627\u0645 \u0631\u0632\u0631\u0648:"],"Booking End Date: %s":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0631\u0632\u0631\u0648:  %s"],"Booking ID":["\u0634\u0646\u0627\u0633\u0647 \u0631\u0632\u0631\u0648"],"Booking ID: %s":["\u0634\u0646\u0627\u0633\u0647 \u0631\u0632\u0631\u0648:  %s"],"Booking Number: #%d. Order Number:\u003Ca href=\"%s\"\u003E #%d \u003C/a\u003E":["\u0634\u0645\u0627\u0631\u0647 \u0631\u0632\u0631\u0648: #%d. \u0634\u0645\u0627\u0631\u0647 \u0633\u0641\u0627\u0631\u0634:\u003Ca href=\"%s\"\u003E #%d \u003C/a\u003E"],"Booking Start Date":["\u062a\u0627\u0631\u06cc\u062e \u0622\u063a\u0627\u0632 \u0631\u0632\u0631\u0648"],"Booking Start Date :":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u0631\u0632\u0631\u0648:"],"Booking Start Date: %s":["\u062a\u0627\u0631\u06cc\u062e \u0622\u063a\u0627\u0632 \u0631\u0632\u0631\u0648:  %s"],"Booking Status":["\u0648\u0636\u0639\u06cc\u062a \u0628\u0644\u0627\u06a9"],"Booking Status:":["\u0648\u0636\u0639\u06cc\u062a \u0631\u0632\u0631\u0648"],"Booking Type":["\u0646\u0648\u0639 \u0631\u0632\u0631\u0648"],"Booking Type: %s":["\u0646\u0648\u0639 \u0631\u0632\u0631\u0648: %s"],"Booking can be cancelled ":["\u0631\u0632\u0631\u0648 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0644\u063a\u0648 \u0634\u0648\u062f "],"Booking duration":["\u0645\u062f\u062a \u0632\u0645\u0627\u0646 \u0631\u0632\u0631\u0648"],"Bookings by day":["\u0631\u0632\u0631\u0648 \u0628\u0631\u0627\u0633\u0627\u0633 \u0631\u0648\u0632"],"Bookings by month":["\u0631\u0632\u0631\u0648 \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0627\u0647"],"Bulk Actions":["\u0627\u0639\u0645\u0627\u0644 \u06af\u0631\u0648\u0647\u06cc"],"Button Background color":["\u0631\u0646\u06af \u067e\u0633 \u0632\u0645\u06cc\u0646\u0647 \u062f\u06a9\u0645\u0647"],"Button Border color":["\u0631\u0646\u06af \u062d\u0627\u0634\u06cc\u0647 \u062f\u06a9\u0645\u0647"],"Button Hover Border color":["\u0631\u0646\u06af \u06a9\u0627\u062f\u0631 \u0647\u0627\u0648\u0631 \u062f\u06a9\u0645\u0647"],"Button Hover Text color":["\u0631\u0646\u06af \u0645\u062a\u0646 \u0647\u0627\u0648\u0631 \u062f\u06a9\u0645\u0647"],"Button Hover color":["\u0631\u0646\u06af \u0647\u0627\u0648\u0631 \u062f\u06a9\u0645\u0647"],"Button Text color":["\u0631\u0646\u06af \u0645\u062a\u0646 \u062f\u06a9\u0645\u0647"],"Button text":["\u0645\u062a\u0646 \u062f\u06a9\u0645\u0647"],"Buy Now":["\u062e\u0631\u06cc\u062f \u0641\u0648\u0631\u06cc"],"Buy it now price":["\u0642\u06cc\u0645\u062a \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062e\u0631\u06cc\u062f \u0622\u0646"],"By Day":["\u0628\u0631\u0627\u06cc \u0631\u0648\u0632"],"By Vendor":["\u0628\u0631 \u0627\u0633\u0627\u0633 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"By Year":["\u0628\u0631 \u0627\u0633\u0627\u0633 \u0633\u0627\u0644"],"By bookable product":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u062d\u0635\u0648\u0644 \u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648"],"By default buffer period applies forward into the future of a booking. Enabling this option will apply adjacently (before and after Bookings)":["\u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062f\u0648\u0631\u0647 \u0628\u0627\u0641\u0631 \u062f\u0631 \u0622\u06cc\u0646\u062f\u0647 \u0627\u0632 \u06cc\u06a9 \u0631\u0632\u0631\u0648 \u067e\u06cc\u0634 \u0628\u06cc\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f. \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0647 \u0635\u0648\u0631\u062a \u0645\u062c\u0632\u0627 (\u0642\u0628\u0644 \u0648 \u0628\u0639\u062f \u0627\u0632 \u0631\u0632\u0631\u0627\u0633\u06cc\u0648\u0646)"],"By resource":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0631\u0632\u0631\u0648"],"CSV Delimiter":["\u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647 CSV "],"Calculation type":["\u0646\u0648\u0639 \u0645\u062d\u0627\u0633\u0628\u0647"],"Calendar":["\u062a\u0642\u0648\u06cc\u0645"],"Calendar always visible":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u0626\u0645 \u062a\u0642\u0648\u06cc\u0645"],"Calendar display mode":["\u062d\u0627\u0644\u062a \u0646\u0645\u0627\u06cc\u0634 \u062a\u0642\u0648\u06cc\u0645"],"Callback URL":["\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc(URL) \u0641\u0631\u0627\u062e\u0648\u0627\u0646"],"Can Be Cancelled ?":["\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0644\u063a\u0648 \u0634\u0648\u062f\u061f"],"Cancel":["\u0627\u0646\u0635\u0631\u0627\u0641 "],"Cancel Reply":["\u0627\u0646\u0635\u0631\u0627\u0641 \u0627\u0632 \u067e\u0627\u0633\u062e"],"Cancel Request":["\u0644\u063a\u0648 \u062f\u0631\u062e\u0648\u0627\u0633\u062a"],"Cancel schedule":["\u0644\u063a\u0648 \u0628\u0631\u0646\u0627\u0645\u0647"],"Cancelled":["\u0644\u063a\u0648 \u0634\u062f\u0647!"],"Cancelled \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u0644\u063a\u0648 \u0634\u062f\u0647\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"Cannot create existing %s.":["\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 %s \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0631\u062f."],"Card":["\u06a9\u0627\u0631\u062a"],"Card ending in %s":["\u06a9\u0627\u0631\u062a \u062f\u0631 %s \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc \u0631\u0633\u062f"],"Card ending with":["\u06a9\u0627\u0631\u062a \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc \u0631\u0633\u062f \u0628\u0627"],"Cart item quantity total exceeded - item not added to cart. Please checkout to purchase the items in your cart.":["\u0645\u062c\u0645\u0648\u0639 \u06a9\u0627\u0644\u0627\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f - \u0645\u0648\u0631\u062f \u0628\u0647 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627 \u0628\u0631\u0627\u06cc \u062e\u0631\u06cc\u062f \u0627\u0642\u0644\u0627\u0645 \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u062e\u0648\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u06cc\u062f. "],"Categories":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627"],"Category":["\u0645\u0648\u0636\u0648\u0639"],"Category :":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc:"],"Category Selection":["\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"Category name":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"Category: ":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc: "],"Chained Payment":["\u067e\u0631\u062f\u0627\u062e\u062a \u0632\u0646\u062c\u06cc\u0631 "],"Change Address":["\u062a\u063a\u06cc\u06cc\u0631 \u0622\u062f\u0631\u0633"],"Change your sell this item button text":["\u0627\u06cc\u0646 \u062f\u06a9\u0645\u0647 \u0645\u062a\u0646 \u0645\u0648\u0631\u062f \u0631\u0627 \u0628\u0647 \u0641\u0631\u0648\u0634 \u0628\u0631\u0633\u0627\u0646\u06cc\u062f "],"Charge varying rates based on user defined conditions":["\u0634\u0627\u0631\u0698 \u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0631\u0627\u06cc\u0637 \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637 \u06a9\u0627\u0631\u0628\u0631"],"Chat Button on Product Page":["\u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0645\u062d\u0635\u0648\u0644"],"Chat Button on Vendor Page":["\u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Chat Now":["\u06af\u0641\u062a\u06af\u0648"],"Cheating uh!":["\u062a\u0642\u0644\u0628 \u06a9\u0631\u062f\u06cc\u062f!"],"Check Orders":["\u0628\u0631\u0631\u0633\u06cc \u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"Check for Duplicate Orders":["\u0628\u0631\u0631\u0633\u06cc \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc"],"Check rules against...":["\u0642\u0648\u0627\u0646\u06cc\u0646 \u0631\u0627 \u06a9\u0646\u062a\u0631\u0644 \u06a9\u0646\u06cc\u062f..."],"Check this box if the booking can be cancelled by the customer after it has been purchased. A refund will not be sent automatically.":["\u0627\u06af\u0631 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u067e\u0633 \u0627\u0632 \u062e\u0631\u06cc\u062f \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u0644\u063a\u0648 \u0634\u0648\u062f\u060c \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u0639\u0644\u0627\u0645\u062a \u0628\u0632\u0646\u06cc\u062f. \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0631\u0633\u0627\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f."],"Check this box if the booking requires YOUR approval/confirmation. Payment will not be taken during CHECKOUT.":["\u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u0639\u0644\u0627\u0645\u062a \u0628\u0632\u0646\u06cc\u062f \u0627\u06af\u0631 \u0631\u0632\u0631\u0648 \u0628\u0647 \u062a\u0623\u06cc\u06cc\u062f / \u062a\u0627\u06cc\u06cc\u062f \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632 \u062f\u0627\u0631\u062f. \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0637\u06cc \u062a\u0633\u0648\u06cc\u0647 \u062d\u0633\u0627\u0628 \u0627\u0646\u062c\u0627\u0645 \u0646\u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"Check this box if the coupon should not apply to items on sale.":[" \u0627\u06af\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0645\u0648\u0627\u0631\u062f \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0641\u0631\u0648\u0634 \u0631\u0627 \u0634\u0627\u0645\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f \u0627\u06cc\u0646 \u062a\u06cc\u06a9 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f."],"Check this box if you want to show this coupon in store page.":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Check this if you want to enable shipping for your store":["\u0627\u06af\u0631 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u062e\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u0628\u0627\u06cc\u062f \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f."],"Checkout Button Label":["\u0628\u0631\u0686\u0633\u0628 \u062f\u06a9\u0645\u0647 \u067e\u0631\u062f\u0627\u062e\u062a "],"Checkout Image":["\u062a\u0635\u0648\u06cc\u0631 \u067e\u0631\u062f\u0627\u062e\u062a "],"Choose Subscription Pack":["\u0627\u0646\u062a\u062e\u0627\u0628 \u067e\u06a9 \u0627\u0634\u062a\u0631\u0627\u06a9"],"Choose a CSV file from your computer:":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u0631\u0627 \u0627\u0632 \u06a9\u0627\u0645\u067e\u06cc\u0648\u062a\u0631\u062a\u0627\u0646: "],"Choose a currency supported by Stripe as your store currency to enable Stripe Connect.":["\u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u062a\u0635\u0627\u0644 \u0627\u0633\u062a\u0631\u06cc\u067e\u060c \u06cc\u06a9 \u0627\u0631\u0632 \u0631\u0627 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u0633\u062a\u0631\u06cc\u067e \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067e\u0648\u0644 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"Choose a file from your computer:":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0627\u0632 \u06a9\u0627\u0645\u067e\u06cc\u0648\u062a\u0631:"],"Choose file":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0627\u06cc\u0644"],"Choose the shipping method you wish to add. Only shipping methods which support zones are listed.":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. \u0641\u0642\u0637 \u0631\u0648\u0634 \u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u06a9\u0647 \u0646\u0648\u0627\u062d\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06a9\u0646\u0646\u062f \u0644\u06cc\u0633\u062a \u0645\u06cc \u0634\u0648\u0646\u062f."],"Choose which format of email to send.":["\u0641\u0631\u0645\u062a \u0627\u06cc\u0645\u06cc\u0644 \u0627\u0631\u0633\u0627\u0644\u06cc \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"Chose your type of product and click export button to export all data in XML form":["\u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u062e\u0648\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u0648 \u0631\u0648\u06cc \u062f\u06a9\u0645\u0647 \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u062a\u0645\u0627\u0645 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062f\u0631 \u0641\u0631\u0645 XML \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f"],"Clear":["\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646"],"Clear All":["\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647"],"Click Browse button and choose a XML file that you want to import.":["\u0631\u0648\u06cc \u062f\u06a9\u0645\u0647 Browse \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f \u0648 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 XML \u06a9\u0647 \u0634\u0645\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u06a9\u0646\u06cc\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"Click Here":["\u0627\u06cc\u0646\u062c\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"Click to toggle":["\u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"Clicking this button will create required pages for the plugin.":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u0635\u0641\u062d\u0627\u062a \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0628\u0631\u0627\u06cc \u067e\u0644\u0627\u06af\u06cc\u0646 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"Client ID":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0634\u062a\u0631\u06cc (Client ID)"],"Client Secret":["\u0631\u0627\u0632\u062f\u0627\u0631\u06cc \u0645\u0634\u062a\u0631\u06cc (Client Secret)"],"Client secret":["\u06a9\u062f Client secret \u06af\u0648\u06af\u0644"],"Cloning this class could cause catastrophic disasters!":["\u06a9\u0644\u0648\u0646\u06cc\u0646\u06af \u0627\u06cc\u0646 \u06a9\u0644\u0627\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0628\u0644\u0627\u06cc\u0627\u06cc \u0641\u0627\u062c\u0639\u0647 \u0628\u0627\u0631 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f!"],"Close Ticket":["\u0628\u0633\u062a\u0646 \u062a\u06cc\u06a9\u062a"],"Closed":["\u0628\u0633\u062a\u0647"],"Closed \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E":["\u0628\u0633\u062a\u0647 \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E"],"Closed Tickets":["\u062a\u06cc\u06a9\u062a\u200c\u0647\u0627\u06cc \u0628\u0633\u062a\u0647"],"Closing Style":["\u0633\u0628\u06a9 \u0628\u0633\u062a\u0646"],"Code":["\u06a9\u062f"],"Colors":["\u0631\u0646\u06af\u200c\u0628\u0646\u062f\u06cc \u0647\u0627"],"Column mapping":["\u0646\u0642\u0634\u0647 \u0633\u062a\u0648\u0646"],"Column name":["\u0646\u0627\u0645 \u0633\u062a\u0648\u0646 "],"Comment":["\u062f\u06cc\u062f\u06af\u0627\u0647"],"Commision":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646"],"Commission":["\u067e\u0648\u0631\u0633\u0627\u0646\u062a"],"Commission type":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646"],"Completed":["\u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647"],"Confirm":["\u062a\u0627\u0626\u06cc\u062f"],"Confirm booking":["\u062a\u0627\u06cc\u06cc\u062f \u0631\u0632\u0631\u0648"],"Congratulations %s!":["\u062a\u0628\u0631\u06cc\u06a9 %s!"],"Connect ":["\u0627\u062a\u0635\u0627\u0644"],"Connect to Stripe":["\u0627\u062a\u0635\u0627\u0644 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e"],"Consumer Key":["\u06a9\u0644\u06cc\u062f \u0645\u0634\u062a\u0631\u06cc (Consumer Key)"],"Consumer Secret":["\u0645\u062e\u0641\u06cc(secret) \u0645\u0634\u062a\u0631\u06cc"],"Contact Vendor":["\u062a\u0645\u0627\u0633 \u0628\u0627 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Content":["\u0645\u062d\u062a\u0648\u0627"],"Continue":["\u0627\u062f\u0627\u0645\u0647"],"Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend.":["\u06a9\u0646\u062a\u0631\u0644 \u06cc\u0627 \u0646\u0647 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \"\u062f\u0631 \u0628\u0648\u0631\u0633\" \u0648 \u06cc\u0627 \"\u0627\u0632 \u0633\u0647\u0627\u0645\" \u062f\u0631 \u0638\u0627\u0647\u0631 \u0634\u062f\u0647 \u0627\u0633\u062a."],"Copoun code must be required":["\u06a9\u062f \u06a9\u0648\u067e\u0646 \u0636\u0631\u0648\u0631\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"Cost":["\u0647\u0632\u06cc\u0646\u0647"],"Costs":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0627"],"Count persons as bookings":["\u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0631\u0632\u0631\u0648"],"Country":["\u06a9\u0634\u0648\u0631"],"Coupon":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Coupon Code: \u003Cstrong\u003E%s\u003C/strong\u003E":["\u06a9\u062f \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 : \u003Cstrong\u003E%s\u003C/strong\u003E"],"Coupon Title":["\u0639\u0646\u0648\u0627\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Coupon amount":["\u0645\u0642\u062f\u0627\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Coupon amount must be required":["\u0645\u0642\u062f\u0627\u0631 \u06a9\u0648\u067e\u0646 \u0636\u0631\u0648\u0631\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"Coupon code.":["\u06a9\u062f \u06a9\u0648\u067e\u0646."],"Coupon description.":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0648\u067e\u0646."],"Coupon has been deleted successfully!":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u062d\u0630\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Coupon has been saved successfully!":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Coupon has been updated successfully!":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Coupon title already exists":["\u0639\u0646\u0648\u0627\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f"],"Coupon type":["\u0646\u0648\u0639 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Coupon(s) Used":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0647\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647"],"Coupons":["\u06a9\u062f\u0647\u0627\u06cc \u062a\u062e\u0641\u06cc\u0641"],"Create Coupon":["\u0627\u06cc\u062c\u0627\u062f \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Create a new support topic":["\u0627\u06cc\u062c\u0627\u062f \u062a\u06cc\u06a9\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062c\u062f\u06cc\u062f"],"Create an App":["\u0627\u06cc\u062c\u0627\u062f \u06cc\u06a9 \u0628\u0631\u0646\u0627\u0645\u0647"],"Create staff":["\u0627\u06cc\u062c\u0627\u062f \u06a9\u0627\u0631\u0645\u0646\u062f"],"Created Date":["\u062a\u0627\u0631\u06cc\u062e \u0627\u06cc\u062c\u0627\u062f \u0634\u062f"],"Credit":["\u0627\u0639\u062a\u0628\u0627\u0631"],"Cross-sells":["\u06a9\u0645 \u0641\u0631\u0648\u0634\u200c\u062a\u0631\u06cc\u0646\u200c\u0647\u0627"],"Cross-sells are products which you promote in the cart, based on the current product.":["Cross-sells \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u06cc \u0647\u0633\u062a\u0646\u062f \u06a9\u0647 \u0634\u0645\u0627 \u062f\u0631 \u0633\u0628\u062f \u06a9\u0627\u0644\u0627\u06cc\u06cc \u062a\u0628\u0644\u06cc\u063a \u0645\u06cc \u06a9\u0646\u06cc\u062f\u060c \u0628\u0631 \u0627\u0633\u0627\u0633 \u0645\u062d\u0635\u0648\u0644 \u0641\u0639\u0644\u06cc."],"Current Balance":["\u0645\u0648\u062c\u0648\u062f\u06cc \u0641\u0639\u0644\u06cc"],"Currently Activated Pack":["\u0628\u0633\u062a\u0647 \u0641\u0639\u0627\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 "],"Custom Attribute":["\u0648\u06cc\u0698\u06af\u06cc \u0633\u0641\u0627\u0631\u0634\u06cc"],"Custom Shipping":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0633\u0641\u0627\u0631\u0634\u06cc"],"Customer":["\u0645\u0634\u062a\u0631\u06cc"],"Customer Details":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0634\u062a\u0631\u06cc"],"Customer Migration Form":["\u0641\u0631\u0645 \u0645\u0647\u0627\u062c\u0631\u062a \u0645\u0634\u062a\u0631\u06cc"],"Customer defined blocks of":["\u0645\u0634\u062a\u0631\u06cc \u062a\u0639\u0631\u06cc\u0641 \u06a9\u0631\u062f \u0628\u0644\u0627\u06a9 \u0647\u0627\u06cc"],"Customer selected":["\u0645\u0634\u062a\u0631\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f"],"Customer selected resources allow customers to choose one from the booking form.":["\u0645\u0634\u062a\u0631\u06cc\u0627\u0646 \u0645\u0648\u062c\u0648\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc\u0627\u0646 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u06cc\u06a9\u06cc \u0627\u0632 \u0641\u0631\u0645 \u0631\u0632\u0631\u0648 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u0646\u062f."],"Customer will get this info in their order email":["\u0645\u0634\u062a\u0631\u06cc \u0627\u06cc\u0646 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0631\u0627 \u062f\u0631 \u0627\u06cc\u0645\u06cc\u0644 \u0633\u0641\u0627\u0631\u0634 \u062e\u0648\u062f \u062f\u0631\u06cc\u0627\u0641\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f"],"Danish":["\u062f\u0627\u0646\u0645\u0627\u0631\u06a9\u06cc"],"Dashboard":["\u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"Dashboard Menu Border":["\u06a9\u0627\u062f\u0631 \u0645\u0646\u0648\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"Dashboard Navigation Active Menu":["\u0645\u0646\u0648\u06cc \u0641\u0639\u0627\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"Dashboard Navigation Background":["\u067e\u06cc\u0634 \u0632\u0645\u06cc\u0646\u0647 \u0646\u0627\u0648\u0628\u0631\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"Dashboard Navigation Text":["\u0645\u062a\u0646 \u0646\u0627\u0648\u0628\u0631\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"Date":["\u0632\u0645\u0627\u0646"],"Date Range":["\u0628\u0627\u0632\u0647 \u0632\u0645\u0627\u0646\u06cc"],"Date Range with time":["\u0645\u062d\u062f\u0648\u062f \u062a\u0627\u0631\u06cc\u062e \u0628\u0647 \u0647\u0645\u0631\u0627\u0647 \u0632\u0645\u0627\u0646"],"Date Wise Close":["\u0628\u0633\u062a\u0646 \u062f\u0631 \u062a\u0627\u0631\u06cc\u062e \u0645\u0639\u06cc\u0646"],"Date range":["\u0645\u062d\u062f\u0648\u062f\u0647 \u062a\u0627\u0631\u06cc\u062e"],"Date sale price ends":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0641\u0631\u0648\u0634 \u0648\u06cc\u0698\u0647 "],"Date sale price starts":["\u062a\u0627\u0631\u06cc\u062e\u200c\u0647\u0627\u06cc \u0634\u0631\u0648\u0639 \u0642\u06cc\u0645\u062a \u062d\u0631\u0627\u062c"],"Day View":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0631\u0648\u0632"],"Day(s)":["\u0631\u0648\u0632"],"Days, ( Make order matured to make a withdraw request) \u003Cbr\u003E Value \"0\" will inactive this option":["\u0631\u0648\u0632 \u0647\u0627, ( \u0633\u0627\u062e\u062a \u0633\u0641\u0627\u0631\u0634 \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0631\u062f\u0627\u0634\u062a) \u003Cbr\u003E \u0645\u0642\u062f\u0627\u0631 \"0\" \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"Deactivated":["\u063a\u06cc\u0631\u0647 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647"],"Deactivated the plugin, please try again.":["\u067e\u0644\u0627\u06af\u06cc\u0646 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0644\u0637\u0641\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f"],"Deactivating":["\u062f\u0631 \u062d\u0627\u0644 \u063a\u06cc\u0631\u0647 \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc"],"Debit":["\u0628\u062f\u0647\u06cc"],"Debug Log":["Log \u0627\u0634\u06a9\u0627\u0644 \u0632\u062f\u0627\u06cc\u06cc"],"December":["\u062f\u0633\u0627\u0645\u0628\u0631"],"Default Shipping Price":["\u0642\u06cc\u0645\u062a \u067e\u06cc\u0634 \u0641\u0631\u0636 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 "],"Default Shipping cost":["\u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc"],"Default attribute":["\u0648\u06cc\u0698\u06af\u06cc \u067e\u06cc\u0634\u200c\u0641\u0631\u0636"],"Default selections:":["\u0627\u0646\u062a\u062e\u0627\u0628 \u067e\u06cc\u0634 \u0641\u0631\u0636:"],"Delete":["\u062d\u0630\u0641 \u06a9\u0631\u062f\u0646"],"Delete License":["\u062d\u0630\u0641 \u0645\u062c\u0648\u0632"],"Delete Permanently":["\u062d\u0630\u0641 \u062f\u0627\u0626\u0645"],"Delete auction product":["\u062d\u0630\u0641 \u062d\u0631\u0627\u062c \u0645\u062d\u0635\u0648\u0644"],"Delete booking product":["\u062d\u0630\u0641 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"Delete card":["\u062d\u0630\u0641 \u06a9\u0627\u0631\u062a"],"Delete image":["\u062d\u0630\u0641 \u062a\u0635\u0648\u06cc\u0631"],"Delete permanently":["\u062d\u0630\u0641 \u062f\u0627\u0626\u0645\u06cc"],"Delimiter":["\u062c\u062f\u0627 \u06a9\u0646\u0646\u062f\u0647"],"Description":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a"],"Description: ":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a: "],"Details":["\u0645\u0634\u062e\u0635\u0627\u062a"],"Details about your enquiry...":["\u0633\u0648\u0627\u0644 \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u067e\u0631\u0633\u06cc\u062f(\u0627\u0632 \u0627\u0631\u0633\u0627\u0644 \u0633\u0648\u0627\u0644 \u0647\u0627\u06cc \u0628\u06cc \u0645\u0648\u0631\u062f \u067e\u0631\u0647\u06cc\u0632 \u06a9\u0646\u06cc\u062f) "],"Details are shown above. The importer will now try again with a different parser...":["\u062c\u0632\u06cc\u06cc\u0627\u062a  \u062f\u0631 \u0628\u0627\u0644\u0627 \u0646\u0645\u0627\u06cc\u0634  \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f. "],"Determines the type of discount that will be applied.":["\u0646\u0648\u0639 \u062a\u062e\u0641\u06cc\u0641 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u0645\u06cc \u06a9\u0646\u062f."],"Different types of this product (e.g. size, color)":["\u0627\u0646\u0648\u0627\u0639 \u0645\u062e\u062a\u0644\u0641 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 (e.g. size, color)"],"Dimensions":["\u0627\u0628\u0639\u0627\u062f"],"Dimensions (L&times;W&times;H)":["\u0627\u0628\u0639\u0627\u062f (L&times;W&times;H)"],"Direct":["\u0645\u0633\u062a\u0642\u06cc\u0645"],"Disable Auction":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0631\u0627\u062c "],"Disable Selling":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634"],"Disable Shipping":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Disable auction capability for this vendor":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u062d\u0631\u0627\u062c \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 "],"Disable shipping for this product":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627"],"Disabled":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644"],"Disapprove":["\u062a\u0627\u06cc\u06cc\u062f \u0646\u0634\u062f"],"Disconnect":["\u0642\u0637\u0639 \u0634\u062f\u0646"],"Disconnect ":["\u0642\u0637\u0639"],"Disconnect User Stripe Account":["\u0642\u0637\u0639 \u0627\u062a\u0635\u0627\u0644 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u06a9\u0627\u0631\u0628\u0631"],"Discount":["\u062a\u062e\u0641\u06cc\u0641"],"Discount ":["\u062a\u062e\u0641\u06cc\u0641 "],"Discount %":["\u062a\u062e\u0641\u06cc\u0641 %"],"Discount Editing":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u062e\u0641\u06cc\u0641"],"Discount Options":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u062e\u0641\u06cc\u0641"],"Discount Order":["\u062a\u062e\u0641\u06cc\u0641 \u0631\u0648\u06cc \u06a9\u0644 \u0633\u0641\u0627\u0631\u0634"],"Discount Type":["\u0646\u0648\u0639 \u062a\u062e\u0641\u06cc\u0641"],"Discount product":["\u062a\u062e\u0641\u06cc\u0641 \u0631\u0648\u06cc \u0645\u062d\u0635\u0648\u0644"],"Dismiss this notice":["\u0627\u06cc\u0646 \u067e\u06cc\u063a\u0627\u0645 \u0631\u0627 \u0646\u0634\u0627\u0646 \u0646\u062f\u0647"],"Dismiss this notice.":["\u0631\u062f \u06a9\u0631\u062f\u0646 \u0627\u06cc\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"Display calendar on click":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0642\u0648\u06cc\u0645 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u06a9\u0644\u06cc\u06a9 \u06a9\u0631\u062f\u0646"],"Display cost":["\u0647\u0632\u06cc\u0646\u0647 \u0646\u0645\u0627\u06cc\u0634"],"Display inside Product Tabs":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u062f\u0627\u062e\u0644 \u0632\u0628\u0627\u0646\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 "],"Do not allow":["\u0627\u062c\u0627\u0632\u0647 \u0646\u062f\u0647"],"Do not import":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u0631\u0627 \u0648\u0627\u0631\u062f \u0646\u06a9\u0646\u06cc\u062f "],"Do you really want to cancel the subscription?":["\u0622\u06cc\u0627 \u0648\u0627\u0642\u0639\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f\u061f"],"Dokan Announcement":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u062f\u06a9\u0627\u0646"],"Dokan Booking Cancelled by Customer":["\u0631\u0632\u0631\u0648 \u062f\u06a9\u0627\u0646 \u0644\u063a\u0648 \u0634\u062f \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc"],"Dokan Credit card (Stripe)":["\u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062f\u06a9\u0627\u0646 (\u0627\u0633\u062a\u0631\u06cc\u067e)"],"Dokan Error:":["\u062e\u0637\u0627 \u062f\u06a9\u0627\u0646:"],"Dokan Live Search":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0632\u0646\u062f\u0647 \u062f\u06a9\u0627\u0646"],"Dokan My Orders":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062f\u0643\u0627\u0646 \u0645\u0646"],"Dokan New Auction":["\u062d\u0631\u0627\u062c \u062c\u062f\u06cc\u062f \u062f\u06a9\u0627\u0646"],"Dokan New Booking":["\u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u062f\u06a9\u0627\u0646"],"Dokan New Refund Request":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u062f\u06a9\u0627\u0646"],"Dokan PayPal Adaptive Payments":["\u0627\u0646\u062c\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627 \u06a9\u0627\u0631\u062a \u0647\u0627\u06cc \u0639\u0636\u0648\u0634\u062a\u0627\u0628 "],"Dokan Pro":["\u067e\u0646\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0647\u0631"],"Dokan Refund Processed":["\u067e"],"Dokan Seller Verifications":["\u062a\u0623\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u06a9\u0627\u0646"],"Dokan Shipping":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u06a9\u0627\u0646"],"Dokan Stripe":["\u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646"],"Dokan Stripe Connect":["\u0627\u062a\u0635\u0627\u0644 strip \u062f\u06a9\u0627\u0646"],"Dokan Stripe Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646"],"Dokan Subscription":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u0647\u0631"],"Dokan Tools":["\u0627\u0628\u0632\u0627\u0631\u0647\u0627\u06cc \u067e\u0646\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"Dokan Updated Pending Product":["\u062f\u06a9\u0627\u0646 \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0645\u062d\u0635\u0648\u0644"],"Dokan Vendor Disable":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u06a9\u0627\u0646"],"Dokan Vendor Enable":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u06cc \u062f\u06a9\u0627\u0646"],"Dokan: Store Support Area":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Dokan: Verification":["\u062f\u06a9\u0627\u0646: \u062a\u0623\u06cc\u06cc\u062f"],"Don't Show":["\u0646\u0645\u0627\u06cc\u0634 \u0646\u062f\u0647\u06cc\u062f"],"Done!":["\u0627\u0646\u062c\u0627\u0645 \u0634\u062f."],"Download %d URL":["\u0622\u062f\u0631\u0633 \u062f\u0627\u0646\u0644\u0648\u062f %d "],"Download %d name":["\u0646\u0627\u0645 \u062f\u0627\u0646\u0644\u0648\u062f %d "],"Download Expiry:":["\u0627\u0646\u0642\u0636\u0627\u0621 \u062f\u0627\u0646\u0644\u0648\u062f :"],"Download Limit:":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u0646\u0644\u0648\u062f"],"Download PayPal mass payment file":["\u062f\u0627\u0646\u0644\u0648\u062f \u0641\u0627\u06cc\u0644 \u062a\u0648\u062f\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u067e\u06cc \u067e\u0627\u0644"],"Download URL":["\u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0632 \u0627\u062f\u0631\u0633 "],"Download expiry":["\u0627\u0646\u0642\u0636\u0627\u0621 \u062f\u0627\u0646\u0644\u0648\u062f"],"Download expiry days":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627 \u062f\u0627\u0646\u0644\u0648\u062f "],"Download limit":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u0646\u0644\u0648\u062f"],"Download name":["\u0646\u0627\u0645 \u062f\u0631\u06cc\u0627\u0641\u062a "],"Downloadable":["\u0641\u0627\u06cc\u0644 \u062f\u0627\u0646\u0644\u0648\u062f"],"Downloadable Files":["\u0641\u0627\u06cc\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f"],"Downloadable Product":["\u0645\u062d\u0635\u0648\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f"],"Downloadable files":["\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u062f\u0627\u0646\u0644\u0648\u062f\u06cc"],"Downloaded %s time":["\u062a\u0639\u062f\u0627\u062f \u062f\u0627\u0646\u0644\u0648\u062f : %s \u0628\u0627\u0631"],"Downloads":["\u062f\u0627\u0646\u0644\u0648\u062f \u0647\u0627"],"Downloads Remaining":["\u062f\u0627\u0646\u0644\u0648\u062f \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647"],"Draft":["\u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633"],"Draft (%d)":["\u067e\u06cc\u0634\u0646\u0648\u06cc\u0633  (%d)"],"Draft \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"Drag and drop, or click to set admin variation order":["\u0628\u0627 \u06a9\u0634\u06cc\u062f\u0646 \u0648 \u0631\u0647\u0627 \u06a9\u0631\u062f\u0646 \u06cc\u0627 \u06a9\u0644\u06cc\u06a9 \u0645\u062a\u063a\u06cc\u0631 \u0645\u062f\u06cc\u0631 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634 \u062a\u0639\u06cc\u06cc\u0646 \u06a9\u0646\u06cc\u062f"],"Driving License":["\u06af\u0648\u0627\u0647\u06cc \u0646\u0627\u0645\u0647 \u0631\u0627\u0646\u0646\u062f\u06af\u06cc"],"Due to finish your Package validation we are canceling your Subscription Package":["\u0633\u0631\u0631\u0633\u06cc\u062f \u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0631\u0633\u06cc\u062f\u0647 \u0627\u0633\u062a \u060c\u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u0627\u0632 \u0637\u0631\u0641 \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u0645\u06cc \u0634\u0648\u062f"],"Duplicate":["\u062a\u06a9\u0631\u0627\u0631\u06cc"],"Duplicate Orders":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc"],"Duplicate product":["\u062a\u06a9\u062b\u06cc\u0631 \u0645\u062d\u0635\u0648\u0644"],"Duration :":["\u0645\u062f\u062a:"],"Dutch":["\u0647\u0644\u0646\u062f\u06cc"],"E-mail":["\u0627\u06cc\u0645\u06cc\u0644"],"E-mail Address":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644"],"Each receiver":["\u0647\u0631 \u06af\u06cc\u0631\u0646\u062f\u0647 "],"Earning":["\u062f\u0631\u0622\u0645\u062f"],"Earning Rate":["\u0645\u06cc\u0632\u0627\u0646 \u062f\u0631\u0622\u0645\u062f"],"Earning Reports":["\u06af\u0632\u0627\u0631\u0634 \u062f\u0631\u0622\u0645\u062f"],"Edit":["\u0648\u06cc\u0631\u0627\u06cc\u0634"],"Edit Announcement":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"Edit Auction Products":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062d\u0631\u0627\u062c "],"Edit Booking":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0632\u0631\u0648"],"Edit Booking Product":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"Edit Coupon":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0646 \u062e\u0631\u06cc\u062f"],"Edit Resource":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u0648\u062c\u0648\u062f\u06cc"],"Edit Shipping Methods":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Edit Staff":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0645\u0646\u062f"],"Edit Topic":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u0648\u0636\u0648\u0639"],"Edit auction product":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c"],"Edit booking product":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"Edit review":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0638\u0631\u0627\u062a"],"Edited Product Status":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644"],"Email":["\u0627\u06cc\u0645\u06cc\u0644"],"Email Address":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 "],"Email Restrictions":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u0627\u06cc\u0645\u06cc\u0644"],"Email Subject":["\u0645\u0648\u0636\u0648\u0639 \u0627\u06cc\u0645\u06cc\u0644"],"Email Verification":["\u0627\u06cc\u0645\u06cc\u0644 \u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647"],"Email body":["\u0628\u062f\u0646\u0647 \u0627\u06cc\u0645\u06cc\u0644"],"Email has been sent successfully.":["\u0627\u06cc\u0645\u06cc\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f."],"Email heading":["\u0647\u062f\u06cc\u0646\u06af(\u0639\u0646\u0648\u0627\u0646) \u0627\u06cc\u0645\u06cc\u0644"],"Email must be required":["\u0627\u06cc\u0645\u06cc\u0644 \u0627\u0644\u0632\u0627\u0645\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"Email notification on new product submission":["\u0627\u0631\u0633\u0627\u0644 \u0647\u0634\u062f\u0627\u0631 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u062b\u0628\u062a \u0634\u062f"],"Email restrictions":["\u0628\u0647 \u062c\u0632 \u0627\u06cc\u0645\u06cc\u0644"],"Email sent successfully!":["\u0633\u0648\u0627\u0644 \u0634\u0645\u0627 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f(\u0628\u0647 \u0632\u0648\u062f\u06cc \u067e\u0627\u0633\u062e \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0634\u0645\u0627 \u0641\u0631\u0633\u062a\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f) "],"Email type":["\u0646\u0648\u0639 \u0627\u06cc\u0645\u06cc\u0644"],"Email:":["\u067e\u0633\u062a \u0627\u0644\u06a9\u062a\u0631\u0648\u0646\u06cc\u06a9:"],"Empty email address":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a"],"Empty license key":["\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a"],"Empty response.":["\u067e\u0627\u0633\u062e \u062e\u0627\u0644\u06cc"],"Enable Bitcoin Currency in Stripe Checkout":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u0631\u0632 Bitcoin \u062f\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0637 "],"Enable Calendar Range Picker?":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u06af\u0631 \u0645\u062d\u062f\u0648\u062f\u0647 \u062a\u0642\u0648\u06cc\u0645\u061f"],"Enable Email Notification":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u0639\u0644\u0627\u0646 \u0627\u06cc\u0645\u06cc\u0644"],"Enable Email Verification":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644"],"Enable Live Chat":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u06af\u0641\u062a\u06af\u0648\u06cc \u0632\u0646\u062f\u0647"],"Enable PayPal Adaptive":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 PayPal Adaptive "],"Enable PayPal sandbox":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 sandbox \u067e\u06cc \u067e\u0627\u0644"],"Enable Product Subscription":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u062d\u0635\u0648\u0644"],"Enable Reviews":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u0634\u0627\u0647\u062f\u0647"],"Enable Shipping":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Enable Single Product Multiple Vendor":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0686\u0646\u062f \u0641\u0631\u0634\u0646\u062f\u0647"],"Enable Single Product Multiple Vendor functionality":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0686\u0646\u062f \u0641\u0631\u0634\u0646\u062f\u0647"],"Enable Social Login":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648\u0631\u0648\u062f \u0628\u0647 \u0633\u06cc\u0633\u062a\u0645 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"Enable Stripe":["\u0641\u0639\u0627\u0644 \u0646\u0645\u0648\u062f\u0646 \u0645\u062d\u0631\u0645\u0627\u0646\u0647"],"Enable Stripe Checkout":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a\u0631\u06cc\u067e"],"Enable Subscription in registration form":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u062f\u0631 \u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"Enable Subscription pack in registration form for new vendor":["\u0628\u0633\u062a\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u062f\u0631 \u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062c\u062f\u06cc\u062f \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"Enable Support":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"Enable Terms and Condition":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0642\u0648\u0627\u0646\u06cc\u0646"],"Enable Terms and Condition check on registration form":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0642\u0648\u0627\u0646\u06cc\u0646 \u062f\u0631 \u0641\u0631\u0645 \u062b\u0628\u062a"],"Enable Test Mode":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0627\u0644\u062a \u062a\u0633\u062a"],"Enable automatic relisting for this auction":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u0632\u0627\u06cc\u062f\u0647 "],"Enable bulk discount":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062a\u062e\u0641\u06cc\u0641 \u06a9\u0644\u06cc"],"Enable live chat between vendor and customer":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u06af\u0641\u062a\u06af\u0648\u06cc \u0632\u0646\u062f\u0647 \u0628\u06cc\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0648 \u0645\u0634\u062a\u0631\u06cc"],"Enable logging":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u0644\u0627\u06af"],"Enable notification by email for vendor during end of the package expiration":["\u0627\u0639\u0644\u0627\u0646 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u062f\u0631 \u067e\u0627\u06cc\u0627\u0646 \u0627\u0646\u0642\u0636\u0627\u06cc \u067e\u06a9\u06cc\u062c \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"Enable person types":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u0627\u0646\u0648\u0627\u0639 \u0627\u0641\u0631\u0627\u062f"],"Enable product reviews":["\u0628\u0631\u0631\u0633\u06cc (\u0646\u0638\u0631\u0627\u062a) \u0631\u0627 \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0641\u0639\u0627\u0644 \u0645\u06cc\u06a9\u0646\u062f"],"Enable product subscription for vendor":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"Enable proxy bidding for this auction product":["\u0645\u0632\u0627\u06cc\u062f\u0647 \u067e\u0631\u0648\u06a9\u0633\u06cc \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"Enable saved cards":["\u06a9\u0627\u0631\u062a \u0647\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"Enable sealed bidding for this auction product":["\u0645\u0632\u0627\u06cc\u062f\u0647 \u0645\u0647\u0631 \u0648 \u0645\u0648\u0645 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"Enable shipping functionality":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Enable stock management at product level":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0631 \u0633\u0637\u062d \u0645\u062d\u0635\u0648\u0644"],"Enable store shipping":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Enable storewide discount":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062a\u062e\u0641\u06cc\u0641 \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Enable this email notification":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc\u0645\u06cc\u0644\u06cc"],"Enable this option if a product is not shipped or there is no shipping cost":["\u0627\u06af\u0631 \u0645\u062d\u0635\u0648\u0644 \u062d\u0645\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f \u0648 \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f\u060c\u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"Enable this option if access is given to a downloadable file upon purchase of a product":["\u0627\u06af\u0631 \u062a\u0645\u0627\u06cc\u0644 \u062f\u0627\u0631\u06cc\u062f \u0628\u0647 \u0645\u062d\u0636 \u062e\u0631\u06cc\u062f \u0627\u062c\u0627\u0632\u0647 \u062f\u0627\u0646\u0644\u0648\u062f \u0635\u0627\u062f\u0631 \u0634\u0648\u062f \u0627\u06cc\u0646 \u0642\u0633\u0645\u062a \u0631\u0627 \u062a\u06cc\u06a9 \u0628\u0632\u0646\u06cc\u062f"],"Enable this option if access will be given to a downloadable file upon the purchase of a product":["\u0627\u06af\u0631 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0641\u0627\u06cc\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f \u067e\u0633 \u0627\u0632 \u062e\u0631\u06cc\u062f \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"Enable this option to enable stock management at variation level":["\u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0631 \u0633\u0637\u0648\u062d \u0645\u062e\u062a\u0644\u0641 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"Enable this to multiply the entire cost of the booking (block and base costs) by the person count.":["\u0627\u06cc\u0646 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u06a9\u0644 \u0647\u0632\u06cc\u0646\u0647 \u0631\u0632\u0631\u0648 (\u0647\u0632\u06cc\u0646\u0647 \u0628\u0644\u0648\u06a9 \u0648 \u067e\u0627\u06cc\u0647) \u0631\u0627 \u062a\u0648\u0633\u0637 \u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f \u0636\u0631\u0628 \u06a9\u0646\u06cc\u062f."],"Enable vendors to set shipping cost per product and per country":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u062a\u0646\u0638\u06cc\u0645 \u0647\u0632\u06cc\u0646\u0647 \u0627\u0631\u0633\u0627\u0644 \u0628\u0631\u0627\u06cc \u0647\u0631 \u06a9\u0627\u0644\u0627 \u0648 \u0647\u0631 \u06a9\u0634\u0648\u0631 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Enable/Disable":["\u0641\u0639\u0627\u0644/\u063a\u06cc\u0631\u0641\u0639\u0627\u0644"],"Enable/Disable product enquiry for guest user":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 / \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u0645\u0647\u0645\u0627\u0646"],"Enabled":["\u0641\u0639\u0627\u0644 \u0634\u062f\u0647"],"Enabling this will add Email verification after registration form to allow users to verify their emails":["\u0641\u0639\u0627\u200c\u0644\u200c\u0633\u0627\u0632\u06cc \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0639\u062f \u0627\u0632 \u0641\u0631\u0645 \u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc\u200c\u062f\u0647\u062f \u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0645\u06cc\u0644\u060c \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u062a\u0627\u06cc\u06cc\u062f \u0634\u0648\u0646\u062f"],"Enabling this will add Social Icons under registration form to allow users to login or register using Social Profiles":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u0627\u06cc\u0646 \u0622\u06cc\u06a9\u0648\u0646 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u0631\u0627 \u062a\u062d\u062a \u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u0628\u0631\u0627\u06cc \u0648\u0631\u0648\u062f \u0628\u0647 \u0633\u06cc\u0633\u062a\u0645 \u0648 \u06cc\u0627 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"End Date":["\u062a\u0627\u0631\u06cc\u062e \u0627\u062a\u0645\u0627\u0645"],"End Date :":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646:"],"End date":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646"],"English":["\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc"],"Enter Subject text for email notification":["\u0645\u062a\u0646 \u0645\u0648\u0636\u0648\u0639 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639 \u0631\u0633\u0627\u0646\u06cc \u0627\u06cc\u0645\u06cc\u0644 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter a SKU for this variation or leave blank to use the parent product SKU.":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u06a9 \u0648\u0627\u062d\u062f \u0646\u06af\u0647\u062f\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc (Stock keeping unit) \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f  \u06cc\u0627 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f \u0627\u0632 \u0648\u0627\u062d\u062f \u0646\u06af\u0647\u062f\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc (Stock keeping unit \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0645\u0627\u062f\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"Enter a cost (excl. tax) or sum, e.g. \u003Ccode\u003E10.00 * [qty]\u003C/code\u003E. Use \u003Ccode\u003E[qty]\u003C/code\u003E for the number of items, \u003Ccode\u003E[cost]\u003C/code\u003E for the total cost of items, and \u003Ccode\u003E[fee percent='10' min_fee='20' max_fee='']\u003C/code\u003E for percentage based fees.":["\u0647\u0632\u06cc\u0646\u0647 (\u0628\u062f\u0648\u0646 \u0645\u0627\u0644\u06cc\u0627\u062a) \u06cc\u0627 \u0645\u0628\u0644\u063a \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f\u060c \u0628\u0631\u0627\u06cc \u0645\u062b\u0627\u0644 \u003Ccode\u003E 1000 * [qty] \u003C/code\u003E. \u0627\u0632 \u003Ccode\u003E [qty] \u003C/code\u003E \u0628\u0631\u0627\u06cc \u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u060c \u0627\u0632 \u003Ccode\u003E [cost] \u003C/code\u003E \u0628\u0631\u0627\u06cc \u06a9\u0644 \u0647\u0632\u06cc\u0646\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u060c \u0648 \u0627\u0632\u003Ccode\u003E[fee percent='10' min_fee='20' max_fee='']\u003C/code\u003E\u0628\u0631\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u062f\u0631\u0635\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"Enter a cost for this rule. Applied to each booking block.":["\u0647\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0642\u0627\u0646\u0648\u0646 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u0628\u0647 \u0647\u0631 \u0628\u0644\u0648\u06a9 \u0631\u0632\u0631\u0648 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f."],"Enter a cost for this rule. Applied to the booking as a whole.":["\u0647\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0642\u0627\u0646\u0648\u0646 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u0628\u0647 \u0637\u0648\u0631 \u06a9\u0644\u06cc \u0628\u0647 \u0631\u0632\u0631\u0648 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f."],"Enter a name for the new resource":["\u06cc\u06a9 \u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc \u062c\u062f\u06cc\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f:"],"Enter a quantity to enable stock management at variation level, or leave blank to use the parent product's options.":["\u06cc\u06a9 \u0645\u0642\u062f\u0627\u0631 \u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0631 \u0633\u0637\u062d \u0645\u062e\u062a\u0644\u0641 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u06a9\u0627\u062f\u0631 \u062e\u0627\u0644\u06cc \u06af\u0630\u0627\u0634\u062a\u0647 \u0648 \u0627\u0632 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0648\u0627\u0644\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f."],"Enter a weight for this variation or leave blank to use the parent product weight.":["\u0648\u0632\u0646 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u0628\u0627 \u062e\u0627\u0644\u06cc \u06af\u0630\u0627\u0634\u062a\u0646 \u0627\u0646 \u0627\u0632 \u0648\u0632\u0646 \u067e\u0627\u06cc\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f."],"Enter body text for email notification":["\u0645\u062a\u0646 \u0628\u062f\u0646\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639 \u0631\u0633\u0627\u0646\u06cc \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter method title":["\u0639\u0646\u0648\u0627\u0646 \u0631\u0648\u0634 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter no of validity days you want to give this pack ":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632 \u0647\u0627\u06cc\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u067e\u06a9\u06cc\u062c  \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter recipients (comma separated) for this email. Defaults to %s.":["\u06af\u06cc\u0631\u0646\u062f\u06af\u0627\u0646 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f (\u0628\u0627 \u06a9\u0627\u0645\u0627 \u0627\u0632 \u0647\u0645 \u062c\u062f\u0627 \u0634\u062f\u0647) \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644. \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0628\u0647 %s."],"Enter some text, or some attributes by \"%s\" separating values.":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0645\u062a\u0646\u060c \u06cc\u0627 \u062e\u0635\u0648\u0635\u06cc\u062a \u0647\u0627\u06cc\u06cc \u0628\u0627 \u0645\u0642\u0627\u062f\u06cc\u0631 \u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647 \"%s\" \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter the E-mail address that was used for purchasing the plugin and the license key.":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644\u06cc \u06a9\u0647 \u0628\u0631\u0627\u06cc \u062e\u0631\u06cc\u062f \u067e\u0644\u0627\u06af\u06cc\u0646 \u0648 \u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0642\u0631\u0627\u0631 \u06af\u0631\u0641\u062a \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Enter the no of product you want to give this package.":["\u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u067e\u06a9\u06cc\u062c  \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Enter the number of days before a download link expires, or leave blank.":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632\u06cc \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0642\u0628\u0644 \u0627\u0632 \u0622\u0646 \u06cc\u06a9 \u0644\u06cc\u0646\u06a9 \u062f\u0627\u0646\u0644\u0648\u062f \u0645\u0646\u0642\u0636\u06cc \u0645\u06cc \u0634\u0648\u062f\u060c \u06cc\u0627 \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f."],"Enter your PayPal API credentials to unlock subscription suspension and cancellation features. %sLearn More &raquo;%s":["\u06af\u0648\u0627\u0647\u06cc \u0646\u0627\u0645\u0647 PayPal API \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u062a\u0639\u0644\u06cc\u0642 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0648 \u0644\u063a\u0648 \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f. %s \u0628\u06cc\u0634\u062a\u0631 \u0628\u062e\u0648\u0627\u0646\u06cc\u062f & raquo; %s"],"Enter your first name":["\u0646\u0627\u0645 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter your license key":["\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter your phone number":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter your purchase Email address":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0631\u06cc\u062f  \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter your shop address":["\u0622\u062f\u0631\u0633 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Enter your shop name":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Error Message":["\u067e\u06cc\u0627\u0645 \u062e\u0637\u0627"],"Error Occured":["\u062e\u0637\u0627\u06cc\u06cc \u0631\u062e \u062f\u0627\u062f\u0647 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b \u0645\u062c\u062f\u062f\u0627\u064b \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f."],"Error!":["\u062e\u0637\u0627!"],"Error: ":["\u062e\u0637\u0627: "],"Error: Nonce verification failed":["\u062e\u0637\u0627: \u062a\u0627\u06cc\u06cc\u062f \u0628\u0627 \u0634\u06a9\u0633\u062a \u0645\u0648\u0627\u062c\u0647 \u0634\u062f"],"Every second product of same type will be charged with this price":["\u0647\u0631 \u0645\u062d\u0635\u0648\u0644 \u062f\u0648\u0645 \u0628\u0627 \u0627\u06cc\u0646 \u0642\u06cc\u0645\u062a \u0627\u0632 \u0647\u0645\u0627\u0646 \u0646\u0648\u0639 \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"Ex: Refund - $date \u003Eby\u003C $username\u0004by":["\u0628\u0631\u0627\u0633\u0627\u0633"],"Exclude Sale Items":["\u062d\u0630\u0641 \u0622\u06cc\u062a\u0645 \u0647\u0627\u06cc \u0641\u0631\u0648\u0634"],"Exclude product categories":["\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0627\u06cc\u0646 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627"],"Exclude products":["\u062d\u0630\u0641 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Expire Date":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627"],"Expires":["\u0645\u0646\u0642\u0636\u06cc"],"Expires %s/%s":["\u0627\u0646\u0642\u0636\u0627  %s/%s"],"Expiring in %s":["\u0627\u0646\u062a\u0642\u0636\u0627 \u062a\u0627 %s"],"Expiry date":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627\u0621"],"Export":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc"],"Export All":["\u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0647\u0645\u0647"],"Export CSV":["\u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc CSV"],"Export Products":["\u062e\u0631\u0648\u062c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0627\u0632 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Export XML":["\u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc XML"],"Export all columns":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0647\u0645\u0647 \u0633\u062a\u0648\u0646\u200c\u0647\u0627"],"Export all products":["\u062a\u0645\u0627\u0645 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0635\u0627\u062f\u0631 \u06a9\u0646 "],"Export custom meta?":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0645\u062a\u0627\u06cc \u062f\u0644\u062e\u0648\u0627\u0647\u061f"],"Export products to a CSV file":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0628\u0647 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 CSV"],"External URL":["\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u062e\u0627\u0631\u062c\u06cc"],"External product":["\u0645\u062d\u0635\u0648\u0644 \u062e\u0627\u0631\u062c\u06cc "],"External/Affiliate":["\u062e\u0627\u0631\u062c\u06cc / \u0648\u0627\u0628\u0633\u062a\u0647"],"Extra Options":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u06cc\u0634\u062a\u0631"],"Facebook":["\u0641\u06cc\u0633 \u0628\u0648\u06a9"],"Facebook App Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u0641\u06cc\u0633 \u0628\u0648\u06a9"],"Facebook Description :":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0641\u06cc\u0633 \u0628\u0648\u06a9 :"],"Facebook Image :":["\u062a\u0635\u0648\u06cc\u0631 \u0641\u06cc\u0633 \u0628\u0648\u06a9 :"],"Facebook Title :":["\u0639\u0646\u0648\u0627\u0646 \u0641\u06cc\u0633 \u0628\u0648\u06a9:"],"Failed to import %s %s":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s %s"],"Failed to import %s &#8220;%s&#8221;":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s &#8220;%s&#8221;"],"Failed to import %s product":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0645\u062d\u0635\u0648\u0644 %s \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f"],"Failed to import &#8220;%s&#8221;: Invalid post type %s":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f &#8220;%s&#8221;: \u0646\u0648\u0639 \u067e\u0633\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a %s"],"Failed to import category %s":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062f\u0633\u062a\u0647 \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s"],"Failed to import post tag %s":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062a\u06af \u067e\u0633\u062a \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s"],"Featured Vendor":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0648\u06cc\u0698\u0647"],"February":["\u0641\u0648\u0631\u06cc\u0647"],"Fee":["\u0647\u0632\u06cc\u0646\u0647"],"Fee Name":["\u0646\u0627\u0645 \u0647\u0632\u06cc\u0646\u0647"],"Fees Payer":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u0646\u062f\u0647"],"Fetching attachments is not enabled":["\u067e\u06cc\u0648\u0633\u062a \u0647\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a\u06cc \u0641\u0639\u0627\u0644 \u0646\u06cc\u0633\u062a\u0646\u062f"],"File Name":["\u0646\u0627\u0645 \u067e\u0631\u0648\u0646\u062f\u0647:"],"File URL":["\u0622\u062f\u0631\u0633 \u0641\u0627\u06cc\u0644"],"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.":["\u067e\u0631\u0648\u0646\u062f\u0647 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a \u0644\u0637\u0641\u0627 \u0686\u06cc\u0632\u06cc \u0645\u0647\u0645 \u062a\u0631 \u0631\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0646\u06cc\u062f. \u0627\u06cc\u0646 \u062e\u0637\u0627 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0646\u0627\u0634\u06cc \u0627\u0632 \u0622\u067e\u0644\u0648\u062f \u0647\u0627\u06cc\u06cc \u06a9\u0647 \u062f\u0631 php.ini \u0634\u0645\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a \u06cc\u0627 \u062a\u0648\u0633\u0637 post_max_size \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u06a9\u0648\u0686\u06a9\u062a\u0631 \u0627\u0632 upload_max_filesize \u062f\u0631 php.ini \u062a\u0639\u0631\u06cc\u0641 \u0634\u0648\u062f."],"Filter Bookings":["\u0641\u06cc\u0644\u062a\u0631 \u0631\u0632\u0631\u0648"],"Finnish":["\u0641\u0646\u0644\u0627\u0646\u062f\u06cc"],"First Name":["\u0646\u0627\u0645 \u06a9\u0648\u0686\u06a9"],"First Name must be required":["\u0646\u0627\u0645 \u0627\u0644\u0632\u0627\u0645\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"First block starts at...":["\u0645\u06a9\u0627\u0646 \u0627\u0648\u0644 \u0634\u0631\u0648\u0639 \u0645\u06cc \u0634\u0648\u062f \u062f\u0631 ..."],"Fixed Amount":["\u0645\u0642\u062f\u0627\u0631 \u062b\u0627\u0628\u062a"],"Fixed blocks of":["\u0628\u0644\u0627\u06a9 \u062b\u0627\u0628\u062a"],"Flat":["\u062b\u0627\u0628\u062a"],"Flat Rate":["\u0646\u0631\u062e \u062b\u0627\u0628\u062a"],"For this payment method your need an application credential":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0631\u0648\u0634 \u067e\u0631\u062f\u0627\u062e\u062a\u060c \u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u0627\u0639\u062a\u0628\u0627\u0631\u0646\u0627\u0645\u0647 \u06a9\u0627\u0631\u0628\u0631\u062f\u06cc \u062f\u0627\u0631\u06cc\u062f "],"For this system please sign up in developer account and get your  application credential":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0633\u06cc\u0633\u062a\u0645 \u0644\u0637\u0641\u0627 \u062f\u0631 \u062d\u0633\u0627\u0628 \u062a\u0648\u0633\u0639\u0647 \u062f\u0647\u0646\u062f\u0647 \u062b\u0628\u062a \u0646\u0627\u0645 \u06a9\u0646\u06cc\u062f \u0648 \u0645\u062f\u0627\u0631\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0634\u0645\u0627 \u0631\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0646\u06cc\u062f "],"For\u003Cbr /\u003E\u003Cstrong\u003E%s\u003C/strong\u003E Days\u003C/div\u003E":["\u0628\u0631\u0627\u06cc \u003Cbr /\u003E\u003Cstrong\u003E%s\u003C/strong\u003E \u0631\u0648\u0632\u003C/div\u003E"],"For\u003Cbr /\u003E\u003Cstrong\u003EUnlimited\u003C/strong\u003E Days\u003C/div\u003E":["\u0628\u0631\u0627\u06cc\u003Cbr /\u003E\u003Cstrong\u003E\u0646\u0627\u0645\u062d\u062f\u0648\u062f\u003C/strong\u003E \u0631\u0648\u0632\u003C/div\u003E"],"Free":["\u0631\u0627\u06cc\u06af\u0627\u0646"],"Free Shipping":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646"],"French":["\u0641\u0631\u0627\u0646\u0633\u0648\u06cc"],"Friday":["\u062c\u0645\u0639\u0647"],"From":["\u0627\u0632"],"From Number":["\u0627\u0632 \u0634\u0645\u0627\u0631\u0647"],"From:":["\u0627\u0632:"],"Gateway Disabled":["\u062f\u0631\u0648\u0627\u0632\u0647 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"General Options":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0639\u0645\u0648\u0645\u06cc"],"Generate CSV":["\u0633\u0627\u062e\u062a \u0641\u0627\u06cc\u0644 CSV"],"German":["\u0622\u0644\u0645\u0627\u0646\u06cc"],"Get Shipping Cost":["\u062f\u0631\u06cc\u0627\u0641\u062a \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Get Support":["\u062f\u0631\u06cc\u0627\u0641\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"Get your API keys from your stripe account.":["\u06a9\u0644\u06cc\u062f API \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u062e\u0648\u062f \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0646\u06cc\u062f."],"Get your client ID from your stripe account, the Apps menu.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0634\u062a\u0631\u06cc \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u062e\u0648\u062f\u060c \u0645\u0646\u0648\u06cc \u0628\u0631\u0646\u0627\u0645\u0647 \u0647\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0646\u06cc\u062f."],"Go Back":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0642\u0628\u0644\u06cc"],"Go to Dashboard &rarr;":["\u0628\u0631\u0648 \u0628\u0647 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 &rarr;"],"Go to Vacation":["\u0631\u0641\u062a\u0646 \u0628\u0647 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a"],"Google App Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u06af\u0648\u06af\u0644"],"Google+":["\u06af\u0648\u06af\u0644 \u067e\u0644\u0627\u0633"],"Gross Sales":["\u0641\u0631\u0648\u0634 \u0646\u0627\u062e\u0627\u0644\u0635"],"Group Product":["\u0645\u062d\u0635\u0648\u0644 \u06af\u0631\u0648\u0647"],"Grouped":["\u06af\u0631\u0648\u0647 \u0628\u0646\u062f\u06cc \u0634\u062f\u0647"],"Grouped products":["\u06af\u0631\u0648\u0647 \u0628\u0646\u062f\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Guest Product Enquiry":["\u0645\u0634\u0627\u0648\u0631\u0647 \u0645\u0647\u0645\u0627\u0646 "],"Has persons":["\u062f\u0627\u0631\u0627\u06cc \u0627\u0641\u0631\u0627\u062f"],"Has resources":["\u062f\u0627\u0631\u0627\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc"],"Have fun!":["\u0634\u0627\u062f \u0628\u0627\u0634\u06cc\u062f!"],"Height (%s)":["\u0627\u0631\u062a\u0641\u0627\u0639 (%s) "],"Hello %s":["\u0633\u0644\u0627\u0645  %s"],"Hello there,":["\u0633\u0644\u0627\u0645,"],"Hello,":["\u0633\u0644\u0627\u0645 \u060c"],"Hi":["\u0633\u0644\u0627\u0645"],"Hi ":["\u0633\u0644\u0627\u0645 "],"Hi there! Upload a CSV file containing tax rates to import the contents into your shop. Choose a .csv file to upload, then click \"Upload file and import\".":["\u0633\u0644\u0627\u0645! \u0641\u0627\u06cc\u0644 CSV \u062d\u0627\u0648\u06cc \u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a\u06cc \u0645\u0631\u06a9\u0632 \u062e\u062f\u0645\u0627\u062a \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f. \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0628\u0627 \u067e\u0633\u0648\u0646\u062f csv \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0648 \u06a9\u0644\u06cc\u062f \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0648 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0631\u0627 \u0628\u0632\u0646\u06cc\u062f. "],"Hi,":["\u0633\u0644\u0627\u0645\u060c"],"Hi, %s":["\u0633\u0644\u0627\u0645\u060c %s"],"Hidden":["\u067e\u0646\u0647\u0627\u0646"],"Hide Customer info":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0634\u062a\u0631\u06cc"],"Hide Withdraw Option":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0631\u062f\u0627\u0634\u062a"],"Hide advanced options":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u0631\u0641\u062a\u0647"],"Hide customer information from order details of vendors":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0634\u062a\u0631\u06cc \u0631\u0627 \u0627\u0632 \u062c\u0632\u0626\u06cc\u0627\u062a \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u067e\u0646\u0647\u0627\u0646 \u06a9\u0646\u06cc\u062f"],"Hide withdraw option (when vendor is getting commission automatically) ":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u06af\u0632\u06cc\u0646\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u062c\u0647 (\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0647 \u0637\u0648\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0631\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u0645\u06cc\u200c\u06a9\u0646\u062f)"],"Hour(s)":["\u0633\u0627\u0639\u062a(\u0647\u0627)"],"How many times the coupon can be used in total.":["\u0686\u0646\u062f \u0628\u0627\u0631 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u06a9\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"How many times the coupon can be used per customer.":["\u0686\u0646\u062f \u0628\u0627\u0631 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0647\u0631 \u0645\u0634\u062a\u0631\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"How may I help you?":["\u0686\u06af\u0648\u0646\u0647 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u0645 \u0628\u0647 \u0634\u0645\u0627 \u06a9\u0645\u06a9 \u06a9\u0646\u0645\u061f"],"How much (%) a vendor will get from each order, Leave empty ( not \"0\" ) if you don't apply any ovverride":["\u0686\u0642\u062f\u0631 (\u066a) \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0632 \u0647\u0631 \u0633\u0641\u0627\u0631\u0634 \u062f\u0631\u06cc\u0627\u0641\u062a \u0645\u06cc \u06a9\u0646\u06cc\u062f\u060c \u0627\u06af\u0631 \u0634\u0645\u0627 \u0647\u06cc\u0686 \u062a\u062e\u0645 \u0645\u0631\u063a\u06cc \u0631\u0627 \u0627\u0639\u0645\u0627\u0644 \u0646\u06a9\u0646\u06cc\u062f\u060c \u062e\u0627\u0644\u06cc (\u0646\u0647 \u201c0\u201d) "],"I am a customer":["\u0645\u0646 \u06cc\u06a9 \u0645\u0634\u062a\u0631\u06cc \u0647\u0633\u062a\u0645"],"I am a vendor":["\u0645\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0647\u0633\u062a\u0645"],"I have read and agree to the \u003Ca target=\"_blank\" href=\"%s\"\u003ETerms &amp; Conditions\u003C/a\u003E.":["\u0645\u0646 \u062e\u0648\u0627\u0646\u062f\u0647 \u0648 \u0642\u0628\u0648\u0644 \u0628\u0647 \u003Ca target=\"_blank\" href=\"%s\"\u003E\u0642\u0648\u0627\u0646\u06cc\u0646 &amp; \u0634\u0631\u0627\u06cc\u0637\u003C/a\u003E."],"ID":["\u0622\u06cc\u062f\u06cc"],"ID %d":["\u0634\u0646\u0627\u0633\u0647 %d"],"ID Verification":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u0646\u0627\u0633\u0647"],"ID: ":["\u0634\u0646\u0627\u0633\u0647: "],"IPN payment completed":["\u067e\u0631\u062f\u0627\u062e\u062a IPN \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"IPN subscription cancelled for order.":["\u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a."],"IPN subscription end-of-term for order.":["\u067e\u0627\u06cc\u0627\u0646 \u062f\u0648\u0631\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634."],"IPN subscription payment completed. txn_id#%s":["\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a. txn_id #%s"],"IPN subscription payment failed.":["\u0641\u0631\u0645 \u0631\u0633\u06cc\u062f \u062b\u0628\u062a \u0646\u0627\u0645 \u0634\u0645\u0627 \u06a9\u0646\u0633\u0644 \u0634\u062f "],"IPN subscription payment failure.":["\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f."],"IPN subscription sign up completed.":["\u0639\u0636\u0648\u06cc\u062a \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a."],"If a customer buys more than one type product from your store, first product of the every second type will be charged with this price":["\u0627\u06af\u0631 \u06cc\u06a9 \u0645\u0634\u062a\u0631\u06cc \u0627\u0642\u062f\u0627\u0645 \u0628\u0647 \u062e\u0631\u06cc\u062f \u06a9\u0627\u0644\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u06cc\u06a9 \u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u0627\u0632 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f\u060c \u0627\u0648\u0644\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0627\u0632 \u0647\u0631 \u0646\u0648\u0639 \u062f\u0648\u0645 \u0628\u0627 \u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u0634\u0627\u0631\u0698 \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"If a product being imported matches an existing product by ID or SKU, update the existing product rather than creating a new product or skipping the row.":[" \u0627\u06af\u0631 \u0645\u062d\u0635\u0648\u0644 \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0645\u0637\u0627\u0628\u0642 \u0645\u062d\u0635\u0648\u0644 \u0645\u0648\u062c\u0648\u062f \u0628\u0627 ID \u06cc\u0627 SKU \u0628\u0627\u0634\u062f\u060c \u0628\u0647 \u062c\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u06cc\u0627 \u0631\u062f \u0634\u062f\u0646 \u0627\u0632 \u0622\u0646\u060c \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f. "],"If enabled, an option to accept bitcoin will show on the checkout modal. Note: Stripe Checkout needs to be enabled and store currency must be set to USD.":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646\u060c \u06af\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0628\u0631\u0627\u06cc \u067e\u0630\u06cc\u0631\u0634 \u0628\u06cc\u062a \u06a9\u0648\u06cc\u0646 \u0628\u0631\u0631\u0648\u06cc \u0645\u0648\u062f\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f. \u0646\u06a9\u062a\u0647: \u0628\u0627\u06cc\u062f \u062a\u0623\u06cc\u06cc\u062f \u0635\u062d\u062a \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u0648 \u067e\u0648\u0644 \u0631\u0627 \u0628\u0631\u0627\u06cc USD \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f. "],"If enabled, this option shows a \"pay\" button and modal credit card form on the checkout, instead of credit card fields directly on the page.":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646\u060c \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u06cc\u06a9 \u062f\u06a9\u0645\u0647 \"\u067e\u0631\u062f\u0627\u062e\u062a\" \u0648 \u0641\u0631\u0645 \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u0645\u0648\u062f\u0627\u0644 \u0631\u0627 \u062f\u0631 \u067e\u0631\u062f\u0627\u062e\u062a\u060c \u0628\u0647 \u062c\u0627\u06cc \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u0628\u0647 \u0637\u0648\u0631 \u0645\u0633\u062a\u0642\u06cc\u0645 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0634\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f."],"If enabled, users will be able to pay with a saved card during checkout. Card details are saved on Stripe servers, not on your store.":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646\u060c \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0628\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0627\u0631\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u062f\u0631 \u0632\u0645\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc\u062a\u0648\u0627\u0646\u0646\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u0646\u062f. \u062c\u0632\u0626\u06cc\u0627\u062a \u06a9\u0627\u0631\u062a \u062f\u0631 \u0633\u0631\u0648\u0631 Stripe \u0630\u062e\u06cc\u0631\u0647 \u0645\u06cc \u0634\u0648\u062f\u060c \u0646\u0647 \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627."],"If not bookable, users won't be able to choose this block for their booking.":["\u0627\u06af\u0631 \u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648 \u0646\u0628\u0627\u0634\u062f\u060c \u06a9\u0627\u0631\u0628\u0631 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0628\u0644\u0627\u06a9 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0631\u0632\u0631\u0648\u0634\u0627\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u0646\u062f."],"If set, it will override global admin commission rate for this category":["\u0627\u06af\u0631 \u062a\u0646\u0638\u06cc\u0645 \u0634\u0648\u062f\u060c \u0646\u0631\u062e \u06a9\u0645\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u062a\u0627\u0633\u0631\u06cc \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u062f\u0633\u062a\u0647 \u0631\u0627 \u0628\u0631\u0637\u0631\u0641 \u0645\u06cc \u06a9\u0646\u062f"],"If the shipping price is same for all the states, use this field. If not, manually add the states below":["\u0627\u06af\u0631 \u0642\u06cc\u0645\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0647\u0645\u0647 \u06a9\u0634\u0648\u0631\u0647\u0627\u06cc \u06cc\u06a9\u0633\u0627\u0646  \u0627\u0633\u062a\u060c \u0627\u0632 \u0627\u06cc\u0646 \u0641\u06cc\u0644\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f. \u0627\u06af\u0631 \u0646\u0647\u060c \u062f\u0633\u062a\u06cc \u06a9\u0634\u0648\u0631\u0647\u0627\u06cc \u0632\u06cc\u0631 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"If true and if the free shipping method requires a coupon, this coupon will enable free shipping.":["\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f \u0648 \u0627\u06af\u0631 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u06a9\u0648\u067e\u0646 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u062f\u060c \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646 \u0631\u0627 \u0641\u0639\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f."],"If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.":["\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u06a9\u0648\u067e\u0646 \u062a\u0646\u0647\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0628\u0647 \u0635\u0648\u0631\u062a \u062c\u062f\u0627\u06af\u0627\u0646\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f. \u06a9\u0648\u067e\u0646 \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 \u0627\u0639\u0645\u0627\u0644 \u0634\u062f\u0647 \u0627\u0632 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u062d\u0630\u0641 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f."],"If true, this coupon will not be applied to items that have sale prices.":["\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0627\u0642\u0644\u0627\u0645\u06cc \u06a9\u0647 \u062f\u0627\u0631\u0627\u06cc \u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634 \u0647\u0633\u062a\u0646\u062f \u0627\u0639\u0645\u0627\u0644 \u0646\u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"If you want to configure zone wise shipping then":["\u0627\u06af\u0631 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0631\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u0646\u0637\u0642\u0647 \u0627\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f"],"If you want to use the previous shipping system then":["\u0627\u06af\u0631 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0632 \u0633\u06cc\u0633\u062a\u0645 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0642\u0628\u0644\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"Image":["\u0639\u06a9\u0633"],"Image Gallery":["\u06af\u0627\u0644\u0631\u06cc \u0639\u06a9\u0633"],"Images":["\u062a\u0635\u0627\u0648\u06cc\u0631"],"Import":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc"],"Import CSV":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc CSV"],"Import Products":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Import XML":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc XML"],"Import as meta":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 "],"Import complete - imported %s tax rates.":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0631\u0633\u06cc\u062f - \u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a\u06cc %s \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0634\u062f\u0646\u062f . "],"Import complete!":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f!"],"Import products from a CSV file":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062e\u062f\u0645\u0627\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 CSV "],"Import tax rates":["\u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a \u0648\u0627\u0631\u062f\u0627\u062a\u06cc "],"Importing":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc"],"In Stock":["\u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0627\u0646\u0628\u0627\u0631"],"In case it needs to be moderated  \u003Ca href=\"%s\"\u003E click here \u003C/a\u003E":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632 \u0628\u0627\u06cc\u062f \u0622\u0646 \u0631\u0627 \u062a\u062d\u062a \u06a9\u0646\u062a\u0631\u0644 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f\u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f \u003C/a\u003E"],"In every %d %s(s)":["\u062f\u0631 \u0647\u0631  %d %s (.)"],"In every %d %s(s)\u003C/div\u003E":["\u062f\u0631 \u0647\u0631  %d %s (.) "],"In stock":["\u0642\u0627\u0628\u0644 \u0641\u0631\u0648\u0634"],"In stock?":["\u062f\u0631 \u0627\u0646\u0628\u0627\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a "],"In this type of auction all bidders simultaneously submit sealed bids so that no bidder knows the bid of any other participant. The highest bidder pays the price they submitted. If two bids with same value are placed for auction the one which was placed first wins the auction.":["\u062f\u0631 \u0627\u06cc\u0646 \u0646\u0648\u0639 \u062d\u0631\u0627\u062c\u060c \u0647\u0645\u0647 \u062f\u0627\u0648\u0637\u0644\u0628\u0627\u0646 \u0628\u0647 \u0637\u0648\u0631 \u0647\u0645\u0632\u0645\u0627\u0646 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u0627\u062a \u0645\u0647\u0631 \u0648 \u0645\u0648\u0645 \u0631\u0627 \u0627\u0631\u0627\u0626\u0647 \u0645\u06cc \u062f\u0647\u0646\u062f \u062a\u0627 \u0647\u06cc\u0686 \u06cc\u06a9 \u0627\u0632 \u0637\u0631\u0641\u06cc\u0646 \u0627\u0639\u0644\u0627\u0645 \u0642\u06cc\u0645\u062a \u0647\u0631 \u0634\u0631\u06a9\u062a \u06a9\u0646\u0646\u062f\u0647 \u062f\u06cc\u06af\u0631 \u0631\u0627 \u0646\u0645\u06cc \u062f\u0627\u0646\u0646\u062f. \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u0646\u062f\u0647 \u0642\u06cc\u0645\u062a \u0631\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u06a9\u0646\u062f. \u0627\u06af\u0631 \u062f\u0648 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0628\u0627 \u0647\u0645\u0627\u0646 \u0627\u0631\u0632\u0634 \u0628\u0631\u0627\u06cc \u062d\u0631\u0627\u062c \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0647 \u0634\u0648\u062f\u060c \u0622\u0646 \u0686\u06cc\u0632\u06cc \u06a9\u0647 \u0642\u0631\u0627\u0631 \u0628\u0648\u062f \u0627\u0648\u0644 \u0628\u0631\u0646\u062f\u0647 \u0634\u0648\u062f. "],"In vacation":["\u062f\u0631 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a "],"Inbox":["\u0635\u0646\u062f\u0648\u0642"],"Information updated":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Insert App ID":["\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0634\u0646\u0627\u0633\u0647 \u0627\u067e"],"Insert App Secret":["\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0633\u06cc\u06a9\u0631\u062a \u0627\u067e"],"Insert file URL":["\u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u0622\u062f\u0631\u0633 \u0641\u0627\u06cc\u0644"],"Insert some comma separated keywords for better ranking of your store page.":["\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0628\u0631\u062e\u06cc \u0627\u0632 \u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc \u06a9\u0647 \u0628\u0627 \u06a9\u0627\u0645\u0627 \u0622\u0646 \u0647\u0627 \u0631\u0627 \u0627\u0632 \u0647\u0645 \u062c\u062f\u0627 \u06a9\u0646\u06cc\u062f \u0648 \u0627\u06cc\u0646 \u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc \u0628\u0627\u0639\u062b \u0628\u0647\u062a\u0631 \u0634\u062f\u0646 \u0631\u062a\u0628\u0647 \u0628\u0646\u062f\u06cc \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0645\u06cc \u0634\u0648\u062f."],"Inside Product Tab":["\u062f\u0631\u0648\u0646 \u062a\u0628 \u0645\u062d\u0635\u0648\u0644"],"Install Dokan Pages":["\u0646\u0635\u0628 \u0635\u0641\u062d\u0647 \u062f\u06a9\u0627\u0646 "],"Install Now":["\u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u0646\u0635\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f"],"Instantly Close":["\u0628\u0633\u062a\u0646 \u0641\u0648\u0631\u06cc"],"Invalid ID.":["\u0634\u0646\u0627\u0633\u0647 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"Invalid Refund ID":["\u0634\u0646\u0627\u0633\u0647 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"Invalid Resource Id":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u0628\u0639 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"Invalid Staff. Please visit":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0646\u0627\u0645\u0639\u062a\u0628\u0631. \u0644\u0637\u0641\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"Invalid Username or Password":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc \u06cc\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a"],"Invalid card.":["\u06a9\u0627\u0631\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"Invalid file type":["\u0646\u0648\u0639 \u0641\u0627\u06cc\u0644 \u063a\u06cc\u0631 \u0645\u062c\u0627\u0632 \u0627\u0633\u062a"],"Invalid file type. The importer supports CSV and TXT file formats.":["\u0646\u0648\u0639 \u0641\u0627\u06cc\u0644 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a. \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0641\u0631\u0645\u062a\u200c\u0647\u0627 \u0627\u0632 \u0641\u0627\u06cc\u0644 CSV \u0648 TXT \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f."],"Invalid module provided":["\u0645\u0627\u0698\u0648\u0644 \u0627\u0631\u0627\u0626\u0647 \u0634\u062f\u0647 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"Invalid nonce":["\u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u0642\u0628\u0648\u0644"],"Invalid product ID %d.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644 %d \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"Invalid product type.":["\u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u0646\u0627\u0645\u0639\u062a\u0628\u0631. "],"Invalid refund amount":["\u0645\u0642\u062f\u0627\u0631 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631"],"Invalid request type":["\u0646\u0648\u0639 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"Invalid response.":["\u067e\u0627\u0633\u062e \u0646\u0627\u062f\u0631\u0633\u062a"],"Invalid staff. Please visit":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0646\u0627\u0645\u0639\u062a\u0628\u0631. \u0644\u0637\u0641\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"Inventory":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"Is a global attribute?":["\u0622\u06cc\u0627 \u06cc\u06a9 \u0648\u06cc\u0698\u06af\u06cc \u062c\u0647\u0627\u0646\u06cc \u0627\u0633\u062a\u061f "],"Is featured?":["\u0648\u06cc\u0698\u0647 \u0627\u0633\u062a\u061f"],"It is \u003Cstrong\u003Estrongly recommended you do not change this email address\u003C/strong\u003E if you have active subscriptions with PayPal. Doing so can break existing subscriptions.":["\u003Cstrong\u003E \u0628\u0647 \u0634\u062f\u062a \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc \u0634\u0648\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u062f\u0647\u06cc\u062f  \u003Cstrong/\u003E \u0627\u06af\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0647\u0627\u06cc \u0641\u0639\u0627\u0644 \u0628\u0627 PayPal \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f. \u0627\u0646\u062c\u0627\u0645 \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0634\u062a\u0631\u0627\u06a9 \u0647\u0627\u06cc \u0641\u0639\u0644\u06cc \u0631\u0627 \u0627\u0632 \u0628\u06cc\u0646 \u0628\u0628\u0631\u062f."],"Italian":["\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627\u06cc\u06cc"],"Item":["\u0645\u062d\u0635\u0648\u0644"],"Item Quantity":["\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0631\u062f"],"Item Total":["\u0645\u062c\u0645\u0648\u0639 \u0645\u0648\u0631\u062f"],"Item condition":["\u0648\u0636\u0639\u06cc\u062a \u0622\u06cc\u062a\u0645"],"Items Sold":["\u0645\u0648\u0627\u0631\u062f \u0641\u0631\u0648\u062e\u062a\u0647 \u0634\u062f\u0647"],"January":["\u0698\u0627\u0646\u0648\u06cc\u0647"],"Japanese":["\u0698\u0627\u067e\u0646\u06cc"],"July":["\u062c\u0648\u0644\u0627\u06cc"],"June":["\u0698\u0648\u0626\u0646"],"Just type ...":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062c\u0633\u062a\u062c\u0648 \u06a9\u0646\u06cc\u062f..."],"Label":["\u0628\u0631\u0686\u0633\u0628"],"Language to display in Stripe Checkout modal. Specify Auto to display Checkout in the user's preferred language, if available. English will be used by default.":["\u0632\u0628\u0627\u0646 \u0628\u0631\u0627\u06cc \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0646 \u062e\u0637 \u0645\u0634\u06cc \u0645\u062f\u0631\u06a9 Checkout. \u0628\u0631\u0627\u06cc \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0632\u0628\u0627\u0646 \u062f\u0644\u062e\u0648\u0627\u0647 \u06a9\u0627\u0631\u0628\u0631\u060c \u0627\u06af\u0631 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0628\u0627\u0634\u062f\u060c Auto \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f. \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f."],"Last Modified":["\u0622\u062e\u0631\u06cc\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"Last Name":["\u0646\u0627\u0645 \u062e\u0644\u0627\u0646\u0648\u0627\u062f\u06af\u06cc"],"Last Name must be required":["\u0646\u0627\u0645 \u062e\u0627\u0646\u0648\u0627\u062f\u06af\u06cc \u0627\u0644\u0632\u0627\u0645\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"Latest Announcement":["\u0622\u062e\u0631\u06cc\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"Learn more":["\u0628\u06cc\u0634\u062a\u0631 \u0628\u062f\u0627\u0646\u06cc\u062f"],"Leave a Reply":["\u067e\u0627\u0633\u062e \u062f\u0647\u06cc\u062f"],"Leave blank for unlimited re-downloads.":["\u0628\u0631\u0627\u06cc \u0646\u0627\u0645\u062d\u062f\u0648\u062f\u0646 \u0628\u0648\u062f\u0646 \u062f\u0627\u0646\u0644\u0648\u062f \u0645\u062c\u062f\u062f \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f"],"Length (%s)":["\u0637\u0648\u0644 (%s)"],"Lets the user select a start and end date on the calendar - duration will be calculated automatically.":["\u0628\u0647 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc\u200c\u062f\u0647\u062f \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u0648 \u067e\u0627\u06cc\u0627\u0646 \u062f\u0631 \u062a\u0642\u0648\u06cc\u0645 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u062f - \u0645\u062f\u062a \u0632\u0645\u0627\u0646 \u0628\u0647 \u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0645\u062d\u0627\u0633\u0628\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"Lets you charge a rate for shipping":["\u0628\u0647 \u0634\u0645\u0627 \u0627\u0645\u06a9\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f \u062a\u0627 \u0646\u0631\u062e \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f"],"License Key":["\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632"],"Lifetime package.":["\u0628\u0633\u062a\u0647 \u0646\u0627\u0645\u062d\u062f\u0648\u062f."],"Limit":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062f\u062a"],"Limit result set to resources with a specific code.":["\u0646\u062a\u06cc\u062c\u0647 \u0645\u062d\u062f\u0648\u062f \u0628\u0631\u0627\u06cc \u0645\u0646\u0627\u0628\u0639 \u0628\u0627 \u06cc\u06a9 \u06a9\u062f \u062e\u0627\u0635 \u062a\u0646\u0638\u06cc\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a."],"Limit your zone location":["\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0645\u0648\u0642\u0639\u06cc\u062a \u0645\u0646\u0637\u0642\u0647"],"Link To":["\u0644\u06cc\u0646\u06a9 \u0628\u0647"],"Link all variations":["\u0644\u06cc\u0646\u06a9 \u062a\u0645\u0627\u0645 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"Linked Products":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u0631\u062a\u0628\u0637"],"Linkedin App Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u0644\u06cc\u0646\u06a9\u062f\u06cc\u0646"],"List of category IDs the coupon applies to.":["\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u062f\u0633\u062a\u0647 \u0627\u06cc \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0622\u0646 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f."],"List of category IDs the coupon does not apply to.":["\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u062f\u0633\u062a\u0647 \u0627\u06cc \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0622\u0646 \u0627\u0639\u0645\u0627\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f."],"List of email addresses that can use this coupon.":["\u0644\u06cc\u0633\u062a \u0622\u062f\u0631\u0633 \u0647\u0627\u06cc \u0627\u06cc\u0645\u06cc\u0644 \u06a9\u0647 \u0645\u06cc \u062a\u0648\u0627\u0646\u0646\u062f \u0627\u0632 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u0646\u062f."],"List of product IDs the coupon can be used on.":["\u0644\u06cc\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"List of product IDs the coupon cannot be used on.":["\u0644\u06cc\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"List of user IDs (or guest email addresses) that have used the coupon.":["\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc (\u06cc\u0627 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627\u06cc \u0645\u0647\u0645\u0627\u0646) \u06a9\u0647 \u0627\u0632 \u06a9\u0648\u067e\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f\u0647 \u0627\u0646\u062f."],"Live Chat":["\u06af\u0641\u062a\u06af\u0648\u06cc \u0632\u0646\u062f\u0647"],"Live Search":["\u062c\u0633\u062a\u062c\u0648\u06cc \u067e\u0648\u06cc\u0627"],"Live credentials":["\u0627\u0639\u062a\u0628\u0627\u0631\u0646\u0627\u0645\u0647 \u0647\u0627\u06cc \u0632\u0646\u062f\u0647"],"Local Pickup":["\u0648\u0627\u0646\u062a \u0645\u062d\u0644\u06cc"],"Location from where the products are shipped for delivery. Usually it is same as the store.":["\u0645\u062d\u0644 \u0633\u06a9\u0648\u0646\u062a \u06a9\u0647 \u062f\u0631 \u0622\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0628\u0631\u0627\u06cc \u062a\u062d\u0648\u06cc\u0644 \u062d\u0645\u0644 \u0645\u06cc \u0634\u0648\u062f. \u0645\u0639\u0645\u0648\u0644\u0627 \u0628\u0627 \u0622\u062f\u0631\u0633 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u06cc\u06a9\u0633\u0627\u0646 \u0627\u0633\u062a."],"Log PayPal events, such as IPN requests, inside \u003Ccode\u003Ewoocommerce/logs/paypal-%s.txt\u003C/code\u003E":["\u0648\u0631\u0648\u062f \u0631\u0648\u06cc\u062f\u0627\u062f\u0647\u0627\u06cc \u067e\u06cc \u067e\u0627\u0644\u060c \u0645\u0627\u0646\u0646\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a IPN\u060c \u062f\u0631 \u062f\u0627\u062e\u0644 \u003Ccode\u003Ewoocommerce/logs/paypal-%s.txt\u003C/code\u003E "],"Logged in":["\u0648\u0627\u0631\u062f\u0647 \u0634\u062f\u0647"],"Login":["\u0648\u0631\u0648\u062f"],"Login Notice":["\u0646\u06a9\u062a\u0647 \u0648\u0631\u0648\u062f"],"Logout":["\u062e\u0631\u0648\u062c \u0627\u0632 \u0633\u06cc\u0633\u062a\u0645"],"Make Active":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646"],"Make Inactive":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646"],"Make auction status enable for new registred vendor":["\u0648\u0636\u0639\u06cc\u062a \u062d\u0631\u0627\u062c \u0631\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062b\u0628\u062a \u0634\u062f\u0647 \u062c\u062f\u06cc\u062f \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"Manage Bookings":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0631\u0632\u0631\u0648"],"Manage Permissions":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0647\u0627"],"Manage Resources":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u06a9\u0627\u0646 \u0647\u0627"],"Manage Stock?":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc\u061f"],"Manage attributes":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627 "],"Manage attributes and variations for this variable product.":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627 \u0648 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627 \u0645\u062a\u063a\u06cc\u0631 \u0627\u0633\u062a."],"Manage attributes for this auction":["\u0648\u06cc\u0698\u06af\u06cc \u0647\u0627\u06cc \u0627\u06cc\u0646 \u062d\u0631\u0627\u062c \u0631\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u06a9\u0646\u06cc\u062f "],"Manage attributes for this simple product.":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0633\u0627\u062f\u0647 \u0627\u0633\u062a."],"Manage booking calendar":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062a\u0642\u0648\u06cc\u0645 \u0631\u0632\u0631\u0648"],"Manage booking products":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0632\u0631\u0648"],"Manage booking resource":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0646\u0627\u0628\u0639 \u0631\u0632\u0631\u0648"],"Manage bookings":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0631\u0632\u0631\u0648\u0647\u0627"],"Manage cards":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u06a9\u0627\u0631\u062a"],"Manage shipping and tax for this auction":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0648 \u0645\u0627\u0644\u06cc\u0627\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u0632\u0627\u06cc\u062f\u0647"],"Manage shipping and tax for this product":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0648 \u0645\u0627\u0644\u06cc\u0627\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627"],"Manage stock?":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc\u061f"],"Manage support ticket":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062a\u06cc\u06a9\u062a  \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"Manage your auction product data":["\u062f\u0627\u062f\u0647\u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u062e\u0648\u062f \u0631\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u06a9\u0646\u06cc\u062f "],"Map CSV fields to products":["\u0646\u0642\u0634\u0647 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc CSV \u0628\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a "],"Map to field":["\u0646\u0642\u0634\u0647 \u0628\u0647 \u0641\u06cc\u0644\u062f "],"March":["\u0645\u0627\u0631\u0633"],"Mark Approve":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067e\u0630\u06cc\u0631\u0641\u062a\u0646"],"Mark Not Spam":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0647\u0631\u0632\u0646\u0627\u0645\u0647 \u0646\u06cc\u0633\u062a"],"Mark Pending":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"Mark Spam":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0647\u0631\u0632\u0646\u0627\u0645\u0647"],"Mark Trash":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0632\u0628\u0627\u0644\u0647"],"Mark as Cancelled":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0644\u063a\u0648 \u0634\u062f\u0647"],"Max":["\u0628\u06cc\u0634\u062a\u0631\u06cc\u0646"],"Max bookings per block":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0631\u0632\u0631\u0648 \u062f\u0631 \u0647\u0631 \u0628\u0644\u0627\u06a9"],"Max number of items in the cart the coupon can be applied to.":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u06a9\u0647 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u0628\u0647 \u0622\u0646 \u0627\u0639\u0645\u0627\u0644 \u06a9\u0631\u062f."],"Max persons":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0627\u0641\u0631\u0627\u062f"],"Maximum booking window ( into the future )":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u067e\u0646\u062c\u0631\u0647 \u0631\u0632\u0631\u0648 (\u062f\u0631 \u0622\u06cc\u0646\u062f\u0647)"],"Maximum duration":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0645\u062f\u062a \u0632\u0645\u0627\u0646"],"Maximum order amount allowed when using the coupon.":["\u0645\u0642\u062f\u0627\u0631 \u062d\u062f\u0627\u06a9\u062b\u0631 \u0633\u0641\u0627\u0631\u0634 \u06a9\u0647 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0648\u067e\u0646 \u0645\u062c\u0627\u0632 \u0627\u0633\u062a."],"Maximum size: %s":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0627\u0646\u062f\u0627\u0632\u0647: %s"],"May":["\u0645\u06cc"],"Message":["\u067e\u06cc\u0627\u0645"],"Message :":["\u067e\u06cc\u063a\u0627\u0645:"],"Meta Description :":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0645\u062a\u0627 :"],"Meta ID.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u0627."],"Meta Keywords :":["\u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc \u0645\u062a\u0627:"],"Meta data.":["\u062f\u0627\u062f\u0647 \u0647\u0627\u06cc \u0645\u062a\u0627."],"Meta key.":["\u06a9\u0644\u06cc\u062f \u0645\u062a\u0627."],"Meta value.":["\u0645\u0642\u062f\u0627\u0631 \u0645\u062a\u0627."],"Meta: %s":["\u0645\u062a\u0627: %s"],"Method Title":["\u0639\u0646\u0648\u0627\u0646 \u0631\u0648\u0634"],"Method enable or disable not working":["\u0631\u0648\u0634 \u0641\u0639\u0627\u0644 \u06cc\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06a9\u0627\u0631 \u0646\u0645\u06cc \u06a9\u0646\u062f"],"Method title":["\u0639\u0646\u0648\u0627\u0646 \u0631\u0648\u0634"],"Min":["\u062d\u062f\u0627\u0642\u0644"],"Min persons":["\u062d\u062f\u0627\u0642\u0644 \u0634\u062e\u0635"],"Minimum Amount":["\u062d\u062f\u0627\u0642\u0644 \u0645\u0642\u062f\u0627\u0631"],"Minimum Order Amount":["\u062d\u062f\u0627\u0642\u0644 \u0645\u06cc\u0632\u0627\u0646 \u0633\u0641\u0627\u0631\u0634"],"Minimum booking window ( into the future )":["\u062d\u062f\u0627\u0642\u0644 \u067e\u0646\u062c\u0631\u0647 \u0631\u0632\u0631\u0648 (\u062f\u0631 \u0622\u06cc\u0646\u062f\u0647)"],"Minimum duration":["\u062d\u062f\u0627\u0642\u0644 \u0645\u062f\u062a \u0632\u0645\u0627\u0646"],"Minimum order amount for free shipping":["\u062d\u062f\u0627\u0642\u0644 \u0645\u0628\u0644\u063a \u0628\u0631\u0627\u06cc \u0627\u0631\u0633\u0627\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646"],"Minimum order amount that needs to be in the cart before coupon applies.":["\u0645\u0642\u062f\u0627\u0631 \u062d\u062f\u0627\u0642\u0644 \u0633\u0641\u0627\u0631\u0634 \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0648\u067e\u0646 \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0628\u0627\u0634\u062f."],"Minimum order total is 0.50":["\u062d\u062f\u0627\u0642\u0644 \u0645\u0642\u062f\u0627\u0631 \u06a9\u0644 \u0633\u0641\u0627\u0631\u0634 0.50 \u0627\u0633\u062a."],"Minimum quantity":["\u06a9\u0645\u062a\u0631\u06cc\u0646 \u0645\u0642\u062f\u0627\u0631"],"Minutes(s)":["\u062f\u0642\u06cc\u0642\u0647"],"Missed schedule":["\u0632\u0645\u0627\u0646\u200c\u0628\u0646\u062f\u06cc \u0627\u0632 \u062f\u0633\u062a\u200c \u0631\u0641\u062a\u0647"],"Mode":["\u062d\u0627\u0644\u062a"],"Moderate the product by clicking \u003Ca href=\"%s\"\u003Ehere\u003C/a\u003E":["\u0628\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0631\u062f\u0646 \u0628\u0631 \u0631\u0648\u06cc \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E\u060c \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0645\u062f\u064a\u0631\u064a\u062a \u06a9\u0646\u064a\u062f"],"Module Status":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0698\u0648\u0644"],"Module doesn't exists.":["\u0645\u0627\u0698\u0648\u0644 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a."],"Modules":["\u0645\u0627\u0698\u0648\u0644 \u0647\u0627"],"Monday":["\u062f\u0648\u0634\u0646\u0628\u0647"],"Month View":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0627\u0647"],"Month(s)":["\u0645\u0627\u0647 \u0647\u0627)"],"Move in Trash":["\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0633\u0637\u0644 \u0632\u0628\u0627\u0644\u0647"],"Multiple":["\u0686\u0646\u062f\u06cc\u0646"],"Multiply all costs by person count":["\u062a\u0642\u0633\u06cc\u0645 \u0647\u0645\u0647 \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0628\u0648\u0633\u06cc\u0644\u0647 \u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f"],"N/A":["\u062e\u0627\u0644\u06cc"],"Name":["\u0646\u0627\u0645"],"Name:":["\u0646\u0627\u0645"],"National ID Card":["\u06a9\u0627\u0631\u062a \u0634\u0646\u0627\u0633\u0647 \u0628\u06cc\u0646 \u0627\u0644\u0645\u0644\u0644\u06cc"],"Need Any Help ?":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u06a9\u0645\u06a9 \u062f\u0627\u0631\u06cc\u062f\u061f"],"Never":["\u0647\u06cc\u0686 \u0648\u0642\u062a"],"New":["\u062c\u062f\u06cc"],"New Announcement":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u062c\u062f\u06cc\u062f"],"New Announcement - {title}":["\u0627\u0639\u0644\u0627\u0645 \u062c\u062f\u06cc\u062f - {title}"],"New Product Status":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f"],"New Refund Request from - {seller_name}":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u0627\u0632 {seller_name}"],"New Seller Verification Request submitted":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634 \u062c\u062f\u06cc\u062f \u0627\u0631\u0633\u0627\u0644 \u0634\u062f"],"New Topic":["\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0633\u062a"],"New auction product is added by Vendor {seller_name}":["\u062d\u0631\u0627\u062c \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 {seller_name} \u0627\u0636\u0627\u0641\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"New booking emails are sent to the admin when a new booking is created and paid. This email is also received when a Pending confirmation booking is created.":["\u0627\u06cc\u0645\u06cc\u0644\u200c\u0647\u0627\u06cc \u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u0628\u0647 \u0645\u062f\u06cc\u0631 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc\u200c\u0634\u0648\u062f \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u0627\u06cc\u062c\u0627\u062f \u0648 \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0648\u062f. \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u062f\u0631\u06cc\u0627\u0641\u062a \u0645\u06cc\u200c\u0634\u0648\u062f \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u062a\u0627\u06cc\u06cc\u062f \u0631\u0632\u0631\u0648 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0627\u0633\u062a."],"New refund request for order #":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634 #"],"New review":["\u0646\u0638\u0631 \u062c\u062f\u06cc\u062f"],"New vendor Enable Auction":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062c\u062f\u06cc\u062f \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0631\u0627\u062c "],"Nexmo App Settings":["\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0647\u0627\u06cc \u0628\u0631\u0646\u0627\u0645\u0647 Nexmo"],"Next":["\u0628\u0639\u062f\u06cc "],"Next &raquo;":["\u0628\u0639\u062f\u06cc &raquo;"],"Next &rarr;":["\u0628\u0639\u062f\u06cc &rarr;"],"No":["\u062e\u06cc\u0631"],"No Amount found":["\u0647\u06cc\u0686 \u0645\u0642\u062f\u0627\u0631\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No Announcement Found":["\u0627\u0639\u0644\u0627\u0646\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Announcement found":["\u0647\u06cc\u0686 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Announcement found in trash":["\u0647\u06cc\u0686 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc \u062f\u0631 \u0633\u0637\u0644 \u0632\u0628\u0627\u0644\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Bookings found":["\u0647\u06cc\u0686 \u0631\u0632\u0631\u0648\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Notice found; ":["\u0646\u06a9\u062a\u0647 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a."],"No Order found":["\u0633\u0641\u0627\u0631\u0634 \u062f\u0631\u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Ratings found yet":["\u0647\u0646\u0648\u0632 \u0627\u0645\u062a\u06cc\u0627\u0632\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"No Resource found":["\u0645\u0648\u062c\u0648\u062f\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Result found!":["\u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f!"],"No Results Found":["\u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No Reviews Found":["\u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No Reviews found":["\u0647\u06cc\u0686 \u0646\u0642\u062f \u0648\u0628\u0631\u0631\u0633\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No Social App is configured by website Admin":["\u0647\u06cc\u0686 \u0628\u0631\u0646\u0627\u0645\u0647 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062a\u0648\u0633\u0637 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u0628\u0633\u0627\u06cc\u062a \u062a\u0646\u0638\u06cc\u0645 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"No announcement found":["\u0647\u06cc\u0686 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No announcement found.":["\u0647\u06cc\u0686 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"No announcement id found":["\u0647\u06cc\u0686 \u0634\u0646\u0627\u0633\u0647 \u0627\u0639\u0644\u0627\u0646\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No billing address set.":["\u0622\u062f\u0631\u0633 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a"],"No categories":["\u0647\u06cc\u0686 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"No coupons found!":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f!"],"No data found":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No default":["\u0628\u062f\u0648\u0646 \u067e\u06cc\u0634\u0641\u0631\u0636"],"No existing resource was found, please \u003Ca href='%s'\u003Eadd resource\u003C/a\u003E":["\u0647\u06cc\u0686 \u0645\u0648\u062c\u0648\u062f\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u060c \u0644\u0637\u0641\u0627\u064b \u06cc\u06a9 \u0645\u0648\u062c\u0648\u062f\u06cc \u003Ca href='%s'\u003E\u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f\u003C/a\u003E"],"No items found for bulk updating":["\u0647\u06cc\u0686 \u0645\u0648\u0631\u062f\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06af\u0631\u0648\u0647\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No longer exists":["\u0645\u0648\u0631\u062f\u06cc \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a"],"No matching product exists to update.":["\u0647\u06cc\u0686 \u0645\u062d\u0635\u0648\u0644 \u0645\u0637\u0627\u0628\u0642\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"No method found":["\u0647\u06cc\u0686 \u0631\u0648\u0634\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f "],"No modules found.":["\u0645\u0627\u0698\u0648\u0644\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f."],"No of Vendor:":["\u0634\u0645\u0627\u0631\u0647\u200c \u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647:"],"No order found by pay key: %s":["\u0647\u06cc\u0686 \u062f\u0633\u062a\u0648\u0631\u0627\u0644\u0639\u0645\u0644\u06cc \u0628\u0627 \u06a9\u0644\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f: %s"],"No order id found by pay key: %s":["\u0647\u06cc\u0686 \u0634\u0646\u0627\u0633\u0647 \u0633\u0641\u0627\u0631\u0634\u06cc \u062a\u0648\u0633\u0637 \u06a9\u0644\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06cc\u0627\u0641\u062a \u0646\u0634\u062f: %s"],"No orders found to process!":["\u0647\u06cc\u0686 \u0633\u0641\u0627\u0631\u0634\u06cc \u0628\u0631\u0627\u06cc \u067e\u0631\u062f\u0627\u0632\u0634 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f!"],"No pay key found, abort.":["\u0628\u062f\u0648\u0646 \u06a9\u0644\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u060c \u0642\u0637\u0639 \u0634\u062f "],"No product found":["\u0645\u062d\u0635\u0648\u0644\u06cc  \u06cc\u0627\u0641\u062a \u0646\u0634\u062f!"],"No ratings found yet!":["\u0647\u0646\u0648\u0632 \u0627\u0645\u062a\u06cc\u0627\u0632\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u0647 \u0627\u0633\u062a."],"No refund found for deleting":["\u0647\u06cc\u0686 \u062a\u062e\u0641\u06cc\u0641\u06cc \u0628\u0631\u0627\u06cc \u062d\u0630\u0641 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"No request found.":["\u0647\u06cc\u0686 \u062f\u0631\u062e\u0648\u0627\u0633\u062a\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"No result found":["\u0647\u06cc\u0686 \u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No results found":["\u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No review id found":["\u0647\u06cc\u0686 \u062f\u06cc\u062f\u06af\u0627\u0647\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No review status found for updating review":["\u0647\u06cc\u0686 \u0648\u0636\u0639\u06cc\u062a \u0646\u0642\u062f\u06cc  \u0628\u0631\u0627\u06cc \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0646\u0642\u062f \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No seller found":["\u0647\u06cc\u0686 \u0641\u0631\u0648\u0634\u0646\u062f\u0647\u200c\u0627\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No shipping class":["\u0628\u062f\u0648\u0646 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"No shipping class cost":["\u0628\u062f\u0648\u0646 \u0647\u0632\u06cc\u0646\u0647 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"No shipping method found for adding":["\u0647\u06cc\u0686 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644\u06cc \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No shipping zone found for configuration. Please contact with admin for manage your store shipping":["\u0647\u06cc\u0686 \u0631\u0627\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u062a\u0646\u0638\u06cc\u0645 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0628\u0627 \u0645\u062f\u06cc\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f"],"No staff found":["\u0647\u06cc\u0686 \u06a9\u0627\u0631\u0645\u0646\u062f\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No subscription pack has been found!":["\u0647\u06cc\u0686 \u067e\u06a9\u06cc\u062c \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f!"],"No tickets found!":["\u0647\u06cc\u0686 \u062a\u06cc\u06a9\u062a\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f!"],"No users found!":["\u06a9\u0627\u0631\u0628\u0631\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f!"],"No users with subscription found!":["\u0647\u06cc\u0686 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f! "],"No variations added":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a\u06cc \u0627\u0636\u0627\u0641\u0647 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"No vendor found":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No vendor found for assigning this staff":["\u06a9\u0627\u0631\u0645\u0646\u062f\u06cc \u0645\u062e\u062a\u0635 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"No vendor found for updating status":["\u0647\u06cc\u0686 \u0641\u0631\u0648\u0634\u0646\u062f\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0648\u0636\u0639\u06cc\u062a \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"No. of Days":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632"],"No. of Vendor:":["\u0634\u0645\u0627\u0631\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 :"],"Nonce failure":["\u0639\u062f\u0645 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0648\u0642\u062a"],"None":["\u0647\u06cc\u0686\u200c\u06cc\u06a9"],"Normal":["\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f"],"Norwegian":["\u0646\u0631\u0648\u0698\u06cc"],"Not Available":["\u0646\u0627 \u0645\u0648\u062c\u0648\u062f"],"Not Spam":["\u0647\u0631\u0632\u0646\u0627\u0645\u0647 \u0646\u06cc\u0633\u062a"],"Not able to attach \"%s\".":["\u0642\u0627\u062f\u0631 \u0628\u0647 \u067e\u06cc\u0648\u0633\u062a \"%s\" \u0646\u06cc\u0633\u062a."],"Not found":["\u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"Not found in Trash":["\u0686\u06cc\u0632\u06cc \u062f\u0631 \u0633\u0637\u0644 \u0632\u0628\u0627\u0644\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f ..."],"Notice":["\u0646\u06a9\u062a\u0647"],"November":["\u0646\u0648\u0627\u0645\u0628\u0631"],"Number of Products":["\u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Number of days":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632\u0647\u0627"],"Number of orders":["\u062a\u0639\u062f\u0627\u062f \u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"Number of times":["\u062a\u0639\u062f\u0627\u062f \u062f\u0641\u0639\u0627\u062a"],"Number of times the coupon has been used already.":["\u062a\u0639\u062f\u0627\u062f \u062f\u0641\u0639\u0627\u062a\u06cc \u06a9\u0647 \u06a9\u0648\u067e\u0646 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0642\u0631\u0627\u0631 \u06af\u0631\u0641\u062a\u0647 \u0627\u0633\u062a."],"OK":["\u0628\u0633\u06cc\u0627\u0631 \u062e\u0648\u0628"],"OR enter path to file:":["\u06cc\u0627 \u0645\u0633\u06cc\u0631 \u0631\u0627 \u0628\u0647 \u0641\u0627\u06cc\u0644 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f:"],"October":["\u0627\u06a9\u062a\u0628\u0631"],"On-hold":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"One-off cost for the booking as a whole.":["\u0647\u0632\u06cc\u0646\u0647 \u06cc\u06a9 \u0628\u0627\u0631 \u0628\u0631\u0627\u06cc \u0631\u0632\u0631\u0648 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u06cc\u06a9 \u06a9\u0644."],"Online":["\u0622\u0646\u0644\u0627\u06cc\u0646"],"Online (%d)":["\u0622\u0646\u0644\u0627\u06cc\u0646  (%d)"],"Open":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646"],"Open \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E":["\u0628\u0627\u0632 \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E"],"Open Tickets":["\u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u0628\u0627\u0632"],"Opening Balance":["\u0645\u0627\u0646\u062f\u0647 \u0627\u0648\u0644 \u062f\u0648\u0631\u0647 (\u0645\u0627\u0646\u062f\u0647 \u062f\u0631 \u0627\u0628\u062a\u062f\u0627\u064a \u062f\u0648\u0631\u0647)"],"Option...":["\u06af\u0632\u06cc\u0646\u0647..."],"Optionally enter a Label for PAY button":["\u0628\u0647 \u0635\u0648\u0631\u062a \u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u06cc\u06a9 \u0628\u0631\u0686\u0633\u0628 \u0628\u0631\u0627\u06cc \u062f\u06a9\u0645\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u06a9\u0646\u06cc\u062f "],"Optionally enter the URL to a 128x128px image of your brand or product. e.g. \u003Ccode\u003Ehttps://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg\u003C/code\u003E":["\u0628\u0647 \u0635\u0648\u0631\u062a \u062f\u0644\u062e\u0648\u0627\u0647 URL \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 128x128px \u0627\u0632 \u0646\u0627\u0645 \u062a\u062c\u0627\u0631\u06cc \u06cc\u0627 \u0645\u062d\u0635\u0648\u0644 \u062e\u0648\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f. \u0645\u062b\u0644\u0627 \u003Ccode\u003E https://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg \u003C/ code\u003E"],"Options":["\u06af\u0632\u06cc\u0646\u0647 \u0647\u0627"],"Order":["\u062a\u0631\u062a\u06cc\u0628"],"Order %d payment Auto paid via Dokan Stripe":["\u0633\u0641\u0627\u0631\u0634 %d \u0628\u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0627 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u062f"],"Order %s has been marked as refunded - PayPal reason code: %s":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0632\u0631\u0648 #%s \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u0633\u062a\u0631\u062f \u0634\u062f\u0647 \u0628\u0631\u0686\u0633\u0628 \u062e\u0648\u0631\u062f\u0647 \u0627\u0633\u062a - \u06a9\u062f \u0639\u0644\u062a PayPal : %s "],"Order %s payment \u003Ca href=\"#\"\u003Ecompleted\u003C/a\u003E via %s on (Charge IDs: %s)":["\u0633\u0641\u0627\u0631\u0634 \u067e\u0631\u062f\u0627\u062e\u062a %s \u003Ca href=\"#\"\u003E\u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647\u003C/a\u003E \u0627\u0632 \u0637\u0631\u06cc\u0642 %s \u062f\u0631 ( \u0622\u06cc\u062f\u06cc \u0634\u0627\u0631\u0698 : %s)"],"Order %s payment \u003Ca href=\"#\"\u003Ecompleted\u003C/a\u003E via Dokan Stripe on (Charge IDs: %s)":["\u0633\u0641\u0627\u0631\u0634 \u067e\u0631\u062f\u0627\u062e\u062a %s \u062a\u0648\u0633\u0637 \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646 \u0628\u0627  \u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698 \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647:%s "],"Order %s payment completed":[" \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0641\u0627\u0631\u0634 %s \u06a9\u0627\u0645\u0644 \u0634\u062f."],"Order %s payment completed via Dokan Stripe on Charge ID: %s":["\u0633\u0641\u0627\u0631\u0634 \u067e\u0631\u062f\u0627\u062e\u062a %s \u062a\u0648\u0633\u0637 \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646 \u0628\u0627  \u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698 \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647:%s"],"Order %s status is now completed due to dispute resolved in your favour via %s on (Charge IDs: %s)":["\u0648\u0636\u0639\u06cc\u062a \u0633\u0641\u0627\u0631\u0634 %s \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u062f\u0644\u06cc\u0644 \u0627\u062e\u062a\u0644\u0627\u0641 \u0646\u0638\u0631 \u0628\u0647 \u0646\u0641\u0639 \u0634\u0645\u0627 \u0627\u0632 \u0637\u0631\u06cc\u0642 %s \u062f\u0631 (\u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698: %s) \u0628\u0647 \u0627\u062a\u0645\u0627\u0645 \u0631\u0633\u06cc\u062f\u0647 \u0627\u0633\u062a"],"Order %s status is now on-hold due to dispute via %s on (Charge IDs: %s)":["\u0648\u0636\u0639\u06cc\u062a \u0633\u0641\u0627\u0631\u0634 %s \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0639\u0644\u062a \u0627\u062e\u062a\u0644\u0627\u0641 \u0627\u0632 \u0637\u0631\u06cc\u0642 %s \u062f\u0631 (\u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698: %s ) \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0639\u0644\u06cc\u0642 \u0646\u06af\u0647 \u062f\u0627\u0634\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Order Date :":["\u062a\u0627\u0631\u06cc\u062e \u0633\u0641\u0627\u0631\u0634 :"],"Order ID":["\u0634\u0646\u0627\u0633\u0647 \u067e\u0631\u062f\u0627\u062e\u062a"],"Order ID : ":["\u0634\u0646\u0627\u0633\u0647 \u0633\u0641\u0627\u0631\u0634 : "],"Order No.":["\u0634\u0645\u0627\u0631\u0647 \u0633\u0641\u0627\u0631\u0634."],"Order Status for Withdraw":["\u0648\u0636\u0639\u06cc\u062a \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u0627\u0631\u064a\u0632"],"Order Total":["\u0645\u062c\u0645\u0648\u0639 \u0633\u0641\u0627\u0631\u0634"],"Order discount":["\u062a\u062e\u0641\u06cc\u0641 \u0633\u0641\u0627\u0631\u0634"],"Order refunded/reversed":["\u0633\u0641\u0627\u0631\u0634 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a / \u0645\u0639\u06a9\u0648\u0633 "],"Order status for which vendor can make a withdraw request.":["\u0648\u0636\u0639\u06cc\u062a \u0633\u0641\u0627\u0631\u0634 \u06a9\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0631\u062f\u0627\u0634\u062a \u06a9\u0646\u062f."],"Order sync table has been regenerated!":["\u062c\u062f\u0648\u0644 \u0633\u0641\u0627\u0631\u0634 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0628\u0627\u0632\u0633\u0627\u0632\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Order total in this period":["\u06a9\u0644 \u0633\u0641\u0627\u0631\u0634 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"Orders":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"Orders Processed":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062f\u0631 \u062d\u0627\u0644 \u067e\u0631\u062f\u0627\u0632\u0634"],"Other":["\u0633\u0627\u06cc\u0631"],"Other Available Vendor":["\u0633\u0627\u06cc\u0631 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0648\u062c\u0648\u062f "],"Other Countries":["\u06a9\u0634\u0648\u0631\u0647\u0627\u06cc \u062f\u06cc\u06af\u0631"],"Other Options":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062f\u06cc\u06af\u0631"],"Other States":["\u0633\u0627\u06cc\u0631 \u0627\u0633\u062a\u0627\u0646 \u0647\u0627"],"Others":["\u062f\u06cc\u06af\u0631"],"Out of Stock":["\u0627\u0645\u06a9\u0627\u0646 \u062b\u0628\u062a \u0646\u062f\u0627\u0631\u06cc\u062f!"],"Out of stock":["\u0646\u0627\u0645\u0648\u062c\u0648\u062f"],"Override Shipping":[" \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Override the default commission admin will get from this product":["\u0645\u062f\u06cc\u0631 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0631\u0627 \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062f\u0631\u06cc\u0627\u0641\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f"],"Override your store's default shipping cost for this product":["\u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627 \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc \u0634\u0648\u062f"],"Overview":["\u0628\u0631\u0631\u0633\u06cc \u06a9\u0644\u06cc"],"Pack Validity":["\u0627\u0639\u062a\u0628\u0627\u0631 \u067e\u06a9\u06cc\u062c"],"Package End notification alert":["\u0622\u0644\u0627\u0631\u0645 \u0647\u0634\u062f\u0627\u0631 \u067e\u0627\u06cc\u0627\u0646 \u067e\u06a9\u06cc\u062c"],"Page Installation":["\u0635\u0641\u062d\u0647 \u0646\u0635\u0628 \u0648 \u0631\u0627\u0647 \u0627\u0646\u062f\u0627\u0632\u06cc"],"Pages have been created and installed!":["\u0635\u0641\u062d\u0647 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0648 \u0646\u0635\u0628 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Parallel Payment":["\u067e\u0631\u062f\u0627\u062e\u062a \u0645\u0648\u0642\u062a "],"Parent":["\u0645\u0646\u0628\u0639"],"Parent Announcement":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0645\u0627\u062f\u0631"],"Parent Item":["\u0622\u06cc\u062a\u0645 \u0627\u0635\u0644\u06cc"],"Parent SKU":["\u06a9\u062f \u0645\u062d\u0635\u0648\u0644 \u0627\u0635\u0644\u06cc "],"Passport":["\u067e\u0627\u0633\u067e\u0648\u0631\u062a"],"Password":["\u0631\u0645\u0632 \u0639\u0628\u0648\u0631"],"Password :":["\u0631\u0645\u0632 \u0639\u0628\u0648\u0631:"],"Pay via PayPal Adaptive; you can pay with your credit card if you don't have a PayPal account":["\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 \u067e\u06cc \u067e\u0627\u0644\u060c \u062f\u0631 \u0635\u0648\u0631\u062a\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u062d\u0633\u0627\u0628 \u067e\u06cc \u067e\u0627\u0644 \u0646\u062f\u0627\u0631\u06cc\u062f \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0632 \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062e\u0648\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u06cc\u062f. "],"Pay via paypal adaptive payment":["\u0628\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0646\u0637\u0628\u0627\u0642 paypal \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u06cc\u062f "],"PayPal Adaptive":["\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u067e\u06cc \u067e\u0627\u0644 "],"PayPal Adaptive Payments":["\u0627\u0646\u062c\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a"],"PayPal Adaptive does not support your store currency.":["PayPal \u0648\u0627\u062d\u062f \u067e\u0648\u0644 \u0634\u0645\u0627 \u0631\u0627 \u0642\u0628\u0648\u0644 \u0646\u0645\u06cc\u06a9\u0646\u062f. "],"PayPal Adaptive works by sending payment to multiple user email":["PayPal Adaptive \u0628\u0627 \u0627\u0631\u0633\u0627\u0644 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0686\u0646\u062f \u06a9\u0627\u0631\u0628\u0631 \u06a9\u0627\u0631 \u0645\u06cc \u06a9\u0646\u062f "],"PayPal Email":["\u0627\u06cc\u0645\u06cc\u0644 \u067e\u06cc \u067e\u0627\u0644"],"PayPal Payment":["\u067e\u0631\u062f\u0627\u062e\u062a \u067e\u06cc \u067e\u0627\u0644"],"PayPal sandbox":["\u06af\u0648\u062f\u0627\u0644 \u0645\u0627\u0633\u0647\u0628\u0627\u0632\u06cc \u067e\u06cc \u067e\u0627\u0644"],"PayPal sandbox can be used to test payments. Sign up for a developer account \u003Ca href=\"%s\"\u003Ehere\u003C/a\u003E.":["\u0633\u0646\u062f\u0628\u0627\u06a9\u0633 \u067e\u06cc\u200c\u067e\u0627\u0644 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0622\u0632\u0645\u0627\u06cc\u0634 \u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f. \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u062d\u0633\u0627\u0628 \u0628\u0631\u0646\u0627\u0645\u0647 \u0646\u0648\u06cc\u0633 \u003Ca href=\"%s\"\u003E\u0627\u06cc\u0646\u062c\u0627\u003C/a\u003E \u062b\u0628\u062a \u0646\u0627\u0645 \u06a9\u0646\u06cc\u062f "],"Payment %s via IPN.":["\u067e\u0631\u062f\u0627\u062e\u062a%s \u0627\u0632 \u0637\u0631\u06cc\u0642 IPN."],"Payment %s via IPN. Order is pending completion. PayPal will notify this site of further status updates. Or check your PayPal account for further information":["\u067e\u0631\u062f\u0627\u062e\u062a %s \u0627\u0632 \u0637\u0631\u06cc\u0642 IPN. \u0633\u0641\u0627\u0631\u0634 \u062f\u0631 \u062d\u0627\u0644 \u0627\u062a\u0645\u0627\u0645 \u0627\u0633\u062a. PayPal \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0631\u0627 \u0627\u0632 \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0648\u0636\u0639\u06cc\u062a \u0628\u06cc\u0634\u062a\u0631 \u0645\u0637\u0644\u0639 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f. \u0628\u0631\u0627\u06cc \u06a9\u0633\u0628 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631\u060c \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc PayPal \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f"],"Payment Gateway":["\u062f\u0631\u06af\u0627\u0647 \u067e\u0631\u062f\u0627\u062e\u062a"],"Payment Methods":["\u0631\u0648\u0634\u200c\u0647\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a"],"Payment System":["\u0633\u06cc\u0633\u062a\u0645 \u067e\u0631\u062f\u0627\u062e\u062a"],"Payment for order %s refunded/reversed":["\u0648\u062c\u0647 \u067e\u0631\u062f\u0627\u062e\u062a\u06cc \u0628\u0631\u0627\u06cc \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0632\u0631\u0648 %s \u0645\u0633\u062a\u0631\u062f \u0634\u062f. "],"Paypal Adaptive Error : %s , Error Code : %d":["\u062e\u0637\u0627\u06cc Adaptive \u067e\u06cc \u067e\u0627\u0644: %s \u060c \u06a9\u062f \u062e\u0637\u0627: %d"],"Pemission denied":["\u062f\u0633\u062a\u0631\u0633\u06cc \u0631\u062f \u0634\u062f"],"Pending":["\u0645\u0646\u062a\u0638\u0631 \u0628\u0631\u0631\u0633\u06cc"],"Pending (":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 ("],"Pending \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"Pending Product emails are sent to chosen recipient(s) when a published product is updated by vendors.":["\u062f\u0631 \u0635\u0648\u0631\u062a\u06cc \u06a9\u0647 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0628\u0647 \u0631\u0648\u0632 \u0645\u06cc \u0634\u0648\u062f\u060c \u0628\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627\u06cc \u0645\u0646\u062a\u062e\u0628 \u0645\u062d\u0635\u0648\u0644 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f \u0628\u0647 \u06af\u06cc\u0631\u0646\u062f\u0647 \u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647."],"Pending Reivew":["\u0628\u0631\u0631\u0633\u06cc \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"Pending Review":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc"],"Pending Review (%d)":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc  (%d)"],"Pending Vendors":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"Per Product Additional Cost":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0631 \u0645\u062d\u0635\u0648\u0644 \u0627\u0636\u0627\u0641\u06cc"],"Per Product Additional Price":["\u0642\u06cc\u0645\u062a \u0647\u0631 \u0645\u062d\u0635\u0648\u0644 \u0627\u0636\u0627\u0641\u06cc"],"Per Qty Additional Cost":["\u062f\u0631 \u0647\u0631 \u0647\u0632\u06cc\u0646\u0647 \u0627\u0636\u0627\u0641\u06cc"],"Per Qty Additional Price":["\u0642\u06cc\u0645\u062a \u0647\u0631 \u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644"],"Per class: Charge shipping for each shipping class individually":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0647\u0631 \u06a9\u0644\u0627\u0633: \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0647\u0631 \u06a9\u0644\u0627\u0633 \u0628\u0647 \u0635\u0648\u0631\u062a \u062c\u062f\u0627\u06af\u0627\u0646\u0647"],"Per order: Charge shipping for the most expensive shipping class":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0647\u0631 \u0633\u0641\u0627\u0631\u0634: \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06af\u0631\u0627\u0646 \u062a\u0631\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644"],"Percent":["\u062f\u0631 \u0635\u062f"],"Percentage":["\u062f\u0631\u0635\u062f\u06cc"],"Permanent Delete":["\u062d\u0630\u0641 \u062f\u0627\u0626\u0645\u06cc"],"Permission update successfully":["\u062f\u0633\u062a\u0631\u0633\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a."],"Person Type Name":["\u0646\u0627\u0645 \u0646\u0648\u0639 \u0634\u062e\u0635"],"Person count":["\u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f"],"Person types":["\u0627\u0646\u0648\u0627\u0639 \u0627\u0641\u0631\u0627\u062f"],"Person types allow you to offer different booking costs for different types of individuals, for example, adults and children.":["\u0646\u0648\u0639 \u0627\u0641\u0631\u0627\u062f \u0628\u0647 \u0634\u0645\u0627 \u0627\u0645\u06a9\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f \u0647\u0632\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641 \u0631\u0632\u0631\u0648 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0646\u0648\u0627\u0639 \u0645\u062e\u062a\u0644\u0641\u060c \u0628\u0631\u0627\u06cc \u0645\u062b\u0627\u0644 \u0628\u0632\u0631\u06af\u0633\u0627\u0644\u0627\u0646 \u0648 \u06a9\u0648\u062f\u06a9\u0627\u0646 \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u06cc\u062f."],"Person(s)":["\u0634\u062e\u0635"],"Person(s) :":["\u0627\u0641\u0631\u0627\u062f:"],"Persons":["\u0627\u0641\u0631\u0627\u062f"],"Phone":["\u062a\u0644\u0641\u0646 "],"Phone No":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646"],"Phone Number":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646"],"Phone Number ":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646"],"Phone Verification":["\u062a\u0627\u06cc\u06cc\u062f \u062a\u0644\u0641\u0646"],"Phone:":["\u062a\u0644\u0641\u0646: "],"Photo ID":["\u0634\u0646\u0627\u0633\u0647 \u0639\u06a9\u0633"],"Photo ID ":["\u0634\u0646\u0627\u0633\u0647 \u0639\u06a9\u0633"],"Place the payment gateway in test mode using test API keys.":["\u062f\u0631\u0648\u0627\u0632\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0633\u062a \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0644\u06cc\u062f API \u062a\u0633\u062a \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f."],"Please \u003Ca href=\"%s\"\u003Eenter\u003C/a\u003E your \u003Cstrong\u003EDokan\u003C/strong\u003E plugin license key to get regular update and support.":["\u0644\u0637\u0641\u0627 \u003Ca href=\"%s\"\u003E\u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f\u003C/a\u003E \u0634\u0645\u0627 \u003Cstrong\u003E\u062f\u06a9\u0627\u0646\u003C/strong\u003E\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u067e\u0644\u0627\u06af\u06cc\u0646 \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0628\u0647 \u0637\u0648\u0631 \u0645\u0646\u0638\u0645 \u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc."],"Please Check your Email and complete Email Verification to Login.":["\u0644\u0637\u0641\u0627\u064b \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u0648 \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0648\u062f \u0631\u0627 \u062a\u0627\u06cc\u06cc\u062f \u06a9\u0646\u06cc\u062f \u0633\u067e\u0633 \u0628\u0647 \u0633\u0627\u06cc\u062a \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f."],"Please Login to Chat":["\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u06af\u0641\u062a\u06af\u0648 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f"],"Please Login to Continue":["\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u0627\u062f\u0627\u0645\u0647 \u0648\u0627\u0631\u062f \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0634\u0648\u06cc\u062f"],"Please Login to make enquiry about this product":["\u0644\u0637\u0641\u0627 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f \u062a\u0627 \u062f\u0631 \u0645\u0648\u0631\u062f \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062a\u062d\u0642\u06cc\u0642 \u06a9\u0646\u06cc\u062f "],"Please Save the Product to add extra options ( Persons or Resources )":["\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0628\u06cc\u0634\u062a\u0631\u060c \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f ( \u0627\u0641\u0631\u0627\u062f \u06cc\u0627 \u0645\u0648\u062c\u0648\u062f\u06cc)"],"Please accept the terms and conditions first":["\u0644\u0637\u0641\u0627 \u0627\u0628\u062a\u062f\u0627 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0636\u0648\u0627\u0628\u0637 \u0631\u0627 \u0628\u067e\u0630\u06cc\u0631\u06cc\u062f"],"Please cancel your running package to switch another subscription":["\u0644\u0637\u0641\u0627 \u067e\u06a9\u06cc\u062c \u062f\u0631 \u062d\u0627\u0644 \u0627\u062c\u0631\u0627 \u062e\u0648\u062f \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u062f\u06cc\u06af\u0631\u06cc \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u067e\u06cc\u062f\u0627 \u06a9\u0646\u06cc\u062f"],"Please check this if you want to enable recurring payment system":["\u0644\u0637\u0641\u0627 \u0627\u06af\u0631 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0633\u06cc\u0633\u062a\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u062c\u062f\u062f \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u062a\u06cc\u06a9 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0628\u0632\u0646\u06cc\u062f"],"Please choose a Name !!!":["\u06cc\u06a9 \u0646\u0627\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f!!!"],"Please choose a category!":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u062f\u0633\u062a\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f!"],"Please choose who will pay the fee":["\u0644\u0637\u0641\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0686\u0647 \u06a9\u0633\u06cc \u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u0631\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f "],"Please choose your payment system":["\u0644\u0637\u0641\u0627 \u0633\u06cc\u0633\u062a\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0648\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f "],"Please enter product title":["\u0644\u0637\u0641\u0627 \u0639\u0646\u0648\u0627\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Please enter the amount":["\u0644\u0637\u0641\u0627 \u0645\u0642\u062f\u0627\u0631 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Please enter the coupon title":["\u0644\u0637\u0641\u0627 \u0639\u0646\u0648\u0627\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Please enter your PayPal email address; this is needed in order to take payment.":["\u0644\u0637\u0641\u0627 \u0627\u06cc\u0645\u06cc\u0644 PayPal  \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f."],"Please fill all the required fields":["\u0644\u0637\u0641\u0627 \u062a\u0645\u0627\u0645 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0631\u0627 \u067e\u0631 \u06a9\u0646\u06cc\u062f"],"Please fill in required checkout fields first":["\u0644\u0637\u0641\u0627 \u0627\u0628\u062a\u062f\u0627 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0631\u0627 \u067e\u0631 \u06a9\u0646\u06cc\u062f"],"Please make sure your card details have been entered correctly and that your browser supports JavaScript.":["\u0644\u0637\u0641\u0627 \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062d\u0627\u0635\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u06a9\u0627\u0631\u062a \u0634\u0645\u0627 \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0627\u0633\u062a \u0648 \u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062c\u0627\u0648\u0627 \u0627\u0633\u06a9\u0631\u06cc\u067e\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06a9\u0646\u062f."],"Please select a State from the dropdown":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0627\u0633\u062a\u0627\u0646 \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u06a9\u0634\u0648\u06cc\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Please select a category":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Please select a country from the dropdown":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u06a9\u0634\u0648\u0631 \u0631\u0627 \u0627\u0632 \u0644\u06cc\u0633\u062a \u06a9\u0634\u0648\u06cc\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Please select a shipping method":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0631\u0648\u0634 \u0627\u0631\u0633\u0627\u0644 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Please select a xml file":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 xml \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Please select some items.":["\u0644\u0637\u0641\u0627 \u0628\u0631\u062e\u06cc \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"Please sepecific product ids":["\u0644\u0637\u0641\u0627 \u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f"],"Please specify any products":["\u0644\u0637\u0641\u0627 \u0647\u0631 \u06af\u0648\u0646\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f"],"Please upload or provide the link to a valid CSV file.":["\u0644\u0637\u0641\u0627\u064b \u0644\u06cc\u0646\u06a9 \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0645\u0639\u062a\u0628\u0631 CSV \u062f\u0647\u06cc\u062f \u06cc\u0627 \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f."],"Plugin Activation":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u067e\u0644\u0627\u06af\u06cc\u0646"],"Plugin is activated":["\u067e\u0644\u0627\u06af\u06cc\u0646 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"Position":["\u062c\u0627\u06cc\u06af\u0627\u0647"],"Postal Address":["\u0622\u062f\u0631\u0633 \u067e\u0633\u062a\u06cc"],"Postcodes need to be comma separated":["\u06a9\u062f \u067e\u0633\u062a\u06cc \u0628\u0627\u06cc\u062f \u0628\u0627 \u06a9\u0627\u0645\u0627 \u0627\u0632 \u0647\u0645 \u062c\u062f\u0627 \u0634\u0648\u062f"],"Price":["\u0642\u06cc\u0645\u062a"],"Price :":["\u0642\u06cc\u0645\u062a:"],"Price: ":["\u0642\u06cc\u0645\u062a : "],"Priority":["\u0627\u0647\u0645\u06cc\u062a"],"Process all the refund requests of your marketplace from a single place. \u003Ca href=\"%s\" target=\"_blank\"\u003ELearn More\u003Ca/\u003E":["\u067e\u0631\u062f\u0627\u0632\u0634 \u062a\u0645\u0627\u0645 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627\u0632\u0627\u0631 \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u06cc\u06a9 \u0645\u06a9\u0627\u0646 \u0648\u0627\u062d\u062f. \u003Ca href=\"%s\" target=\"_blank\"\u003E \u0628\u06cc\u0634\u062a\u0631 \u003Ca/\u003E \u0631\u0627 \u0628\u06cc\u0627\u0645\u0648\u0632\u06cc\u062f"],"Processing":["\u062f\u0631 \u062d\u0627\u0644 \u067e\u0631\u062f\u0627\u0632\u0634"],"Processing Time":["\u0632\u0645\u0627\u0646 \u067e\u0631\u062f\u0627\u0632\u0634"],"Product":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Product % Discount":["\u062a\u062e\u0641\u06cc\u0641 % \u0645\u062d\u0635\u0648\u0644"],"Product Discount":["\u062a\u062e\u0641\u06cc\u0641 \u0645\u062d\u0635\u0648\u0644"],"Product Enquiry":["\u0633\u0648\u0627\u0644 \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 "],"Product ID:":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644:"],"Product IDs":["\u0634\u0646\u0627\u0633\u0647 \u06a9\u0627\u0644\u0627"],"Product Mail Notification":["\u0627\u0639\u0644\u0627\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644"],"Product Publishing":["\u0645\u062d\u0635\u0648\u0644 \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647"],"Product SKU:":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644 (SKU):"],"Product Status":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644"],"Product Status:":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644:"],"Product Subscription":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u062d\u0635\u0648\u0644"],"Product Title":["\u0639\u0646\u0648\u0627\u0646 \u0645\u062d\u0635\u0648\u0644"],"Product Type:":["\u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644:"],"Product categories":["\u062f\u0633\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Product does not exist":["\u0645\u062d\u0635\u0648\u0644\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"Product name..":["\u0646\u0627\u0645 \u0645\u062d\u0635\u0648\u0644."],"Product no longer exists":["\u0645\u062d\u0635\u0648\u0644 \u062f\u06cc\u06af\u0631 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"Product price can't be less than the vendor fee!":["\u0642\u06cc\u0645\u062a \u0645\u062d\u0635\u0648\u0644 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u06a9\u0645\u062a\u0631 \u0627\u0632 \u0647\u0632\u06cc\u0646\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0627\u0634\u062f!"],"Product status when a vendor creates a product":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0645\u06cc \u06a9\u0646\u062f"],"Product status when vendor pack validity will expire":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0627\u0639\u062a\u0628\u0627\u0631 \u0628\u0633\u062a\u0647 \u0647\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u0646\u0642\u0636\u06cc \u0645\u06cc \u0634\u0648\u062f "],"Product succesfully duplicated":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u062d\u0630\u0641 \u0634\u062f"],"Product variations":["\u0627\u0646\u0648\u0627\u0639 \u0643\u0627\u0644\u0627 "],"Products":["\u06a9\u0627\u0644\u0627\u0647\u0627"],"Publish":["\u0627\u0646\u062a\u0634\u0627\u0631"],"Publishable Key":["\u06a9\u0644\u06cc\u062f \u0627\u0646\u062a\u0634\u0627\u0631\u06cc"],"Published":["\u0645\u0646\u062a\u0634\u0631 \u0634\u062f"],"Published \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"Purchase Note":["\u0646\u06a9\u062a\u0647 \u062e\u0631\u06cc\u062f"],"Purchase note":["\u0646\u06a9\u0627\u062a \u0636\u0631\u0648\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a "],"Qty":["\u062a\u0639\u062f\u0627\u062f"],"Quantity":["\u0645\u0642\u062f\u0627\u0631"],"Quantity discount":["\u062a\u062e\u0641\u06cc\u0641 \u0645\u0642\u062f\u0627\u0631"],"Quantity in stock\u0004Stock":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"Range":["\u0628\u0627\u0632\u0647"],"Range of days":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0631\u0648\u0632"],"Range of months":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0645\u0627\u0647"],"Range of weeks":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0647\u0641\u062a\u0647"],"Range type":["\u0646\u0648\u0639 \u0645\u062d\u062f\u0648\u062f\u0647"],"Rated %d out of 5":["\u0627\u0645\u062a\u06cc\u0627\u0632  %d \u0627\u0632 5"],"Rating":["\u0627\u0645\u062a\u06cc\u0627\u0632"],"Re-build":["\u0628\u0627\u0632\u0633\u0627\u0632\u06cc"],"Ready to ship in":["\u0622\u0645\u0627\u062f\u0647 \u0628\u0647 \u062d\u0645\u0644 \u062f\u0631 "],"Reason for failure":["\u062f\u0644\u06cc\u0644 \u0634\u06a9\u0633\u062a "],"Reason for refund (optional)":["\u0639\u0644\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a (\u062f\u0644\u062e\u0648\u0627\u0647)"],"Recipient(s)":["\u06af\u06cc\u0631\u0646\u062f\u0647 (\u0647\u0627\u06cc)"],"Recurring Payment":["\u067e\u0631\u062f\u0627\u062e\u062a \u0645\u062c\u062f\u062f"],"Recurring subscription requires webhooks to be configured. Go to \u003Ca href=\"%s\"\u003Ewebhook\u003C/a\u003E and set your webhook url \u003Ccode\u003E%s\u003C/code\u003E. Otherwise recurring payment not working autometically":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a webhooks \u062f\u0627\u0631\u062f. \u0628\u0647 \u003Ca href=\"%s\"\u003Ewebhook\u003C/a\u003E \u0628\u0631\u0648\u06cc\u062f \u0648 \u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u003Ccode\u003E%s\u003C/code\u003E. \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. \u062f\u0631 \u063a\u06cc\u0631 \u0627\u06cc\u0646 \u0635\u0648\u0631\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc \u0628\u0647 \u0637\u0648\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0646\u062c\u0627\u0645 \u0646\u0645\u06cc \u0634\u0648\u062f"],"Redirect URI":["\u0622\u062f\u0631\u0633 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631"],"Redirect URL":["\u0622\u062f\u0631\u0633 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a"],"Referenced Order #%s":["\u0633\u0641\u0627\u0631\u0634 \u0627\u0631\u062c\u0627\u0639 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 #%s"],"Refund":["\u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refund\u0004Refund via %s":["\u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 %s"],"Refund Amount":["\u0645\u06cc\u0632\u0627\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refund Amount : ":["\u0645\u0628\u0644\u063a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a :"],"Refund Method":["\u0631\u0648\u0634 \u0628\u0627\u0632 \u067e\u0631\u062f\u0627\u062e\u062a"],"Refund Policy":["\u0633\u06cc\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refund Reason":["\u0639\u0644\u062a \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refund Reason : ":["\u062f\u0644\u06cc\u0644 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a : "],"Refund Requests":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refund amount":["\u0645\u0642\u062f\u0627\u0631 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refund request for {order_id} is {status}":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631\u0627\u06cc {order_id} \u0647\u0633\u062a {status}"],"Refund request sent successfully":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f."],"Refund status":["\u0648\u0636\u0639\u06cc\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Refunded":["\u0628\u0627\u0632 \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u062f"],"Refunds":["\u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0627"],"Refunds %s":["\u0627\u0633\u062a\u0631\u062f\u0627\u062f %s"],"Regenerate Order Sync Table":["\u062a\u0648\u0644\u06cc\u062f \u0633\u0641\u0627\u0631\u0634 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u062c\u062f\u0648\u0644"],"Region(s)":["\u0646\u0627\u062d\u06cc\u0647"],"Register":["\u062b\u0628\u062a \u0646\u0627\u0645"],"Registered":["\u062b\u0628\u062a \u0646\u0627\u0645 \u0634\u062f\u0647"],"Registered Date":["\u062a\u0627\u0631\u06cc\u062e \u062b\u0628\u062a \u0646\u0627\u0645"],"Registered Since":["\u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u0634\u062f\u0647 \u0627\u0632"],"Registration Notice":["\u0646\u06a9\u062a\u0647 \u062b\u0628\u062a\u200c\u0646\u0627\u0645"],"Regular Price:":["\u0642\u06cc\u0645\u062a \u0639\u0627\u062f\u06cc:"],"Regular Shipping":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u0639\u0645\u0648\u0644\u06cc"],"Regular price":["\u0642\u06cc\u0645\u062a \u0627\u0635\u0644\u06cc"],"Reject":["\u0631\u062f \u06a9\u0646\u06cc\u062f"],"Rejected":["\u0631\u062f \u0634\u062f\u0647"],"Relist auction duration in h":["\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0644\u06cc\u0633\u062a \u0645\u0632\u0627\u06cc\u062f\u0647 \u0628\u0647 \u0633\u0627\u0639\u062a"],"Relist if fail after n hours":["\u0686\u0646\u0627\u0646\u0686\u0647 \u0628\u0639\u062f \u0627\u0632 \u0686\u0646\u062f\u0633\u0627\u0639\u062a \u0634\u06a9\u0633\u062a \u062e\u0648\u0631\u062f\u060c \u0644\u06cc\u0633\u062a \u0645\u062c\u062f\u062f\u0627 \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u06af\u0631\u062f\u062f."],"Relist if not paid after n hours":["\u0627\u06af\u0631 \u0628\u0639\u062f \u0627\u0632 n \u0633\u0627\u0639\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0645\u06cc \u0634\u0648\u062f\u060c "],"Remote file is incorrect size":["\u0641\u0627\u06cc\u0644 \u0635\u0641\u0631 \u06a9\u06cc\u0644\u0648\u0628\u0627\u06cc\u062a\u06cc \u062f\u0627\u0646\u0644\u0648\u062f \u0634\u062f"],"Remote file is too large, limit is %s":["\u0641\u0627\u06cc\u0644 \u0627\u0632 \u0631\u0627\u0647 \u062f\u0648\u0631 \u0628\u0633\u06cc\u0627\u0631 \u0628\u0632\u0631\u06af \u0627\u0633\u062a\u060c \u0645\u062d\u062f\u0648\u062f \u0627\u0633\u062a %s"],"Remote server did not respond":["\u062e\u0637\u0627\u06cc\u06cc \u0631\u062e \u062f\u0627\u062f. \u0644\u0637\u0641\u0627 \u0645\u062c\u062f\u062f \u062a\u0644\u0627\u0634 \u06a9\u0646\u06cc\u062f."],"Remote server returned error response %1$d %2$s":["\u0633\u0631\u0648\u0631 \u0631\u0627\u0647 \u062f\u0648\u0631 \u067e\u0627\u0633\u062e \u062e\u0637\u0627 \u0631\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0631\u062f %1$d %2$s"],"Remove":["\u067e\u0627\u06a9"],"Remove this image":["\u062d\u0630\u0641 \u0627\u06cc\u0646 \u0639\u06a9\u0633"],"Remove this item meta?":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0627\u06cc\u0646 \u0622\u06cc\u062a\u0645 \u0631\u0627 \u062d\u0630\u0641 \u0645\u06cc\u06a9\u0646\u06cc\u062f\u061f"],"Renew":["\u062a\u0645\u062f\u06cc\u062f"],"Renew License":["\u062a\u062c\u062f\u06cc\u062f \u0645\u062c\u0648\u0632"],"Reports":["\u06af\u0632\u0627\u0631\u0634 \u0647\u0627"],"Request Approved!":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0634\u062f!"],"Request Cancelled!":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u0646\u0633\u0644 \u0634\u062f!"],"Request Deleted!":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062d\u0630\u0641 \u0634\u062f!"],"Request Refund":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Requests approved!":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Requests cancelled!":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627 \u0644\u063a\u0648 \u06af\u0631\u062f\u06cc\u062f!"],"Requests deleted!":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062d\u0630\u0641 \u0634\u062f"],"Require a buffer period of ( ":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u062f\u0648\u0631\u0647 \u0628\u0627\u0641\u0631 \u0627\u0632 ("],"Requires Confirmation":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0627\u06cc\u06cc\u062f"],"Requires Review":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u0628\u0631\u0631\u0633\u06cc \u062f\u0627\u0631\u062f"],"Reserved price":["\u0642\u06cc\u0645\u062a \u0631\u0632\u0631\u0648 \u0634\u062f\u0647"],"Resource #":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"Resource Title":["\u0639\u0646\u0648\u0627\u0646 \u0645\u0648\u062c\u0648\u062f\u06cc"],"Resource name..":["\u0646\u0627\u0645 \u0645\u0648\u062c\u0648\u062f\u06cc..."],"Resource(s) :":["\u0645\u0648\u062c\u0648\u062f\u06cc:"],"Resources":["\u0645\u0646\u0627\u0628\u0639"],"Resources are used if you have multiple bookable items, e.g. room types, instructors or ticket types. Availability for resources is global across all bookable products.":["\u0627\u06af\u0631 \u0627\u06cc\u0646 \u0645\u06a9\u0627\u0646 \u062f\u0627\u0631\u0627\u06cc \u0645\u06a9\u0627\u0646 \u0647\u0627\u06cc \u0645\u062a\u0639\u062f\u062f \u0627\u0633\u062a \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0645\u0647 \u0645\u06a9\u0627\u0646 \u0647\u0627 \u0631\u0627 \u0628\u0647 \u0646\u0645\u0627\u06cc\u0634 \u0628\u06af\u0630\u0627\u0631\u06cc\u062f"],"Resources are...":["\u0645\u0648\u062c\u0648\u062f\u06cc ... \u0647\u0633\u062a\u0646\u062f"],"Restock Items":["\u0645\u0648\u062c\u0648\u062f \u06a9\u0631\u062f\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Restore":["\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646"],"Revenue":["\u062f\u0631\u0622\u0645\u062f"],"Reverse":["\u0645\u0639\u06a9\u0648\u0633"],"Review Status":["\u0648\u0636\u0639\u06cc\u062a \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f"],"Review rating (0 to 5).":["\u0627\u0645\u062a\u06cc\u0627\u0632 \u0631\u062a\u0628\u0647 \u0628\u0646\u062f\u06cc (0 \u062a\u0627 5)."],"Reviewer email.":["\u0627\u06cc\u0645\u06cc\u0644 \u0646\u0627\u0638\u0631."],"Reviewer name.":["\u0646\u0627\u0645 \u0646\u0627\u0638\u0631."],"Reviews":["\u0628\u0631\u0631\u0633\u06cc"],"Revoke Access":["\u0644\u063a\u0648 \u062f\u0633\u062a\u0631\u0633\u06cc"],"Rules with lower numbers will execute first. Rules further down this table with the same priority will also execute first.":["\u0642\u0648\u0627\u0646\u06cc\u0646 \u0628\u0627 \u0627\u0639\u062f\u0627\u062f \u06a9\u0645\u062a\u0631 \u0628\u0631\u0627\u06cc \u0627\u0648\u0644\u06cc\u0646 \u0628\u0627\u0631 \u0627\u062c\u0631\u0627 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f. \u0642\u0648\u0627\u0646\u06cc\u0646 \u0628\u06cc\u0634\u062a\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646 \u0627\u06cc\u0646 \u062c\u062f\u0648\u0644 \u0628\u0627 \u0647\u0645\u0627\u0646 \u0627\u0648\u0644\u0648\u06cc\u062a \u0646\u06cc\u0632 \u0628\u0631\u0627\u06cc \u0627\u0648\u0644\u06cc\u0646 \u0628\u0627\u0631 \u0627\u062c\u0631\u0627 \u0645\u06cc \u0634\u0648\u062f."],"Run the importer":["\u0627\u062c\u0631\u0627\u06cc \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc "],"SEO Title :":["\u0639\u0646\u0648\u0627\u0646 \u0633\u0626\u0648:"],"SEO Title is shown as the title of your store page":["\u0639\u0646\u0648\u0627\u0646 \u0633\u0626\u0648 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0646\u0627\u0645 \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"SKU":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644"],"SKU %s":["\u06a9\u062f \u0645\u062d\u0635\u0648\u0644 %s"],"SMS Sent Error":["\u062e\u0637\u0627 \u067e\u06cc\u0627\u0645\u06a9 \u0627\u0631\u0633\u0627\u0644 \u0634\u062f\u0647"],"SMS Sent Success":["\u067e\u06cc\u0627\u0645\u06a9 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f"],"SMS Text":["\u0645\u062a\u0646 \u067e\u06cc\u0627\u0645\u06a9"],"SMS code":["\u06a9\u062f \u067e\u06cc\u0627\u0645\u06a9\u06cc"],"SMS sent. Please enter your verification code":["\u067e\u06cc\u0627\u0645\u06a9 \u0627\u0631\u0633\u0627\u0644 \u06af\u0631\u062f\u06cc\u062f.\u0644\u0637\u0641\u0627 \u06a9\u062f \u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Sale Price:":["\u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634:"],"Sale end date":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0634\u06af\u0641\u062a \u0627\u0646\u06af\u06cc\u0632"],"Sale end date:":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0641\u0631\u0648\u0634 :"],"Sale price":["\u0642\u06cc\u0645\u062a \u0628\u0627 \u062a\u062e\u0641\u06cc\u0641"],"Sale start date":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0634\u06af\u0641\u062a \u0627\u0646\u06af\u06cc\u0632"],"Sale start date:":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u0641\u0631\u0648\u0634 :"],"Sales":["\u0641\u0631\u0648\u0634"],"Sales by day":["\u0641\u0631\u0648\u0634 \u0631\u0648\u0632"],"Sales in this period":["\u0641\u0631\u0648\u0634 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"Sales total":["\u0645\u062c\u0645\u0648\u0639 \u0641\u0631\u0648\u0634"],"Same as parent":["\u0647\u0645\u0627\u0646 \u062e\u0627\u0646\u0648\u0627\u062f\u0647"],"Sample:":["\u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u0627\u0633\u0644\u0627\u06cc\u062f\u0631 \u0646\u0645\u0648\u0646\u0647 "],"Sandbox App Password":["\u06af\u0630\u0631\u0648\u0627\u0698\u0647 \u0628\u0631\u0646\u0627\u0645\u0647 Sandbox "],"Sandbox App Signature":["\u0627\u0645\u0636\u0627\u06cc Sandbox App "],"Sandbox App Username":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u0631\u0646\u0627\u0645\u0647 Sandbox "],"Saturday":["\u0634\u0646\u0628\u0647"],"Save & Activate":["\u0630\u062e\u06cc\u0631\u0647 \u0648 \u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc"],"Save Changes":["\u0630\u062e\u06cc\u0631\u0647 \u062a\u063a\u06cc\u0631\u0627\u062a"],"Save Product":["\u0630\u062e\u06cc\u0631\u0647 \u0645\u062d\u0635\u0648\u0644"],"Save Resource":["\u0630\u062e\u06cc\u0631\u0647 \u0645\u0648\u062c\u0648\u062f\u06cc"],"Save Settings":["\u0630\u062e\u06cc\u0631\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"Save as Draft":["\u0630\u062e\u06cc\u0631\u0647 \u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633"],"Save attribute":["\u0630\u062e\u06cc\u0631\u0647 \u0648\u06cc\u0698\u06af\u06cc"],"Save attributes":["\u0630\u062e\u06cc\u0631\u0647 \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627"],"Saved cards":["\u06a9\u0627\u0631\u062a \u0647\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647"],"Schedule":["\u0632\u0645\u0627\u0646 \u0628\u0646\u062f\u06cc"],"Scheduled":["\u0632\u0645\u0627\u0646 \u0628\u0646\u062f\u06cc \u0634\u062f\u0647"],"Search Announcement":["\u062c\u0633\u062a\u062c\u0648 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"Search Topic":["\u062c\u0633\u062a\u062c\u0648 \u067e\u0633\u062a"],"Search Vendors":["\u062c\u0633\u062a\u062c\u0648 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"Search for a product&hellip;":["\u062c\u0633\u062a\u062c\u0648\u06cc \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 &hellip;"],"Search products live":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0632\u0646\u062f\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Search results for : ":["\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0631\u0627\u06cc: "],"Search review":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0646\u0638\u0631 "],"Secret Key":["\u06a9\u0644\u06cc\u062f \u0631\u0627\u0632"],"See All":["\u062f\u06cc\u062f\u0646 \u0647\u0645\u0647"],"See all":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0647\u0645\u0647"],"See the details by going here:":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062c\u0632\u0626\u06cc\u0627\u062a \u0631\u0627 \u0628\u0627 \u0631\u0641\u062a\u0646 \u0628\u0647 \u0627\u06cc\u0646\u062c\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f: "],"Select Country":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0634\u0648\u0631"],"Select ID type :":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0648\u0639 \u0634\u0646\u0627\u0633\u0647:"],"Select Options":["\u0647\u0645\u06cc\u0646 \u0642\u0634\u0646\u06af\u0647!"],"Select Order ID":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0622\u06cc \u062f\u06cc \u0633\u0641\u0627\u0631\u0634"],"Select Some Product":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0628\u0631\u062e\u06cc \u0627\u0632 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Select States":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u062a\u0627\u0646"],"Select Vendors":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"Select a Method":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u0634"],"Select a Store...":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 ..."],"Select all":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647"],"Select categories&hellip;":["\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0633\u062a\u0647 \u0647\u0627"],"Select fields from your CSV file to map against products fields, or to ignore during import.":["\u0641\u06cc\u0644\u062f\u0647\u0627 \u0631\u0627 \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u0628\u0631\u0627\u06cc \u0646\u0642\u0634\u0647 \u0631\u0648\u06cc \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f\u060c \u06cc\u0627 \u062f\u0631\u0646\u0638\u0631 \u0646\u06af\u06cc\u0631\u06cc\u062f \u0647\u0646\u06af\u0627\u0645 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc. "],"Select none":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u06cc\u0686\u06a9\u062f\u0627\u0645"],"Select product category":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u0648\u0636\u0648\u0639 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Select product tags":["\u0628\u0631\u0686\u0633\u0628 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"Select specific product category for this package. Leave empty to select all categories.":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u062e\u0627\u0635 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0628\u0633\u062a\u0647. \u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0645\u0627\u0645 \u062f\u0633\u062a\u0647 \u0647\u0627\u060c \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f "],"Select subscription a pack":["\u0628\u0633\u062a\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f "],"Select terms":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0642\u0648\u0627\u0646\u06cc\u0646"],"Selected Vendor":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647"],"Sell Item Button Text":["\u0641\u0631\u0648\u0634 \u0622\u06cc\u062a\u0645 \u062f\u06a9\u0645\u0647 \u0645\u062a\u0646 "],"Sell This Item":["\u0641\u0631\u0648\u0634 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f "],"Seller Support Tickets":["\u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 "],"Seller Verification":["\u062a\u0627\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Selling Price :":["\u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634:"],"Selling Price: ":["\u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634: "],"Selling has been enabled":["\u0641\u0631\u0648\u0634 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Send":["\u0627\u0631\u0633\u0627\u0644"],"Send Announcement To":["\u0627\u0631\u0633\u0627\u0644 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0628\u0631\u0627\u06cc"],"Send Email":["\u0627\u0631\u0633\u0627\u0644 \u0627\u06cc\u0645\u06cc\u0644"],"Send shipping details to PayPal instead of billing.":["\u0627\u0631\u0633\u0627\u0644 \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0627\u0631\u0633\u0627\u0644 \u0628\u0647 PayPal \u0628\u0647 \u062c\u0627\u06cc \u0635\u062f\u0648\u0631 \u0635\u0648\u0631\u062a \u062d\u0633\u0627\u0628."],"Sender Name":["\u0646\u0627\u0645 \u0627\u0631\u0633\u0627\u0644 \u06a9\u0646\u0646\u062f\u0647"],"Sent To":["\u0627\u0631\u0633\u0627\u0644 \u0628\u0647"],"September":["\u0633\u067e\u062a\u0627\u0645\u0628\u0631"],"Set Availability Range :":["\u062a\u0646\u0638\u06cc\u0645 \u0645\u062d\u062f\u0648\u062f\u0647 \u062f\u0633\u062a\u0631\u0633 \u067e\u0630\u06cc\u0631\u06cc:"],"Set Availability options":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647 \u062f\u0633\u062a\u0631\u0633 \u067e\u0630\u06cc\u0631\u06cc"],"Set Available Resources":["\u062a\u0646\u0638\u06cc\u0645 \u0645\u0646\u0627\u0628\u0639 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633"],"Set Costs options":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647"],"Set Person Options":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0634\u062e\u0635\u06cc"],"Set Product status as pending review when a vendor edits or updates a product":["\u062a\u0646\u0638\u06cc\u0645 \u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc \u0648\u0642\u062a\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06cc\u0627 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0631\u062f."],"Set Vacation Message":["\u062a\u0646\u0638\u06cc\u0645 \u067e\u06cc\u0627\u0645 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a"],"Set more options":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0628\u06cc\u0634\u062a\u0631"],"Set the commission type admin will get from this product":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646\u06cc \u06a9\u0647 \u0645\u062f\u06cc\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0627\u062e\u0630 \u06a9\u0646\u062f \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u06a9\u0646\u06cc\u062f"],"Set the commission type admin will get under this subscription":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646\u06cc \u06a9\u0647 \u0645\u062f\u06cc\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0639\u0636\u0648\u06cc\u062a \u0627\u062e\u0630 \u06a9\u0646\u062f \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u06a9\u0646\u06cc\u062f"],"Set your discount for this product":["\u062a\u0646\u0638\u06cc\u0645 \u062a\u062e\u0641\u06cc\u0641 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644"],"Set your displaying position for diplaying available vendor section in single product page":["\u0645\u0648\u0642\u0639\u06cc\u062a \u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0628\u062e\u0634 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062f\u0631 \u0635\u0641\u062d\u0647 \u062a\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f "],"Set your extra product options":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0641\u0648\u0642 \u0627\u0644\u0639\u0627\u062f\u0647"],"Set your heading for available vendor section in single product page":["\u0639\u0646\u0648\u0627\u0646 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u062e\u0634 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0635\u0641\u062d\u0647 \u062a\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f "],"Set your linked products for upsell and cross-sells":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u0631\u062a\u0628\u0637 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634 \u0648 \u0641\u0631\u0648\u0634 \u0645\u062a\u0642\u0627\u0628\u0644 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f"],"Set your postcode":["\u062a\u0646\u0638\u06cc\u0645 \u06a9\u062f\u067e\u0633\u062a\u06cc"],"Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"Settings Saved":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],"Share":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0631\u06cc"],"Share your Experience with \u003Ca href='%s' target='_blank'\u003E%s\u003C/a\u003E":["\u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0634\u062a\u0646 \u062a\u062c\u0631\u0628\u0647 \u062e\u0648\u062f \u0631\u0627 \u0628\u0627 \u003Ca href='%s' target='_blank'\u003E%s\u003C/a\u003E"],"Ship to":["\u062d\u0645\u0644 \u0628\u0647"],"Shipping":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping Calculation:":["\u0645\u062d\u0627\u0633\u0628\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644:"],"Shipping Class":["\u0631\u062f\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping Class Cost":["\u0647\u0632\u06cc\u0646\u0647 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping Cost : ":["\u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 :"],"Shipping Method":["\u0631\u0648\u0634 \u0627\u0631\u0633\u0627\u0644"],"Shipping Name":["\u0646\u0627\u0645 \u0631\u0648\u0634 \u0627\u0631\u0633\u0627\u0644"],"Shipping Policy":["\u0633\u06cc\u0627\u0633\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping and Tax":["\u0645\u0627\u0644\u06cc\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644:"],"Shipping class":["\u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping class:":["\u06af\u0631\u0648\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644:"],"Shipping classes are used by certain shipping methods to group similar products.":["\u06a9\u0644\u0627\u0633 \u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062a\u0648\u0633\u0637 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062e\u0627\u0635 \u0628\u0647 \u06af\u0631\u0648\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f."],"Shipping details":["\u062c\u0632\u0626\u06cc\u0627\u062a \u0627\u0631\u0633\u0627\u0644"],"Shipping functionality is currentlly disabled by site owner":["\u0642\u0627\u0628\u0644\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9 \u0633\u0627\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"Shipping method added successfully":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0636\u0627\u0641\u0647 \u0634\u062f"],"Shipping method deleted":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062d\u0630\u0641 \u0634\u062f"],"Shipping method disabled successfully":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f"],"Shipping method enabled successfully":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0641\u0639\u0627\u0644 \u0634\u062f"],"Shipping method not added successfully":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0636\u0627\u0641\u0647 \u0646\u0634\u062f"],"Shipping method not deleted":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062d\u0630\u0641 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"Shipping method not found":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"Shipping only":["\u0641\u0642\u0637 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"Shipping options saved successfully":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],"Shipping price for this state":["\u0642\u06cc\u0645\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0627\u0633\u062a\u0627\u0646"],"Shipping title must be required":["\u0639\u0646\u0648\u0627\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627\u06cc\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u0634\u062f"],"Shipping zone not found":["\u0645\u0646\u0637\u0642\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"Shipping: ":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644: "],"Ships from:":["\u062d\u0645\u0644 \u0627\u0632:"],"Shop Name":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Shop URL":["\u0622\u062f\u0631\u0633 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Short Description":["\u0634\u0631\u062d \u06a9\u0648\u062a\u0627\u0647"],"Short description":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0648\u062a\u0627\u0647"],"Short description about the product...":["\u062a\u0648\u0636\u06cc\u062d \u0645\u062e\u062a\u0635\u0631 \u062f\u0631\u0628\u0627\u0631\u0647 \u0645\u062d\u0635\u0648\u0644..."],"Show":["\u0646\u0645\u0627\u06cc\u0634"],"Show Dokan Store Support button":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062f\u06a9\u0627\u0646"],"Show advanced options":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 "],"Show chat button on product page":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0645\u062d\u0635\u0648\u0644"],"Show chat button on vendor page":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Show on store":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Show support button in store":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Shows if the reviewer bought the product or not.":["\u0646\u0634\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f \u06a9\u0647 \u0622\u06cc\u0627 \u0646\u0627\u0638\u0631 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f\u0647 \u06cc\u0627 \u0646\u0647."],"Simple":["\u0633\u0627\u062f\u0647"],"Simple product":["\u0645\u062d\u0635\u0648\u0644 \u0633\u0627\u062f\u0647"],"Simplified Chinese":["\u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0686\u06cc\u0646\u06cc \u0633\u0627\u062f\u0647\u200c\u0634\u062f\u0647"],"Single":["\u062a\u06a9\u06cc"],"Single Product MultiVendor":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0686\u0646\u062f \u0641\u0631\u0634\u0646\u062f\u0647"],"Single Vendor Mode (Recommended)":["\u062d\u0627\u0644\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0647\u0627 (\u062a\u0648\u0635\u06cc\u0647 \u0634\u062f\u0647) "],"Site Url":["\u0622\u062f\u0631\u0633 url \u0633\u0627\u06cc\u062a"],"Skrill":["\u0627\u0633\u06a9\u0631\u06cc\u0644"],"Slug \"%s\" is already in use. Change it, please.":["\u0646\u0627\u0645\u06a9 \"%s\" \u067e\u067e\u06cc\u0634 \u0627\u0632 \u0627\u06cc\u0646 \u0628\u06a9\u0627\u0631 \u0631\u0641\u062a\u0647 \u0627\u0633\u062a. \u062e\u0648\u0627\u0647\u0634\u0645\u0646\u062f \u0627\u0633\u062a \u0622\u0646\u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f . "],"Slug \"%s\" is not allowed because it is a reserved term. Change it, please.":["\u0646\u0627\u0645\u06a9 \"%s\" \u062f\u0631\u0633\u062a \u0646\u06cc\u0633\u062a \u0632\u06cc\u0631\u0627 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u067e\u06cc\u0634 \u0627\u0632 \u0627\u06cc\u0646 \u0628\u06a9\u0627\u0631 \u0631\u0641\u062a\u0647 \u0627\u0633\u062a . \u062e\u0648\u0627\u0647\u0634\u0645\u0646\u062f \u0627\u0633\u062a \u0646\u0627\u0645\u06a9 \u062f\u06cc\u06af\u0631\u06cc \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f . "],"Slug \"%s\" is too long (28 characters max). Shorten it, please.":["\u0646\u0627\u0645\u06a9 \u201c%s\u201d \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f \u0637\u0648\u0644\u0627\u0646\u06cc \u0627\u0633\u062a (\u062d\u062f\u0627\u06a9\u062b\u0631 28 \u062d\u0631\u0641). \u0622\u0646\u0631\u0627 \u06a9\u0648\u062a\u0627\u0647 \u06a9\u0646\u06cc\u062f \u0644\u0637\u0641\u0627"],"Social API":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a API \u0634\u0628\u06a9\u0647 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"Social Profile":["\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"Social Profiles":["\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"Social profiles help you to gain more trust. Consider adding your social profile links for better user interaction.":["\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u0634\u0645\u0627 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0627\u06cc\u0634 \u0633\u0637\u062d \u0627\u0639\u062a\u0645\u0627\u062f \u0633\u0627\u0632\u06cc \u06cc\u0627\u0631\u06cc \u0645\u06cc \u06a9\u0646\u0646\u062f. \u0628\u0647 \u0641\u06a9\u0631 \u0627\u0636\u0627\u0641\u0647 \u0646\u0645\u0648\u062f\u0646 \u0644\u06cc\u0646\u06a9 \u0628\u0647 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062e\u0648\u062f \u0628\u0631\u0627\u06cc \u062a\u0639\u0627\u0645\u0644 \u0628\u0647\u062a\u0631 \u0628\u0627 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0628\u0627\u0634\u06cc\u062f."],"Sold Individually":["\u0641\u0631\u0648\u062e\u062a\u0647 \u0634\u062f\u0647 \u0628\u0647 \u0635\u0648\u0631\u062a \u062c\u062f\u0627\u06af\u0627\u0646\u0647"],"Sold individually?":["\u0641\u0631\u0648\u0634 \u0628\u0647 \u0635\u0648\u0631\u062a \u062a\u06a9\u06cc \u061f "],"Something went wrong":["\u0645\u0634\u06a9\u0644\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f."],"Something went wrong and the order can not be processed!":["\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a \u0648 \u0633\u0641\u0627\u0631\u0634 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u067e\u0631\u062f\u0627\u0632\u0634 \u06a9\u0631\u062f!"],"Something went wrong!":["\u0627\u0634\u062a\u0628\u0627\u0647\u06cc \u0631\u062e \u062f\u0627\u062f\u0647 \u0627\u0633\u062a!"],"Something went wrong! please try again":["\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a! \u0644\u0637\u0641\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f"],"Sorry Something wrong please try again":["\u06cc\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0634\u062f\u0647\u060c \u0644\u0637\u0641\u0627 \u0645\u062c\u062f\u062f\u0627 \u062a\u0644\u0627\u0634 \u06a9\u0646\u06cc\u062f"],"Sorry your subscription exceeds your package limits please update your package subscription":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0634\u0645\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u0628\u0633\u062a\u0647 \u0634\u0645\u0627\u0633\u062a \u0644\u0637\u0641\u0627 \u067e\u06a9\u06cc\u062c  \u0627\u0634\u062a\u0631\u0627\u06a9 \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f"],"Sorry! You can not add or publish any more product. Please \u003Ca href=\"%s\"\u003Eupdate your package\u003C/a\u003E.":["\u0645\u062a\u0627\u0633\u0641\u06cc\u0645! \u0634\u0645\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u06cc\u0686 \u0645\u062d\u0635\u0648\u0644\u06cc \u0627\u0636\u0627\u0641\u0647 \u06cc\u0627 \u0645\u0646\u062a\u0634\u0631 \u06a9\u0646\u06cc\u062f. \u0644\u0637\u0641\u0627 \u003Ca href=\"%s\"\u003E\u067e\u06a9\u06cc\u062c \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f\u003C/a\u003E."],"Sorry, something went wrong! Couldn't create the ticket.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0645\u0634\u06a9\u0644\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f\u0647 \u0627\u0633\u062a \u0648 \u0627\u0645\u06a9\u0627\u0646 \u0627\u06cc\u062c\u0627\u062f \u062a\u06cc\u06a9\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"Sorry, something went wrong!.":["\u0645\u062a\u0623\u0633\u0641\u06cc\u0645\u060c \u0627\u0634\u062a\u0628\u0627\u0647\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f\u0647!"],"Sorry, there has been an error.":["\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647 \u0645\u0634\u06a9\u0644\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f\u0647 \u0627\u0633\u062a."],"Sorry, you have no permission to do this. Since it's not your product.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0646\u062f\u0627\u0631\u06cc\u062f \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f. \u0627\u0632 \u0622\u0646\u062c\u0627 \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u0634\u0645\u0627 \u0646\u06cc\u0633\u062a."],"Sorry, your vendor account is deactivated.":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u062d\u0633\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u06cc \u0634\u0645\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a."],"Spam":["\u0647\u0631\u0632\u0646\u0627\u0645\u0647"],"Spam (":["\u0647\u0631\u0632\u0646\u0627\u0645\u0647 \u0647\u0627 ("],"Spanish":["\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc"],"Special Price":["\u0642\u06cc\u0645\u062a \u0648\u06cc\u0698\u0647"],"Staff":["\u06a9\u0627\u0631\u0645\u0646\u062f"],"Staff deleted successfully":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u062d\u0630\u0641 \u0634\u062f."],"Standard":["\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f"],"Start Date":["\u062a\u0627\u0631\u064a\u062e \u0634\u0631\u0648\u0639"],"Start Date :":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639:"],"Start Price":["\u0634\u0631\u0648\u0639 \u0642\u06cc\u0645\u062a"],"Start Verification":["\u062a\u0623\u06cc\u06cc\u062f \u0631\u0627 \u0634\u0631\u0648\u0639 \u06a9\u0646\u06cc\u062f"],"Start date":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639:"],"Start with adding a Banner to gain profile progress":["\u0628\u0631\u0627\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a \u0633\u0637\u062d \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u0628\u0646\u0631 \u0634\u0631\u0648\u0639 \u06a9\u0646\u06cc\u062f"],"State":["\u0627\u0633\u062a\u0627\u0646"],"State name":["\u0646\u0627\u0645 \u06a9\u0634\u0648\u0631"],"Statement":["\u0628\u06cc\u0627\u0646\u06cc\u0647"],"Status":["\u0648\u0636\u0639\u06cc\u062a"],"Status for the store object.":["\u0648\u0636\u0639\u06cc\u062a \u0628\u0631\u0627\u06cc \u0647\u062f\u0641 - \u0634\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647."],"Status parameter must be active or inactive":["\u067e\u0627\u0631\u0627\u0645\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u0628\u0627\u06cc\u062f \u0641\u0639\u0627\u0644 \u06cc\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062f"],"Stock":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"Stock Qty":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u062c\u0648\u062f\u06cc"],"Stock Qty:":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u062c\u0648\u062f\u06cc:"],"Stock Status":["\u0648\u0636\u0639\u06cc\u062a \u0627\u0646\u0628\u0627\u0631"],"Stock quantity":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u062c\u0648\u062f\u06cc"],"Stock status":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc"],"Store":["\u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Banner height":["\u0627\u0631\u062a\u0641\u0627\u0639  \u0628\u0646\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Banner width":["\u0639\u0631\u0636 \u0628\u0646\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Category":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store List":["\u0644\u06cc\u0633\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Location":["\u0645\u06a9\u0627\u0646 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Name":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Name : ":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647:"],"Store Review":["\u0646\u0638\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 "],"Store Reviews":["\u0646\u0638\u0631\u0627\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647 "],"Store Reviews by customer":["\u0646\u0638\u0631\u0627\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc "],"Store SEO":["\u0633\u0626\u0648 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Support":["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Store Visitors":["\u0628\u0627\u0632\u062f\u06cc\u062f \u06a9\u0646\u0646\u062f\u06af\u0627\u0646 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Stores List":["\u0644\u06cc\u0633\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0647\u0627"],"Stripe Checkout":["\u062a\u0633\u0648\u06cc\u0647 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e"],"Stripe Checkout locale":["\u0645\u062d\u0644\u06cc \u0628\u0631\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0637"],"Stripe Connect":["\u0627\u062a\u0635\u0627\u0644 \u0627\u0633\u062a\u0631\u06cc\u067e"],"Stripe Payment Error: %s":["\u062e\u0637\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a\u0631\u06cc\u067e: %s"],"Stripe error: Please enter your publishable key \u003Ca href=\"%s\"\u003Ehere\u003C/a\u003E":["\u062e\u0637\u0627 Stripe : \u0644\u0637\u0641\u0627 \u06a9\u0644\u06cc\u062f \u0642\u0627\u0628\u0644 \u0627\u0646\u062a\u0634\u0627\u0631 \u062e\u0648\u062f \u0631\u0627  \u003Ca href=\"%s\"\u003E\u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Stripe error: Please enter your secret key \u003Ca href=\"%s\"\u003Ehere\u003C/a\u003E":["\u062e\u0637\u0627 Stripe : \u0644\u0637\u0641\u0627 \u06a9\u0644\u06cc\u062f \u0645\u062e\u0641\u06cc \u062e\u0648\u062f \u0631\u0627  \u003Ca href=\"%s\"\u003E\u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"Stripe error: Your secret and publishable keys match. Please check and re-enter.":["\u062e\u0637\u0627 \u0627\u0633\u062a\u0631\u06cc\u067e: \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u0645\u062e\u0641\u06cc \u0648 \u0642\u0627\u0628\u0644 \u0627\u0646\u062a\u0634\u0627\u0631 \u0634\u0645\u0627 \u0645\u0637\u0627\u0628\u0642\u062a \u062f\u0627\u0631\u0646\u062f. \u0644\u0637\u0641\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f"],"Stripe gateway is not configured. Please contact admin.":["\u062f\u0631\u0648\u0627\u0632\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0646\u0634\u062f\u0647 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631 \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"Stripe is enabled, but the \u003Ca href=\"%s\"\u003Eforce SSL option\u003C/a\u003E is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid SSL certificate - Stripe will only work in test mode.":["\u0646\u0648\u0627\u0631 \u062e\u0637 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0627\u0645\u0627 \u003Ca href=\"%s\"\"\u003E \u06af\u0632\u06cc\u0646\u0647 SSL \u003C/a\u003E \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a. \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0645\u0627 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0627\u0645\u0646 \u0646\u0628\u0627\u0634\u062f! \u0644\u0637\u0641\u0627 SSL \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u0648 \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062d\u0627\u0635\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0633\u0631\u0648\u0631 \u0634\u0645\u0627 \u06cc\u06a9 \u06af\u0648\u0627\u0647\u06cc\u0646\u0627\u0645\u0647 SSL \u0645\u0639\u062a\u0628\u0631 \u062f\u0627\u0631\u062f - \u0627\u0633\u062a\u0631\u06cc\u067e \u062a\u0646\u0647\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0633\u062a \u06a9\u0627\u0631 \u0645\u06cc \u06a9\u0646\u062f."],"Stripe now uses stripe.js for security and requires WooCommerce 1.5.8. Please update WooCommerce to continue using Stripe.":["\u0627\u06a9\u0646\u0648\u0646 Stripe \u0627\u0632 stripe.js \u0628\u0631\u0627\u06cc \u0627\u0645\u0646\u06cc\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u06a9\u0646\u062f \u0648 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f WooCommerce 1.5.8 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627 WooCommerce \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u062f\u0627\u0645\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 Stripe \u0628\u0647 \u0631\u0648\u0632 \u06a9\u0646\u06cc\u062f. "],"Stripe works by adding credit card fields on the checkout and then sending the details to Stripe for verification.":["\u0627\u0633\u062a\u0631\u06cc\u067e  \u0628\u0627 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062f\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0628\u0627 \u0627\u0631\u0633\u0627\u0644 \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0628\u0631\u0627\u06cc \u062a\u0627\u06cc\u06cc\u062f \u06a9\u0627\u0631 \u0645\u06cc \u06a9\u0646\u062f."],"Sub Order of":["\u0632\u06cc\u0631 \u0633\u0641\u0627\u0631\u0634 \u0627\u0632"],"Subject":["\u0645\u0648\u0636\u0648\u0639"],"Subject :":["\u0645\u0648\u0636\u0648\u0639:"],"Subject of the email.":["\u0645\u0648\u0636\u0648\u0639 \u0627\u06cc\u0645\u06cc\u0644."],"Submit":["\u0627\u0631\u0633\u0627\u0644"],"Submit Enquiry":["\u0627\u0631\u0633\u0627\u0644 "],"Submit Refund Request $amount\u0004Submit Refund Request %s":["\u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a %s"],"Submit Reply":["\u0627\u0631\u0633\u0627\u0644 \u062f\u06cc\u062f\u06af\u0627\u0647"],"Submitted on ":["\u062b\u0628\u062a \u0634\u062f\u0647 \u062f\u0631 "],"Subscribed":["\u0639\u0636\u0648 \u0634\u062f\u0647"],"Subscription":["\u0627\u0639\u0636\u0627"],"Subscription %s at %s":["\u0627\u0634\u062a\u0631\u0627\u06a9 %s \u062f\u0631 %s"],"Subscription Email":["\u0627\u06cc\u0645\u06cc\u0644 \u0627\u0634\u062a\u0631\u0627\u06a9"],"Subscription Pack":["\u067e\u06a9 \u0627\u0634\u062a\u0631\u0627\u06a9"],"Subscription Package Cancel notification":["\u0627\u0639\u0644\u0627\u0646 \u0644\u063a\u0648 \u067e\u06a9\u06cc\u062c \u0627\u0634\u062a\u0631\u0627\u06a9"],"Subscription User List":["\u0644\u06cc\u0633\u062a \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0631\u0641\u062a\u0647"],"Subscription cancelled with PayPal":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0628\u0627 \u067e\u06cc \u067e\u0627\u0644 \u0644\u063a\u0648 \u0634\u062f"],"Subscriptions":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u200c\u0647\u0627"],"Success!":["\u0645\u0648\u0641\u0642\u06cc\u062a \u0622\u0645\u06cc\u0632!"],"Successfully Cancelled Subscription":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0644\u063a\u0648 \u0634\u062f"],"Summary of the product:":["\u062e\u0644\u0627\u0635\u0647 \u0627\u06cc \u0627\u0632 \u0645\u062d\u0635\u0648\u0644:"],"Sunday":["\u06cc\u06a9\u0634\u0646\u0628\u0647"],"Support":["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"Support Button text":["\u0645\u062a\u0646 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"Support Tickets":["\u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"Support Topics by customer":["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u067e\u0633\u062a \u0647\u0627 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc"],"Swedish":["\u0633\u0648\u0626\u062f"],"TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date.":["\u062d\u0627\u0644\u062a \u062a\u0633\u062a \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a. \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0633\u062a\u060c \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0632 \u0634\u0645\u0627\u0631\u0647 \u06a9\u0627\u0631\u062a 4242424242424242 \u0628\u0627 \u0647\u0631 CVC \u0648 \u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627 \u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"Tags":["\u0628\u0631\u0686\u0633\u0628\u200c\u0647\u0627"],"Tax":["\u0645\u0627\u0644\u06cc\u0627\u062a"],"Tax Class":["\u0631\u062f\u0647 \u0645\u0627\u0644\u06cc\u0627\u062a"],"Tax Status":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0644\u06cc\u0627\u062a"],"Tax Total":["\u062c\u0645\u0639 \u0645\u0627\u0644\u06cc\u0627\u062a"],"Tax class":["\u06a9\u0644\u0627\u0633 \u0645\u0627\u0644\u06cc\u0627\u062a\u06cc"],"Tax class:":["\u06af\u0631\u0648\u0647 \u0645\u0627\u0644\u06cc\u0627\u062a:"],"Tax rates need to be defined with columns in a specific order (10 columns). \u003Ca href=\"%s\"\u003EClick here to download a sample\u003C/a\u003E.":["\u0646\u0631\u062e\u200c\u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u062a\u0639\u0631\u06cc\u0641 \u062f\u0631 \u0646\u0638\u0645 \u062e\u0627\u0635\u06cc \u0647\u0633\u062a\u0646\u062f (10 \u0633\u062a\u0648\u0646).  \u003Ca href=\"%s\"\u003E \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0646\u0645\u0648\u0646\u0647 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f\u003C/a\u003E. "],"Tax status":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0644\u06cc\u0627\u062a "],"Tax status\u0004None":["\u0647\u06cc\u0686"],"Taxable":["\u0645\u0634\u0645\u0648\u0644 \u0645\u0627\u0644\u06cc\u0627\u062a"],"Test Client ID":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0634\u062a\u0631\u06cc \u062a\u0633\u062a"],"Test Publishable Key":["\u0622\u0632\u0645\u0648\u0646 \u0627\u0646\u062a\u0634\u0627\u0631 \u06a9\u0644\u06cc\u062f"],"Test Secret Key":["\u062a\u0633\u062a \u06a9\u0644\u06cc\u062f \u0631\u0627\u0632"],"Test credentials":["\u0627\u0639\u062a\u0628\u0627\u0631 \u062a\u0633\u062a"],"Test mode":["\u062d\u0627\u0644\u062a \u062a\u0633\u062a"],"Thank you. Your ticket has been submitted!":["\u0628\u0627 \u062a\u0634\u06a9\u0631. \u062a\u06cc\u06a9\u062a \u0634\u0645\u0627 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f!"],"Thanks for your review":["\u0627\u0632 \u0627\u0631\u0627\u0626\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647 \u0634\u0645\u0627 \u0645\u062a\u0634\u06a9\u0631\u06cc\u0645! "],"The %s cannot be deleted.":["%s \u0642\u0627\u0628\u0644 \u062d\u0630\u0641 \u0646\u06cc\u0633\u062a."],"The CSV is invalid.":["\u0641\u0627\u06cc\u0644 CSV \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"The Resource has been updated successfully.":["\u0645\u0648\u062c\u0648\u062f\u06cc \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f."],"The amount of discount. Should always be numeric, even if setting a percentage.":["\u0645\u0642\u062f\u0627\u0631 \u062a\u062e\u0641\u06cc\u0641 \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u06cc\u062f \u0639\u062f\u062f\u06cc \u0628\u0627\u0634\u062f\u060c \u062d\u062a\u06cc \u0627\u06af\u0631 \u06cc\u06a9 \u062f\u0631\u0635\u062f \u062a\u0646\u0638\u06cc\u0645 \u0634\u0648\u062f."],"The amount requested for refund. Should always be numeric":["\u0645\u0628\u0644\u063a \u062f\u0631\u062e\u0648\u0627\u0633\u062a\u06cc \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u06cc\u062f \u0639\u062f\u062f\u06cc \u0628\u0627\u0634\u062f"],"The announcement cannot be deleted.":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0642\u0627\u0628\u0644 \u062d\u0630\u0641 \u0646\u06cc\u0633\u062a."],"The content of the review.":["\u0645\u062d\u062a\u0648\u0627\u06cc \u062f\u06cc\u062f\u06af\u0627\u0647."],"The cost is displayed to the user on the frontend. Leave blank to have it calculated for you. If a booking has varying costs, this will be prefixed with the word \"from:\".":["\u0647\u0632\u06cc\u0646\u0647 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062f\u0631 \u0638\u0627\u0647\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f. \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f \u062a\u0627 \u0628\u0631\u0627\u06cc \u0634\u0645\u0627 \u0645\u062d\u0627\u0633\u0628\u0647 \u0634\u0648\u062f. \u0627\u06af\u0631 \u0631\u0632\u0631\u0648 \u062f\u0627\u0631\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0645\u062a\u0646\u0648\u0639 \u0628\u0627\u0634\u062f\u060c \u0628\u0627 \u06a9\u0644\u0645\u0647 \"\u0627\u0632:\" \u067e\u06cc\u0634\u0648\u0646\u062f \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"The country you ship to":["\u06a9\u0634\u0648\u0631\u06cc \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0627\u0646\u062c\u0627 \u062d\u0645\u0644 \u0645\u06cc \u0634\u0648\u062f"],"The coupon code already exists":["\u06a9\u062f \u06a9\u0648\u067e\u0646 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f"],"The coupon code cannot be empty.":["\u06a9\u062f \u06a9\u0648\u067e\u0646 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u062e\u0627\u0644\u06cc \u0628\u0627\u0634\u062f."],"The date the Refund request has beed created in the site's timezone.":["\u062a\u0627\u0631\u06cc\u062e \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0627\u0633\u062a."],"The date the coupon expires, as GMT.":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0645\u0646\u0642\u0636\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 GMT."],"The date the coupon expires, in the site's timezone.":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0645\u0646\u0642\u0636\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a."],"The date the coupon was created, as GMT.":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 GMT."],"The date the coupon was created, in the site's timezone.":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u0627\u0633\u062a."],"The date the coupon was last modified, as GMT.":["\u062a\u0627\u0631\u06cc\u062e \u0622\u062e\u0631\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 GMT \u062a\u063a\u06cc\u06cc\u0631 \u06a9\u0631\u062f."],"The date the coupon was last modified, in the site's timezone.":["\u062a\u0627\u0631\u06cc\u062e \u0622\u062e\u0631\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u062a\u063a\u06cc\u06cc\u0631 \u06a9\u0631\u062f\u0647 \u0627\u0633\u062a."],"The date the review was created, as GMT.":["\u062a\u0627\u0631\u06cc\u062e \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc\u060c \u0647\u0645\u0627\u0646\u0646\u062f GMT."],"The date the review was created, in the site's timezone.":["\u062a\u0627\u0631\u06cc\u062e \u0628\u0631\u0631\u0633\u06cc \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0627\u0633\u062a."],"The file does not exist, please try again.":["\u0641\u0627\u06cc\u0644 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f\u060c \u0644\u0637\u0641\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"The file is empty, please try again with a new file.":["\u0641\u0627\u06cc\u0644 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a\u060c \u0644\u0637\u0641\u0627\u064b \u062f\u0648\u0628\u0627\u0631\u0647 \u0628\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u062c\u062f\u06cc\u062f \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"The following booking has been cancelled by the customer. The details of the cancelled booking can be found below.":["\u0631\u0632\u0631\u0648 \u0630\u06cc\u0644 \u0628\u0647 \u0648\u0633\u06cc\u0644\u0647 \u0645\u0634\u062a\u0631\u06cc \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a.  \u062c\u0632\u0626\u06cc\u0627\u062a \u0644\u063a\u0648 \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648\u060c \u062f\u0631 \u0632\u06cc\u0631 \u0622\u0645\u062f\u0647 \u0627\u0633\u062a."],"The label shown on the frontend if the resource is customer defined.":["\u0628\u0631\u0686\u0633\u0628 \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u062f\u0631 \u0642\u0633\u0645\u062a \u0638\u0627\u0647\u0631\u06cc \u0627\u06af\u0631 \u0645\u0646\u0627\u0628\u0639 \u0645\u0634\u062a\u0631\u06cc \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u0628\u0627\u0634\u062f."],"The lower the priority number, the earlier this rule gets applied. By default, global rules take priority over product rules which take priority over resource rules. By using priority numbers you can execute rules in different orders.":[" \u062a\u0639\u062f\u0627\u062f \u0627\u0648\u0644\u0648\u06cc\u062a \u067e\u0627\u06cc\u06cc\u0646 \u062a\u0631\u060c \u0632\u0648\u062f\u062a\u0631 \u0627\u06cc\u0646 \u0642\u0627\u0646\u0648\u0646 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f. \u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634 \u0641\u0631\u0636\u060c \u0642\u0648\u0627\u0646\u06cc\u0646 \u062c\u0647\u0627\u0646\u06cc \u0631\u0627 \u0645\u0642\u062f\u0645 \u0628\u0631 \u0642\u0648\u0627\u0646\u06cc\u0646 \u06a9\u0627\u0644\u0627 \u0631\u0627 \u06a9\u0647 \u0645\u0642\u062f\u0645 \u0628\u0631 \u0627\u062d\u06a9\u0627\u0645 \u0645\u0646\u0627\u0628\u0639. \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u0639\u062f\u0627\u062f \u0627\u0648\u0644\u0648\u06cc\u062a \u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0642\u0648\u0627\u0646\u06cc\u0646 \u062f\u0631 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0645\u062e\u062a\u0644\u0641 \u0631\u0627 \u0627\u062c\u0631\u0627 \u06a9\u0646\u062f."],"The maximum number of persons per booking.":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0634\u062e\u0635 \u062f\u0631 \u0647\u0631 \u0631\u0632\u0631\u0648"],"The meta description is often shown as the black text under the title in a search result. For this to work it has to contain the keyword that was searched for and should be less than 156 chars.":["\u062a\u0648\u0636\u06cc\u062d \u0645\u062a\u0627 \u0627\u063a\u0644\u0628 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646 \u0633\u06cc\u0627\u0647 \u0648 \u0633\u0641\u06cc\u062f \u062a\u062d\u062a \u0639\u0646\u0648\u0627\u0646 \u0645\u0637\u0644\u0628 \u062f\u0631 \u0646\u062a\u06cc\u062c\u0647 \u062c\u0633\u062a\u062c\u0648 \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f. \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u06a9\u0627\u0641\u06cc\u0633\u062a \u0645\u062a\u0646\u06cc \u06a9\u0647 \u0634\u0627\u0645\u0644 \u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc \u0627\u0633\u062a \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f \u0648 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0628\u0627\u06cc\u062f \u06a9\u0645\u062a\u0631 \u0627\u0632 156 \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631 \u0628\u0627\u0634\u062f."],"The minimum number of persons per booking.":["\u062d\u062f\u0627\u0642\u0644 \u062a\u0639\u062f\u0627\u062f \u0634\u062e\u0635 \u062f\u0631 \u0647\u0631 \u0631\u0632\u0631\u0648"],"The module is invalid":["\u0627\u06cc\u0646 \u0645\u0627\u0698\u0648\u0644 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"The post does not support trashing. Set '%s' to delete.":["\u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0627\u0632 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f. \u0628\u0631\u0627\u06cc \u062d\u0630\u0641 \u0628\u0647 '%s' \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f."],"The post has already been deleted.":["\u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0642\u0628\u0644\u0627\u064b \u062d\u0630\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a."],"The product has been saved successfully.":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f."],"The product has been updated successfully.":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a."],"The product is currently in \"pending\" state.":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644\u062a \"\u062f\u0631 \u062d\u0627\u0644 \u0627\u0646\u062a\u0638\u0627\u0631\" \u0627\u0633\u062a."],"The product is currently in \"pending\" status.":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u0648\u0636\u0639\u06cc\u062a \"\u062f\u0631 \u062d\u0627\u0644 \u0627\u0646\u062a\u0638\u0627\u0631\" \u0627\u0633\u062a."],"The product is currently in \"publish\" state. So everyone can view the product.":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644\u062a \"\u0627\u0646\u062a\u0634\u0627\u0631\" \u0627\u0633\u062a. \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0647\u0631 \u06a9\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u062f."],"The product is currently in \"publish\" status. So, everyone can view the product.":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u0648\u0636\u0639\u06cc\u062a \"\u0627\u0646\u062a\u0634\u0627\u0631\" \u0627\u0633\u062a. \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646\u060c \u0647\u0631 \u06a9\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u062f."],"The starting block only":["\u062a\u0646\u0647\u0627 \u06cc\u06a9 \u0645\u06a9\u0627\u0646 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f"],"The state you ship to":["\u0627\u0633\u062a\u0627\u0646\u06cc \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0627\u0646\u062c\u0627 \u062d\u0645\u0644 \u0645\u06cc \u0634\u0648\u062f"],"The time required before sending the product for delivery":["\u0632\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0628\u0631\u0627\u06cc \u062a\u062d\u0648\u06cc\u0644 \u0642\u0628\u0644 \u0627\u0632 \u0627\u0631\u0633\u0627\u0644 \u06a9\u0627\u0644\u0627"],"The vendor has been disabled.":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647\u200c\u0627\u0646\u062f."],"There was a problem connecting to the payment gateway.":["\u0645\u0634\u06a9\u0644\u06cc \u062f\u0631 \u0627\u0631\u062a\u0628\u0627\u0637 \u0628\u0627 \u062f\u0631\u0648\u0627\u0632\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0648\u062c\u0648\u062f \u062f\u0627\u0634\u062a."],"There was an error when reading this WXR file":["\u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u0641\u0627\u06cc\u0644 WXR   \u062e\u0637\u0627\u06cc\u06cc \u0631\u062e  \u062f\u0627\u062f"],"These costs can optionally be added based on the product shipping class":["\u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0628\u0647 \u0635\u0648\u0631\u062a \u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0628\u0631 \u0627\u0633\u0627\u0633 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u062d\u0635\u0648\u0644 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc \u06af\u0631\u062f\u062f"],"These emails are sent to a vendor(s) who is are selected in a annoucement ":["\u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627 \u0628\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647(\u0647\u0627) \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f \u06a9\u0647 \u062f\u0631 \u06cc\u06a9 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0627\u0633\u062a "],"These emails are sent to chosen recipient(s) when a vendor send request for refund":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a\u060c \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627 \u0628\u0647 \u06af\u06cc\u0631\u0646\u062f\u0647 \u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f"],"These emails are sent to vendor when a vendor refund request is processed":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u067e\u0631\u062f\u0627\u0632\u0634 \u0645\u06cc \u0634\u0648\u062f\u060c \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0641\u0631\u0633\u062a\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f"],"These products do not ship to your chosen location.: %s":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062f\u0631 \u0645\u0648\u0642\u06cc\u062a \u0645\u06a9\u0627\u0646\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u0646\u06cc\u0633\u062a\u0646\u062f: %s"],"This booking is awaiting your approval. Please check it and inform the customer if the date is available or not.":["\u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0627\u06cc\u06cc\u062f \u0634\u0645\u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b \u0622\u0646 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u0648 \u0627\u06af\u0631 \u062a\u0627\u0631\u06cc\u062e \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0627\u0633\u062a \u06cc\u0627 \u0646\u0647\u060c \u0627\u0637\u0644\u0627\u0639 \u062f\u0647\u06cc\u062f."],"This controls the description which the user sees during checkout.":["\u0627\u06cc\u0646 \u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0631\u0627 \u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u0628\u06cc\u0646\u062f \u06a9\u0646\u062a\u0631\u0644 \u0645\u06cc \u06a9\u0646\u062f."],"This controls the title which the user sees during checkout.":["\u0627\u06cc\u0646 \u06a9\u0646\u062a\u0631\u0644 \u0639\u0646\u0648\u0627\u0646\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f \u06a9\u0647 \u0645\u0634\u062a\u0631\u06cc \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0622\u0646 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u062f"],"This does not appear to be a WXR file, missing/invalid WXR version number":["\u0645\u0634\u06a9\u0644\u06cc \u0631\u062e \u062f\u0627\u062f"],"This email is sent to admin and vendor when a new auction product is added":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u062c\u062f\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc \u0634\u0648\u062f\u060c \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0645\u062f\u06cc\u0631 \u0648 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f"],"This email is sent to admin and vendor when booking is cancelled by the customer":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0631\u0632\u0631\u0648 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u0644\u063a\u0648 \u0645\u06cc\u200c\u0634\u0648\u062f \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0645\u062f\u06cc\u0631 \u0648 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"This email is set to a vendor when he enabled from admin settings":["\u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0627\u0632 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u062f\u06cc\u0631\u06cc\u062a \u0641\u0639\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f\u060c \u0628\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0638\u06cc\u0645 \u0645\u06cc \u0634\u0648\u062f"],"This email is set to a vendor when his account is deactivated by admin":["\u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u062d\u0633\u0627\u0628 \u0627\u0648 \u062a\u0648\u0633\u0637 \u0645\u062f\u06cc\u0631 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a \u062a\u0646\u0638\u06cc\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a"],"This is a list of pending vendors who have registered in the marketplace but not active yet. Make them active to enable selling.":["\u0627\u06cc\u0646 \u0644\u06cc\u0633\u062a\u06cc \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0639\u0644\u0642 \u0627\u0633\u062a \u06a9\u0647 \u062f\u0631 \u0628\u0627\u0632\u0627\u0631 \u062b\u0628\u062a \u0646\u0627\u0645 \u06a9\u0631\u062f\u0647 \u0627\u0646\u062f \u0627\u0645\u0627 \u0647\u0646\u0648\u0632 \u0641\u0639\u0627\u0644 \u0646\u0634\u062f\u0647 \u0627\u0646\u062f. \u0622\u0646\u0647\u0627 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u0641\u0631\u0648\u0634 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f."],"This is not a valid plugin":["\u0627\u06cc\u0646 \u06cc\u06a9 \u067e\u0644\u0627\u06af\u06cc\u0646 \u0645\u0639\u062a\u0628\u0631 \u0646\u06cc\u0633\u062a"],"This is not yours, I swear!":["\u0627\u06cc\u0646 \u0645\u0627\u0644 \u0634\u0645\u0627 \u0646\u06cc\u0633\u062a\u060c \u0633\u0648\u06af\u0646\u062f \u0645\u06cc\u200c\u062e\u0648\u0631\u0645!"],"This is the URL or absolute path to the file which customers will get access to.":["\u0627\u06cc\u0646 \u0622\u062f\u0631\u0633 \u0648 \u06cc\u0627 \u0645\u0633\u06cc\u0631 \u0641\u0627\u06cc\u0644\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f \u06a9\u0647 \u0645\u0634\u062a\u0631\u06cc \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0628\u0647 \u0627\u0646 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u06cc \u06cc\u0627\u0628\u062f."],"This is the URL or absolute path to the file which customers will get access to. URLs entered here should already be encoded.":["\u0627\u06cc\u0646 \u0622\u062f\u0631\u0633 \u06cc\u0627 \u0645\u0633\u06cc\u0631 \u0642\u0637\u0639\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0634\u062a\u0631\u06cc \u0628\u0647 \u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0633\u062a. \u0622\u062f\u0631\u0633 \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0628\u0627\u06cc\u062f \u0631\u0645\u0632\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0627\u0634\u062f."],"This is the base price and will be the starting shipping price for each product":["\u0627\u06cc\u0646 \u0642\u06cc\u0645\u062a \u067e\u0627\u06cc\u0647 \u0627\u0633\u062a \u0648 \u0647\u0632\u06cc\u0646\u0647 \u0634\u0631\u0648\u0639 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0647\u0631 \u0645\u062d\u0635\u0648\u0644\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f."],"This is the commission type for admin fee":["\u0627\u06cc\u0646 \u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0628\u0631\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647 \u0645\u062f\u06cc\u0631 \u0627\u0633\u062a"],"This is the cost per block booked. All other costs (for resources and persons) are added to this.":["\u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u062f\u0631 \u0647\u0631 \u0628\u0644\u0648\u06a9 \u0631\u0632\u0631\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a. \u062a\u0645\u0627\u0645 \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 (\u0628\u0631\u0627\u06cc \u0645\u0646\u0627\u0628\u0639 \u0648 \u0627\u0641\u0631\u0627\u062f) \u0628\u0647 \u0627\u06cc\u0646 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc \u0634\u0648\u062f."],"This is the error message displayed to a shopper when attempting to add too many vendor items to the cart due to PayPal limitation.":["\u0627\u06cc\u0646 \u067e\u06cc\u0627\u0645 \u062e\u0637\u0627 \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u062e\u0631\u06cc\u062f\u0627\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f \u06a9\u0647 \u062f\u0631 \u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f \u0628\u0633\u06cc\u0627\u0631\u06cc \u0627\u0632 \u0627\u0642\u0644\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0647 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0628\u0647 \u0639\u0644\u062a \u0645\u062d\u062f\u0648\u062f\u06cc\u062a PayPal \u0627\u0633\u062a. "],"This is the name of the download shown to the customer.":["\u0627\u06cc\u0646 \u0646\u0627\u0645 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f \u06a9\u0647 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f."],"This is the shipping and handling total costs for the order.":["\u06a9\u0644 \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0633\u0641\u0627\u0631\u0634"],"This is the total discount. Discounts are defined per line item.":["\u0627\u06cc\u0646 \u062a\u062e\u0641\u06cc\u0641 \u06a9\u0644 \u0627\u0633\u062a. \u062a\u062e\u0641\u06cc\u0641 \u062f\u0631 \u0647\u0631 \u0645\u0648\u0631\u062f \u062f\u0631 \u06cc\u06a9 \u062e\u0637 \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a."],"This lets you choose which products are part of this group.":["\u0627\u06cc\u0646 \u0628\u0647 \u0634\u0645\u0627 \u0627\u06cc\u0646 \u0627\u0645\u06a9\u0627\u0646 \u0631\u0627 \u0645\u06cc \u062f\u0647\u062f \u06a9\u0647 \u06a9\u062f\u0627\u0645 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0628\u062e\u0634\u06cc \u0627\u0632 \u0627\u06cc\u0646 \u06af\u0631\u0648\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"This month's sales":["\u0641\u0631\u0648\u0634 \u0627\u06cc\u0646 \u0645\u0627\u0647"],"This notice will be shown after a user has registered with pending email verification.":["\u0627\u06cc\u0646 \u0646\u06a9\u062a\u0647 \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646\u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u06a9\u0631\u062f \u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0648\u062f \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"This notice will be shown when a user tries to login without email verification.":["\u0627\u06cc\u0646 \u0646\u06a9\u062a\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062a\u0644\u0627\u0634 \u0645\u06cc\u200c\u06a9\u0646\u062f \u0648\u0627\u0631\u062f \u0633\u0627\u06cc\u062a \u0634\u0648\u062f \u0628\u062f\u0648\u0646 \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"This option affects how bookings are checked for availability.":["\u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u062a\u062d\u062a \u062a\u0627\u062b\u06cc\u0631 \u0686\u06af\u0648\u0646\u0647 \u0631\u0632\u0631\u0648 \u0628\u0631\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0628\u0648\u062f\u0646 \u0628\u0631\u0631\u0633\u06cc \u0645\u06cc \u0634\u0648\u062f."],"This option affects how you use the rules below.":["\u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0631 \u0646\u062d\u0648\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0642\u0648\u0627\u0646\u06cc\u0646 \u0632\u06cc\u0631 \u062a\u0627\u062b\u06cc\u0631 \u0645\u06cc\u200c\u06af\u0630\u0627\u0631\u062f."],"This page contains your store-wide shipping settings, costs, shipping and refund policy.":["\u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0634\u0627\u0645\u0644 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0631 \u0633\u0631\u0627\u0633\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627\u060c \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0648 \u0633\u06cc\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a."],"This product does not ship to your chosen location: %s":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u0645\u0648\u0642\u06cc\u062a \u0645\u06a9\u0627\u0646\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u0646\u06cc\u0633\u062a: %s"],"This product requires shipping":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0627\u0631\u062f"],"This refund is not pending. Only pending request status can be changed":["\u0627\u06cc\u0646 \u0628\u0627\u0632 \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0642\u0631\u0627\u0631 \u0646\u062f\u0627\u0631\u062f. \u0641\u0642\u0637 \u062f\u0631\u062e\u0648\u0627\u0633\u062a\u200c \u0628\u0627 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062a\u063a\u06cc\u06cc\u0631 \u06a9\u0646\u062f"],"This ticket has been closed. Open a new support ticket if you have any further query.":["\u0627\u06cc\u0646 \u062a\u06cc\u06a9\u062a \u0628\u0633\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a. \u0627\u06af\u0631 \u0633\u0648\u0627\u0644 \u062f\u06cc\u06af\u0631\u06cc \u062f\u0627\u0631\u06cc\u062f\u060c \u062a\u06cc\u06a9\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062c\u062f\u06cc\u062f\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f."],"This tool allows you to generate and download a CSV file containing a list of all products.":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u0628\u0647 \u0634\u0645\u0627 \u0627\u0645\u06a9\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f \u062a\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 CSV \u062d\u0627\u0648\u06cc \u0644\u06cc\u0633\u062a\u06cc \u0627\u0632 \u0647\u0645\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u062a\u0648\u0644\u06cc\u062f \u0648 \u062f\u0627\u0646\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f."],"This tool allows you to import (or merge) product data to your store from a CSV file.":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u0628\u0647 \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc (\u06cc\u0627 \u0627\u062f\u063a\u0627\u0645) \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u0631\u0627 \u0645\u06cc \u062f\u0647\u062f. "],"This tool will check for duplicate orders from the Dokan's sync table.":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc \u0627\u0632 \u062c\u062f\u0648\u0644 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u062f\u06a9\u0627\u0646 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u0645\u06cc \u06a9\u0646\u062f."],"This tool will delete all orders from the Dokan's sync table and re-build it.":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u062a\u0645\u0627\u0645 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0627\u0632 \u062c\u062f\u0648\u0644 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u062f\u06a9\u0627\u0646 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0631\u062f\u0647 \u0648 \u0622\u0646 \u0631\u0627 \u0628\u0627\u0632 \u0633\u0627\u0632\u06cc \u0645\u06cc \u06a9\u0646\u062f."],"This vendor has not configured his Stripe payment gateway and the product can not be purchased!":["\u0627\u06cc\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u0631\u0648\u0627\u0632\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a\u0631\u06cc\u067e \u062e\u0648\u062f \u0631\u0627 \u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0646\u06a9\u0631\u062f\u0647 \u0648 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f! "],"Thursday":["\u067e\u0646\u062c\u0634\u0646\u0628\u0647"],"Ticket Closed":["\u062a\u06cc\u06a9\u062a \u0628\u0633\u062a\u0647 \u0634\u062f"],"Time Range":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u0645\u0627\u0646\u06cc"],"Time Range (all week)":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u0645\u0627\u0646\u06cc (\u062a\u0645\u0627\u0645 \u0647\u0641\u062a\u0647)"],"Time Ranges":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u0645\u0627\u0646\u06cc"],"Title":["\u0639\u0646\u0648\u0627\u0646"],"Title :":["\u0639\u0646\u0648\u0627\u0646 :"],"Title:":["\u0639\u0646\u0648\u0627\u0646:"],"Title: ":["\u0639\u0646\u0648\u0627\u0646 : "],"To":["\u062a\u0627"],"To cancel your subscription click here &rarr;":["\u0628\u0631\u0627\u06cc \u0644\u063a\u0648 \u0639\u0636\u0648\u06cc\u062a \u062e\u0648\u062f \u0627\u06cc\u0646\u062c\u0627 \u0631\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f &rarr;"],"To:":["\u062a\u0627:"],"Toggle Status":["\u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a"],"Tools":["\u0627\u0628\u0632\u0627\u0631 \u0647\u0627"],"Top Rated Products":["\u067e\u0631 \u0627\u0645\u062a\u06cc\u0627\u0632\u062a\u0631\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Top earning":["\u062f\u0631\u0622\u0645\u062f \u0628\u0627\u0644\u0627"],"Top selling":["\u067e\u0631\u0641\u0631\u0648\u0634 \u062a\u0631\u06cc\u0646"],"Topic":["\u062a\u0627\u067e\u06cc\u06a9"],"Topic not found":["\u062a\u06cc\u06a9\u062a \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"Topics":["\u0645\u0648\u0636\u0648\u0639\u0627\u062a"],"Total":["\u062c\u0645\u0639 \u06a9\u0644"],"Total :":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062c\u0627\u0645\u0639"],"Total Earning":["\u0645\u062c\u0645\u0648\u0639 \u062f\u0631\u0622\u0645\u062f"],"Total Earning in this period":["\u0645\u062c\u0645\u0648\u0639 \u062f\u0631\u0622\u0645\u062f \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"Total Products":["\u062c\u0645\u0639 \u06a9\u0644 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"Total available to refund":["\u06a9\u0644 \u0645\u0648\u062c\u0648\u062f\u06cc \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"Trash":["\u0632\u0628\u0627\u0644\u0647 \u0647\u0627"],"Trash (":["\u0632\u0628\u0627\u0644\u0647 \u0647\u0627 ("],"Trash \u003Cspan class='count'\u003E(%s)\u003C/span\u003E":["\u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"Tuesday":["\u0633\u0647 \u0634\u0646\u0628\u0647"],"Twilio App Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0646\u0631\u0645 \u0627\u0641\u0632\u0627\u0631 \u062a\u0648\u06cc\u0644\u06cc\u0648"],"Twitter App Settings":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u0648\u06cc\u06cc\u062a\u0631"],"Twitter Description :":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u062a\u0648\u06cc\u06cc\u062a\u0631:"],"Twitter Image :":["\u062a\u0635\u0648\u06cc\u0631 \u062a\u0648\u06cc\u06cc\u062a\u0631:"],"Twitter Title :":["\u0639\u0646\u0648\u0627\u0646 \u062a\u0648\u06cc\u06cc\u062a\u0631:"],"Type":["\u0646\u0648\u0639"],"Unable to send sms. Contact admin":["\u0627\u0645\u06a9\u0627\u0646 \u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f \u0628\u0627 \u0645\u062f\u06cc\u0631 \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f"],"Unable to use image \"%s\".":["\u0642\u0627\u062f\u0631 \u0628\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062a\u0635\u0648\u06cc\u0631 \"%s\" \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"Unapprove":["\u0644\u063a\u0648 \u062a\u0623\u06cc\u06cc\u062f"],"Unique identifier for the object.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0647 \u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0634\u06cc."],"Unique identifier for the resource.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0647 \u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0645\u0646\u0628\u0639."],"Unique identifier for the variable product.":["\u0634\u0646\u0627\u0633\u0647 \u06cc \u0645\u0646\u062d\u0635\u0631 \u0628\u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0645\u062a\u063a\u06cc\u0631."],"Unique identifier for the variation.":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631."],"Unlimited":["\u0646\u0627 \u0645\u062d\u062f\u0648\u062f"],"Unpublished":["\u0645\u0646\u062a\u0634\u0631 \u0646\u0634\u062f\u0647"],"Unserializing is forbidden!":["\u0639\u062f\u0645 \u0635\u062f\u0648\u0631 \u0645\u062c\u0648\u0632 \u0645\u0645\u0646\u0648\u0639 \u0627\u0633\u062a!"],"Update":["\u0622\u067e\u062f\u06cc\u062a"],"Update Coupon":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"Update Product":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0645\u062d\u0635\u0648\u0644"],"Update Settings":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"Update Topic":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u067e\u0633\u062a"],"Update account to Vendor":["\u0627\u0631\u062a\u0642\u0627\u0621 \u0633\u0627\u0628 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u06cc"],"Update existing products":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062e\u062f\u0645\u0627\u062a \u067e\u06cc\u0634\u06cc\u0646 "],"Update permission":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0627\u062c\u0627\u0632\u0647"],"Update review":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0646\u0638\u0631 "],"Update staff":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f"],"Update your Experience with \u003Ca href='%s' target='_blank'\u003E%s\u003C/a\u003E":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062a\u062c\u0631\u0628\u0647 \u062e\u0648\u062f \u0631\u0627 \u0628\u0627 \u003Ca href='%s' target='_blank'\u003E%s\u003C/a\u003E"],"Updates":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc"],"Upload CSV file":["\u0622\u067e\u0644\u0648\u062f \u0641\u0627\u06cc\u0644 CSV "],"Upload Photo":["\u0622\u067e\u0644\u0648\u062f \u062a\u0635\u0648\u06cc\u0631"],"Upload Product Image":["\u0622\u067e\u0644\u0648\u062f \u062a\u0635\u0648\u06cc\u0631 \u0645\u062d\u0635\u0648\u0644"],"Upload a product cover image":["\u062a\u0635\u0648\u06cc\u0631 \u06a9\u0627\u0648\u0631 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0645\u0627\u0626\u06cc\u062f"],"Upload an image":["\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u062a\u0635\u0648\u06cc\u0631"],"Upload file and import":["\u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u0641\u0627\u06cc\u0644 \u0648 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc"],"Upsells":["\u0628\u0627\u0644\u0627 \u0631\u0641\u062a\u0646"],"Upsells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive.":["Up-Sells \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u06cc \u0647\u0633\u062a\u0646\u062f \u06a9\u0647 \u0634\u0645\u0627 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0645\u06cc\u200c\u062f\u0647\u06cc\u062f \u0628\u0647 \u062c\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u06cc \u06a9\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u06cc\u200c\u0628\u06cc\u0646\u0646\u062f \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0646\u0646\u062f \u06a9\u0647 \u0627\u0631\u0632\u0634\u0645\u0646\u062f\u062a\u0631 \u0648 \u0628\u0647\u062a\u0631 \u0648 \u06cc\u0627 \u06af\u0631\u0627\u0646\u200c\u062a\u0631 \u0647\u0633\u062a\u0646\u062f."],"Usage / Limit":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 / \u062d\u062f\u0648\u062f"],"Usage Limit":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647"],"Use a new credit card":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062c\u062f\u06cc\u062f"],"Used":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647"],"Used for variations":["\u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"User Email:":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631:"],"User account not connected to Stripe":["\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0645\u062a\u0635\u0644 \u0646\u06cc\u0633\u062a"],"Username":["\u0627\u0633\u0645 \u06a9\u0627\u0631\u0628\u0631"],"Username :":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc :"],"Vacation (%d)":["\u062a\u0639\u0637\u06cc\u0644\u0627\u062a (%d)"],"Vacation \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E":["\u062a\u0639\u0637\u06cc\u0644\u0627\u062a\u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E"],"Validity:":["\u0627\u0639\u062a\u0628\u0627\u0631:"],"Value(s)":["\u0645\u0642\u062f\u0627\u0631"],"Variable":["\u0645\u062a\u063a\u06cc\u0631"],"Variable product":["\u0645\u062d\u0635\u0648\u0644 \u0645\u062a\u063a\u06cc\u0631"],"Variation":["\u0645\u062a\u063a\u06cc\u0631"],"Variation #%s of %s":["\u062a\u0646\u0648\u0639 #%s \u0627\u0632 %s"],"Variation ID:":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u063a\u06cc\u06cc\u0631:"],"Variation cannot be imported: Missing parent ID or parent does not exist yet.":["\u0645\u062a\u063a\u06cc\u06cc\u0631 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f: \u0634\u0646\u0627\u0633\u0647 \u0627\u0635\u0644\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f \u0648 \u0647\u0646\u0648\u0632 \u0646\u06cc\u0633\u062a."],"Variation description":["\u0634\u0631\u062d \u0645\u062a\u063a\u06cc\u0631"],"Variation price (required)":["\u0642\u06cc\u0645\u062a \u0645\u062a\u063a\u06cc\u0631 (\u0636\u0631\u0648\u0631\u06cc) :"],"Variations":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"Vendor":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor :":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 :"],"Vendor Dasboard":["\u067e\u06cc\u0634\u062e\u0648\u0627\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Earning":["\u062f\u0631\u0627\u0645\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor ID":["\u0634\u0646\u0627\u0633\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Listing":["\u0644\u06cc\u0633\u062a \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Name":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Product Review":["\u0628\u0631\u0631\u0633\u06cc \u0645\u062d\u0635\u0648\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Registration Form":["\u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Review":["\u0646\u0638\u0631\u0627\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Shipping":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Staff":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor Verifications":["\u062a\u0627\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"Vendor can add order and product discount":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u062c\u0627\u0632\u0647 \u0627\u0641\u0632\u0648\u062f\u0646 \u0633\u0641\u0627\u0631\u0634 \u0648 \u062a\u062e\u0641\u06cc\u0641 \u0631\u0627 \u062f\u0627\u0631\u062f"],"Vendor can change product review status from vendor dashboard":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u06cc\u062a\u0648\u0627\u0646\u062f \u0648\u0636\u0639\u06cc\u062a \u0628\u0631\u0631\u0633\u06cc \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0627\u0632 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u062f"],"Vendor can only create refund request":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0647\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f"],"Vendor not exist":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"Vendor: ":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647: "],"Vendors":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"Verification":["\u062a\u0627\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a"],"Verification Requests":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627\u06cc \u062a\u0627\u06cc\u06cc\u062f"],"Verification SMS Gateways":["\u062f\u0631\u0648\u0627\u0632\u0647 \u0647\u0627\u06cc \u062a\u0623\u06cc\u06cc\u062f \u067e\u06cc\u0627\u0645\u06a9\u06cc"],"Verifications":["\u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647 \u0647\u0627"],"View":["\u062f\u06cc\u062f\u0646"],"View Announcement":["\u0646\u0645\u0627\u06cc\u0634 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"View Comment":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647"],"View Details":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062c\u0632\u0626\u06cc\u0627\u062a"],"View Order":["\u0646\u0645\u0627\u06cc\u0634 \u0633\u0641\u0627\u0631\u0634"],"View Product":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644"],"View Product &rarr;":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644&rarr;"],"View Store":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"View Support Tickets":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"View Topic":["\u0645\u0634\u0627\u0647\u062f\u0647 \u067e\u0633\u062a"],"View and edit this booking in the dashboard":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0631 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"View and edit this booking in the dashboard ":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0631 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 "],"View auction menu":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u062d\u0631\u0627\u062c"],"View booking &rarr;":["\u0646\u0645\u0627\u06cc\u0634 \u0631\u0632\u0631\u0648 &rarr;"],"View booking menu":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u0631\u0632\u0631\u0648"],"View import log":["\u0645\u0634\u0627\u0647\u062f\u0647 \u06af\u0632\u0627\u0631\u0634 "],"View products":["\u062f\u06cc\u062f\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a "],"View review":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0646\u0638\u0631"],"View tax rates":["\u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a "],"View tools menu":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631"],"View verification settings menu":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u0623\u06cc\u06cc\u062f"],"Views":["\u0628\u0627\u0632\u062f\u06cc\u062f \u0647\u0627"],"Virtual":["\u0645\u062c\u0627\u0632\u06cc"],"Virtual Product":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u062c\u0627\u0632\u06cc"],"Virtual products are intangible and aren't shipped.":["\u0648\u0627\u062d\u062f \u0627\u0642\u0627\u0645\u062a\u06cc \u0645\u062c\u0627\u0632\u06cc \u0642\u0627\u0628\u0644\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0646\u062f\u0627\u0631\u0646\u062f"],"Visibility":["\u0642\u0627\u0628\u0644 \u0631\u0648\u06cc\u062a"],"Visibility in catalog":["\u0642\u0627\u0628\u0644\u06cc\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u062f\u0631 \u0641\u0647\u0631\u0633\u062a "],"Visible on the product page":["\u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0645\u062d\u0635\u0648\u0644"],"Visit Store":["\u0628\u0627\u0632\u062f\u06cc\u062f \u0627\u0632 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"Want to go vacation by closing our store publically":["\u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0627 \u0628\u0633\u062a\u0646 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0645\u0627 \u0628\u0647 \u0635\u0648\u0631\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0647 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a \u0628\u0631\u0648\u06cc\u062f"],"We recommend you to enter those details to get regular \u003Cstrong\u003Eplugin update and support\u003C/strong\u003E.":["\u0645\u0627 \u0628\u0647 \u0634\u0645\u0627 \u062a\u0648\u0635\u06cc\u0647 \u0628\u0631\u0627\u06cc \u0648\u0631\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u0647 \u0637\u0648\u0631 \u0645\u0646\u0638\u0645 \u003Cstrong\u003E\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u067e\u0644\u0627\u06af\u06cc\u0646 \u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc\u003C/strong\u003E."],"Wednesday":["\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647"],"Week %s":["\u0647\u0641\u062a\u0647 %s"],"Week(s)":["\u0647\u0641\u062a\u0647"],"Weight":["\u0648\u0632\u0646"],"Weight (%s)":["\u0648\u0632\u0646 (%s) "],"What option do you prefer for vendor to select product category? ":["\u0686\u0647 \u06af\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0631\u062c\u06cc\u062d \u0645\u06cc\u062f\u0647\u06cc\u062f \u061f"],"Whats New":["\u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u0646\u0633\u062e\u0647 \u062c\u062f\u06cc\u062f \u0627\u0641\u0632\u0648\u0646\u0647 \u062f\u06a9\u0627\u0646 \u0637\u0640\u0644\u0640\u0627 \u062a\u0640\u0640\u0640\u0640\u0645 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f !"],"When using this mode, items from \u003Cstrong\u003Eonly one\u003C/strong\u003E vendor can be purchased in a single order. Works only with \u003Cstrong\u003Echained payments\u003C/strong\u003E. It's a good solution for marketplace as disputes/chargebacks will be handled by the vendor, not by admin.\u003Cbr\u003EWarning : \u003Ci\u003EDo not use \u003Cb\u003EChained Payment \u003C/b\u003E while \u003Ca href=\"%s\" target=\"_blank\"\u003EVendor commission\u003C/a\u003E is set to 100%%\u003C/i\u003E":["\u0647\u0646\u06af\u0627\u0645 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a\u060c \u0627\u0642\u0644\u0627\u0645 \u0627\u0632 \u003Cstrong\u003E\u062a\u0646\u0647\u0627 \u06cc\u06a9\u003C/strong\u003E \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u06cc\u06a9 \u0633\u0641\u0627\u0631\u0634 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f. \u0641\u0642\u0637 \u0628\u0627 \u003Cstrong\u003E\u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0632\u0646\u062c\u06cc\u0631\u0647 \u0627\u06cc \u06a9\u0627\u0631 \u0645\u06cc\u003C/strong\u003E \u06a9\u0646\u062f \u0627\u06cc\u0646 \u06cc\u06a9 \u0631\u0627\u0647 \u062d\u0644 \u062e\u0648\u0628 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u0627\u0631 \u0627\u0633\u062a\u060c \u0632\u06cc\u0631\u0627 \u0627\u062e\u062a\u0644\u0627\u0641\u0627\u062a / \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a\u0647\u0627 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0646\u062c\u0627\u0645 \u0645\u06cc \u0634\u0648\u062f\u060c \u0646\u0647 \u062a\u0648\u0633\u0637 \u0645\u062f\u06cc\u0631. \u003Cbr\u003E \u0647\u0634\u062f\u0627\u0631: \u0628\u0627 \u003Ci\u003E\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u003Cb\u003EChained Payment\u003C/b\u003E \u062f\u0631 \u062d\u0627\u0644\u06cc \u06a9\u0647 \u003Ca href=\"%s\" target=\"_blank\"\u003E\u06a9\u0645\u067e\u0646\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647\u003C/a\u003E 100 \u066a\u066a\u003C/i\u003E "],"Which columns should be exported?":["\u06a9\u062f\u0627\u0645 \u0633\u062a\u0648\u0646 \u0628\u0627\u06cc\u062f \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f\u061f"],"Which product types should be exported?":["\u06a9\u062f\u0627\u0645 \u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627\u06cc\u062f \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f\u061f"],"Width (%s)":["\u0639\u0631\u0636 (%s) "],"Withdraw":["\u0628\u0631\u062f\u0627\u0634\u062a"],"Withdraw Threshold":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0628\u0631\u062f\u0627\u0634\u062a"],"Write your terms, conditions and instructions about refund":["\u0646\u0648\u0634\u062a\u0646 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u062f\u0633\u062a\u0648\u0631\u0627\u0644\u0639\u0645\u0644 \u062f\u0631 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0631\u062f\u0627\u062f ( \u067e\u0633 \u062f\u0627\u062f\u0646) \u0634\u0645\u0627"],"Write your terms, conditions and instructions about shipping":["\u0646\u0648\u0634\u062a\u0646 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u062f\u0633\u062a\u0648\u0631\u0627\u0644\u0639\u0645\u0644 \u062f\u0631 \u0645\u0648\u0631\u062f \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0634\u0645\u0627"],"Y/m/d":["Y/m/d"],"Y/m/d g:i:s A":["Y/m/d g:i:s A"],"Year:":["\u0633\u0627\u0644:"],"Yes":["\u0628\u0644\u06cc"],"Yes, export all custom meta":["\u0628\u0644\u0647\u060c \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0647\u0645\u0647 \u0645\u062a\u0627\u06cc \u062f\u0644\u062e\u0648\u0627\u0647"],"You can \u003Ca href=\"%s\" target=\"_blank\"\u003Elogin here\u003C/a\u003E ":["\u0634\u0645\u0627 \u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u003Ca href=\"%s\" target=\"_blank\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f \u003C/a\u003E "],"You can add %d more product(s).":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f  %d \u0645\u062d\u0635\u0648\u0644 \u062f\u06cc\u06af\u0631 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"You can add \u003Cspan\u003E%s\u003C/span\u003E product(s) for \u003Cspan\u003E unlimited days\u003C/span\u003E days.":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u003Cspan\u003E%s\u003C/span\u003E \u0631\u0627 \u0628\u0631\u0627\u06cc \u003Cspan\u003E \u0631\u0648\u0632 \u0646\u0627\u0645\u062d\u062f\u0648\u062f\u003C/span\u003E \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"You can add \u003Cspan\u003E%s\u003C/span\u003E product(s) for \u003Cspan\u003E%s\u003C/span\u003E days.":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f  \u003Cspan\u003E%s\u003C/span\u003E \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0627\u06cc  \u003Cspan\u003E%s\u003C/span\u003E  \u0631\u0648\u0632 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"You can check this announcement in dashboard by clicking \u003Ca href=\"%s\"\u003Ehere\u003Ca/\u003E":["\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0627 \u06a9\u0644\u06cc\u06a9 \u0631\u0648\u06cc \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003Ca/\u003E \u0627\u06cc\u0646 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0631\u0627 \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f"],"You can check this announcement in your dashboard ":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0631\u0627 \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u062e\u0648\u062f \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f "],"You can enable/disable shipping for your products. Also you can override these shipping costs while creating or editing a product.":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0647 \u0641\u0639\u0627\u0644/ \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062e\u0648\u062f \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f. \u0647\u0645\u0686\u0646\u06cc\u0646 \u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644  \u0631\u0627 \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f \u0648 \u06cc\u0627 \u0628\u0647 \u0627\u06cc\u062c\u0627\u062f \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0622\u0646 \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f."],"You can not add more than one vendors product in the cart":["\u0634\u0645\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u06cc\u0634 \u0627\u0632 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f "],"You can not edit reviews!":["\u0634\u0645\u0627 \u0642\u0627\u062f\u0631 \u0628\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0631\u0631\u0633\u06cc \u0646\u06cc\u0633\u062a\u06cc\u062f!"],"You can only assign non-recurring packs":["\u0634\u0645\u0627 \u0641\u0642\u0637 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0633\u062a\u0647 \u0647\u0627\u06cc \u063a\u06cc\u0631 \u062a\u06a9\u0631\u0627\u0631\u06cc \u0631\u0627 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0647\u06cc\u062f"],"You can override allowed categories for this user. If empty then the predefined category for this pack will be selected":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0633\u062a\u0647 \u0647\u0627\u06cc \u0645\u062c\u0627\u0632 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f. \u0627\u06af\u0631 \u062e\u0627\u0644\u06cc \u0628\u0627\u0634\u062f\u060c \u0637\u0628\u0642\u0647 \u0628\u0646\u062f\u06cc \u0627\u0632 \u067e\u06cc\u0634 \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0628\u0633\u062a\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u062e\u0648\u0627\u0647\u062f \u0634\u062f "],"You can process the request by going \u003Ca href=\"%s\"\u003Ehere\u003C/a\u003E":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0627 \u0628\u0627 \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f"],"You can process the request by going here: ":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0627 \u0628\u0627 \u0631\u0641\u062a\u0646 \u0628\u0647 \u0627\u06cc\u0646\u062c\u0627 \u067e\u0631\u062f\u0627\u0632\u0634 \u06a9\u0646\u06cc\u062f: "],"You can search vendors using Username, Shopname or Email.":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc\u060c \u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u06cc\u0627 \u0627\u06cc\u0645\u06cc\u0644 \u062c\u0633\u062a\u062c\u0648 \u06a9\u0646\u06cc\u062f."],"You can see all registered vendors of your marketplace with their details and status.":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062b\u0628\u062a \u0634\u062f\u0647 \u062f\u0631 \u0628\u0627\u0632\u0627\u0631 \u062e\u0648\u062f \u0631\u0627 \u0628\u0627 \u062c\u0632\u0626\u06cc\u0627\u062a \u0648 \u0648\u0636\u0639\u06cc\u062a \u0622\u0646\u0647\u0627 \u0628\u0628\u06cc\u0646\u06cc\u062f."],"You can see it by going here :":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0627 \u0631\u0641\u062a\u0646 \u0628\u0647 \u0627\u06cc\u0646\u062c\u0627 \u0628\u0628\u06cc\u0646\u06cc\u062f: "],"You can toggle vendor status simply by making them active or inactive from here.":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0648\u0636\u0639\u06cc\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f \u0628\u0647 \u0633\u0627\u062f\u06af\u06cc \u0628\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06cc\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0622\u0646 \u0627\u0632 \u0627\u06cc\u0646\u062c\u0627."],"You can view and edit this booking in the dashboard here: %s":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u0631\u0627 \u062f\u0631 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 \u0645\u0634\u0627\u0647\u062f\u0647 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0646\u06cc\u062f: %s"],"You can view the order details by clicking \u003Ca href=\"%s\"\u003Ehere\u003C/a\u003E":["\u0628\u0627 \u06a9\u0644\u06cc\u06a9 \u0631\u0648\u06cc \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062c\u0632\u0626\u06cc\u0627\u062a \u0633\u0641\u0627\u0631\u0634 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"You can't sell or upload product anymore. To activate your account please contact with the admin.":["\u0634\u0645\u0627 \u0646\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u06cc\u0634\u062a\u0631 \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0628\u0641\u0631\u0648\u0634\u06cc\u062f \u06cc\u0627 \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f. \u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062e\u0648\u062f\u060c \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u0628\u0633\u0627\u06cc\u062a \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"You can't sell or upload product. To activate your account please contact with the admin.":["\u0634\u0645\u0627 \u0646\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0645\u062d\u0635\u0648\u0644 \u0628\u0641\u0631\u0648\u0634\u06cc\u062f \u06cc\u0627 \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f. \u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062e\u0648\u062f\u060c \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u0628\u0633\u0627\u06cc\u062a \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"You do not have permission":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You do not have permission for bulk status change":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a \u0628\u0647 \u0635\u0648\u0631\u062a \u06af\u0631\u0648\u0647\u06cc \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You do not have permission to edit this resource":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u0648\u062c\u0648\u062f\u06cc \u0646\u062f\u0627\u0631\u06cc\u062f."],"You do not have sufficient permissions to access this page.":["\u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0645\u062c\u0648\u0632 \u06a9\u0627\u0641\u06cc \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have a lifetime package.":["\u0634\u0645\u0627 \u06cc\u06a9 \u0628\u0633\u062a\u0647 \u0646\u0627\u0645\u062d\u062f\u0648\u062f \u062f\u0627\u0631\u06cc\u062f."],"You have already a processing refund request for this order.":["\u0634\u0645\u0627 \u0642\u0628\u0644\u0627 \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u062d\u0627\u0644 \u067e\u0631\u062f\u0627\u0632\u0634 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0633\u0641\u0627\u0631\u0634 \u062f\u0627\u0631\u06cc\u062f."],"You have no access to save this shipping options":["\u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u0630\u062e\u06cc\u0631\u0647 \u06af\u0632\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to add coupon":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0627\u0641\u0632\u0648\u062f\u0646 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to add this coupon":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0627\u0641\u0632\u0648\u062f\u0646 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to edit this coupon":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to manage this review":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0627\u06cc\u0646 \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to view review page":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to view this auction page":["\u0634\u0645\u0627 \u0645\u062c\u0648\u0632 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0645\u0632\u0627\u06cc\u062f\u0647 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to view this booking page":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0631\u0632\u0631\u0648 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to view this page":["\u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u06a9\u0627\u0641\u06cc \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to view this report":["\u0634\u0645\u0627 \u0645\u062c\u0648\u0632 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u06af\u0632\u0627\u0631\u0634 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have no permission to view this tool page":["\u0634\u0645\u0627 \u0645\u062c\u0627\u0632 \u0628\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0627\u0628\u0632\u0627\u0631 \u0646\u06cc\u0633\u062a\u06cc\u062f"],"You have no permission to view this verification page":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u062a\u0623\u06cc\u06cc\u062f \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have not permission to delete this coupon":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062d\u0630\u0641 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"You have products from multiple-vendor please choose products from Single vendor only":["\u0634\u0645\u0627 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u0686\u0646\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u0627\u0631\u06cc\u062f. \u0644\u0637\u0641\u0627 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0641\u0642\u0637 \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0647\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f "],"You have taken too long. Please go back and retry.":["\u0634\u0645\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f \u0645\u0646\u062a\u0638\u0631 \u0645\u0627\u0646\u062f\u0647\u200c\u0627\u06cc\u062f. \u0644\u0637\u0641\u0627 \u0628\u0631\u06af\u0631\u062f\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f."],"You just need to activate the \u003Cstrong\u003E%s\u003C/strong\u003E to make it functional.":["\u0634\u0645\u0627 \u0641\u0642\u0637 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u0646\u0635\u0628 \u003Cstrong\u003E%s\u003C/strong\u003E \u062f\u0627\u0631\u06cc\u062f \u062a\u0627 \u0639\u0645\u0644\u06a9\u0631\u062f \u0628\u0647\u062a\u0631\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"You just need to install the %sCore Plugin%s to make it functional.":["\u0634\u0645\u0627 \u0641\u0642\u0637 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u0646\u0635\u0628 %s \u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627\u06cc \u0647\u0633\u062a\u0647 %s \u062f\u0627\u0631\u06cc\u062f \u062a\u0627 \u0639\u0645\u0644\u06a9\u0631\u062f \u0628\u0647\u062a\u0631\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"You must be \u003Ca href=\"%s\"\u003Elogged in\u003C/a\u003E to post a comment.":["\u0634\u0645\u0627 \u0645\u06cc \u0628\u0627\u06cc\u0633\u062a \u003Ca href=\"%s\"\u003E\u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f\u003C/a\u003E \u0628\u0631\u0627\u06cc \u0627\u0631\u0633\u0627\u0644 \u0646\u0638\u0631."],"You will need to manually issue a refund through your payment gateway after using this.":["\u067e\u0633 \u0627\u0632 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0634\u0645\u0627 \u0628\u0627\u06cc\u062f \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627  \u0628\u0647 \u0635\u0648\u0631\u062a \u062f\u0633\u062a\u06cc \u0648 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u062f\u0631\u06af\u0627\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f."],"Your Address Verification request is cancelled":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633 \u0634\u0645\u0627 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Your Address verification request is %s":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633 \u0648 \u0634\u0645\u0627\u0631\u0647 \u0634\u0628\u0627 \u0628\u0627\u0646\u06a9\u06cc \u0634\u0645\u0627%s"],"Your Address verification request is Sent and Pending approval":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633 \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0623\u06cc\u06cc\u062f  \u0627\u0633\u062a"],"Your Dokan Pro is almost ready!":["\u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u062a\u0642\u0631\u06cc\u0628\u0627 \u0622\u0645\u0627\u062f\u0647 \u0627\u0633\u062a!"],"Your ID Verification request is cancelled":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0634\u0646\u0627\u0633\u0647 \u0634\u0645\u0627 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Your ID verification request is %s":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a \u0648 \u0645\u062f\u0627\u0631\u06a9 \u0634\u0645\u0627%s"],"Your ID verification request is Sent and %s approval":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a \u0648 %s \u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647 \u0627\u0633\u062a"],"Your Name":["\u0646\u0627\u0645 \u0634\u0645\u0627:"],"Your Pack":["\u067e\u06a9\u06cc\u062c \u0634\u0645\u0627"],"Your Package validation remaining some days please confirm it":["\u0627\u0639\u062a\u0628\u0627\u0631 \u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u0686\u0646\u062f \u0631\u0648\u0632 \u062f\u06cc\u06af\u0631 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc \u0631\u0633\u062f \u0644\u0637\u0641\u0627 \u0622\u0646 \u0631\u0627 \u062a\u0627\u06cc\u06cc\u062f \u06a9\u0646\u06cc\u062f"],"Your Paypal Credentials are not complete":["\u0645\u062c\u0648\u0632 \u067e\u06cc \u067e\u0627\u0644 \u0634\u0645\u0627 \u06a9\u0627\u0645\u0644 \u0646\u06cc\u0633\u062a "],"Your Review":["\u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc \u0634\u0645\u0627"],"Your Review :":["\u0646\u0642\u062f \u0648 \u0628\u0631\u0633\u06cc \u0634\u0645\u0627 :"],"Your Stripe account isn't active yet. Please connect to stripe first!":["\u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u0634\u0645\u0627 \u0647\u0646\u0648\u0632 \u0641\u0639\u0627\u0644 \u0646\u06cc\u0633\u062a \u0644\u0637\u0641\u0627 \u0627\u0628\u062a\u062f\u0627 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0648\u0635\u0644 \u0634\u0648\u06cc\u062f"],"Your Verified Phone number is : ":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646 \u062a\u0623\u06cc\u06cc\u062f \u0634\u062f\u0647 \u0634\u0645\u0627:"],"Your account is connected with Stripe.":["\u062d\u0633\u0627\u0628 \u0634\u0645\u0627 \u0628\u0627 \u0627\u0633\u062a\u0631\u06cc\u067e \u0645\u062a\u0635\u0644 \u0627\u0633\u062a"],"Your account is not yet connected with Stripe. Connect with Stripe to receive your commissions.":["\u062d\u0633\u0627\u0628 \u0634\u0645\u0627 \u0647\u0646\u0648\u0632 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0645\u062a\u0635\u0644 \u0646\u06cc\u0633\u062a \u0628\u0627 \u0627\u0633\u062a\u0631\u06cc\u067e \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u062e\u0648\u062f \u0645\u062a\u0635\u0644 \u0634\u0648\u06cc\u062f."],"Your are using \u003Cspan\u003E%s\u003C/span\u003E package.":["\u0634\u0645\u0627 \u062f\u0631\u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u067e\u06a9\u06cc\u062c \u003Cspan\u003E%s\u003C/span\u003E \u0647\u0633\u062a\u06cc\u062f.."],"Your changes has been updated!":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Your package will expire on \u003Cspan\u003E%s\u003C/span\u003E":["\u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u062f\u0631 \u003Cspan\u003E%s\u003C/span\u003E \u0628\u0647 \u0627\u062a\u0645\u0627\u0645 \u062e\u0648\u0627\u0647\u062f \u0631\u0633\u06cc\u062f"],"Your products are now being imported...":["\u062e\u062f\u0645\u0627\u062a \u0634\u0645\u0627 \u0634\u0631\u0648\u0639 \u0628\u0647 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u06a9\u0631\u062f\u0646\u062f... "],"Your refund request is ":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0645\u0627 "],"Your subscription has been cancelled!":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0634\u0645\u0627 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"Your vendor account is activated":["\u062d\u0633\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0634\u0645\u0627 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Your vendor account is deactivated":["\u062d\u0633\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0634\u0645\u0627 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"Your verification code is: %CODE%":["\u06a9\u062f \u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647 \u0634\u0645\u0627 : %CODE%"],"Zero size file downloaded":["\u0641\u0627\u06cc\u0644 \u0635\u0641\u0631 \u06a9\u06cc\u0644\u0648\u0628\u0627\u06cc\u062a\u06cc \u062f\u0627\u0646\u0644\u0648\u062f \u0634\u062f"],"Zone Location":["\u0645\u06a9\u0627\u0646 \u0645\u0646\u0637\u0642\u0647"],"Zone Name":["\u0646\u0627\u0645 \u0645\u0646\u0637\u0642\u0647"],"Zone not found":["\u0645\u0646\u0637\u0642\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"Zone settings save successfully":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u0646\u0637\u0642\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],"[%d] A New Support Ticket":["[%d] \u062a\u06cc\u06a9\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062c\u062f\u06cc\u062f"],"[%s][%d] A New Reply on Your Ticket":["[%s][%d] \u067e\u0627\u0633\u062e \u062c\u062f\u06cc\u062f \u062f\u0631 \u062a\u06cc\u06a9\u062a \u0634\u0645\u0627"],"[{site_name}] A New refund request is made by {seller_name}":["[{site_name}] \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 {seller_name} \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"[{site_name}] A new auction product is added by ({seller_name}) - {product_title}":["[{site_name}] \u06cc\u06a9 \u062d\u0631\u0627\u062c \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 ({seller_name}) - {product_title} \u0627\u0636\u0627\u0641\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"[{site_name}] Your account is activated":["[{site_name}] \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0634\u0645\u0627 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"[{site_name}] Your account is deactivated":["[{site_name}] \u062d\u0633\u0627\u0628 \u0634\u0645\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"[{site_name}] Your refund request was {status}":["[{site_name}] \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0645\u0627 {status} \u0628\u0648\u062f"],"[{site_title}] A product update is pending from ({seller_name}) - {product_title}":["[{site_title}] \u0628\u0647 \u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0645\u062d\u0635\u0648\u0644 \u0627\u0632 ({seller_name}) - {product_title} \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0627\u0633\u062a"],"available by default":["\u0628\u0635\u0648\u0631\u062a \u067e\u06cc\u0634\u0641\u0631\u0636 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0647\u0633\u062a\u0646\u062f"],"before start date":["\u0642\u0628\u0644 \u0627\u0632 \u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639"],"by":["\u0628\u0631\u0627\u0633\u0627\u0633"],"cancelled":["\u0644\u063a\u0648 \u0634\u062f"],"close topic":["\u0628\u0633\u062a\u0646 \u062a\u06cc\u06a9\u062a"],"closed":["\u0628\u0633\u062a\u0647 \u0634\u062f\u0647"],"date format\u0004l":["l"],"day(s)":["%s \u0631\u0648\u0632"],"days":["\u0631\u0648\u0632"],"delete":["\u062d\u0630\u0641 \u06a9\u0631\u062f\u0646"],"dokan\u0004Vacation":["\u062a\u0639\u0637\u06cc\u0644\u0627\u062a"],"edit":["\u0648\u06cc\u0631\u0627\u06cc\u0634"],"from":["\u0627\u0632"],"has been expired %s ago":["\u062a\u0645\u0627\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a %s ago"],"height":["\u0627\u0631\u062a\u0641\u0627\u0639"],"height (%s)":["\u0627\u0631\u062a\u0641\u0627\u0639 (%s)"],"here":["\u062f\u0631 \u0627\u06cc\u0646\u062c\u0627"],"http://":["http://"],"https://woocommerce.ir/":["https://woocommerce.ir/"],"is successfully activated":["\u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"is successfully deactivated":["\u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"length":["\u0637\u0648\u0644"],"length (%s)":["\u0637\u0648\u0644 (%s)"],"minutes":["\u062f\u0642\u06cc\u0642\u0647"],"mo":["\u0645\u0627\u0647"],"month(s)":["%s \u0645\u0627\u0647"],"new-product":["\u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f"],"not-available by default":["\u0628\u0635\u0648\u0631\u062a \u067e\u06cc\u0634\u0641\u0631\u0636 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0646\u06cc\u0633\u062a\u0646\u062f"],"open":["\u0628\u0627\u0632"],"orders placed in this period":["\u0633\u0641\u0627\u0631\u0634\u062a\u0627\u062a \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"out of 5":["\u062e\u0627\u0631\u062c \u0627\u0632 5"],"placeholder\u0004From&hellip;":["\u0627\u0632&hellip;"],"placeholder\u0004From&hellip; YYYY-MM-DD":["\u0627\u0632&hellip; YYYY-MM-DD"],"placeholder\u0004To&hellip;":["\u0628\u0647&hellip;"],"placeholder\u0004To&hellip; YYYY-MM-DD":["\u0628\u0647&hellip; YYYY-MM-DD"],"re-open topic":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u0645\u062c\u062f\u062f \u062a\u06cc\u06a9\u062a"],"reactivated":["\u062f\u0648\u0628\u0627\u0631\u0647 \u0641\u0639\u0627\u0644 \u0634\u062f"],"sales":["\u0641\u0631\u0648\u0634"],"shipping class cost":["\u0647\u0632\u06cc\u0646\u0647 \u0646\u0648\u0639 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"suspended":["\u0645\u0633\u062f\u0648\u062f \u0634\u062f\u0647"],"to":["\u062a\u0627"],"variation added":["\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0636\u0627\u0641\u0647 \u0634\u062f"],"variations added":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u0636\u0627\u0641\u0647 \u0634\u062f"],"wait...":["\u0644\u0637\u0641\u0627 \u0635\u0628\u0631 \u06a9\u0646\u06cc\u062f "],"week":["\u0647\u0641\u062a\u0647"],"week(s)":["%s \u0647\u0641\u062a\u0647"],"weight (%s)":["\u0648\u0632\u0646 (%s)"],"width":["\u0639\u0631\u0636:"],"width (%s)":["\u0639\u0631\u0636 (%s)"],"will be displayed in SMS. \u003Cstrong\u003E%CODE%\u003C/strong\u003E will be replaced by verification code":["\u062f\u0631 \u0627\u0633 \u0627\u0645 \u0627\u0633 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f. \u003Cstrong\u003E%CODE% \u003C/strong\u003E \u0628\u0627 \u06a9\u062f \u062a\u0623\u06cc\u06cc\u062f \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"will expire in %s":["\u0645\u0646\u0642\u0636\u06cc \u0645\u06cc\u0634\u0648\u062f \u062f\u0631 %s"],"year(s)":["%s \u0633\u0627\u0644"],"yr":["\u0633\u0627\u0644"],"{product_title} - is Cancelled":["{product_title} - \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a"],"{product_title} updated by Vendor {seller_name}":["{product_title} \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 {seller_name} \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f"],"\u0648\u0648\u06a9\u0627\u0645\u0631\u0633 \u0641\u0627\u0631\u0633\u06cc":["\u0648\u0648\u06a9\u0627\u0645\u0631\u0633 \u0641\u0627\u0631\u0633\u06cc"],"\u2190 Back to Zone List":["\u2190 \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0644\u06cc\u0633\u062a \u0645\u0646\u0637\u0642\u0647"],"2":[" (%d)"],"3":[") \u0628\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0627\u0631\u062f"],"4":[" \u0648\u06cc\u0631\u0627\u06cc\u0634"],"5":[" \u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc CSV"],"6":["\u0647\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062a\u0646\u0647\u0627 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0627\u0631 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u06a9\u0647 \u0642\u06cc\u0645\u062a \u0645\u062d\u0635\u0648\u0644 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0628\u062f\u0648\u0646 \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627\u0634\u062f. \u0647\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0632\u0645\u0627\u0646\u06cc \u06a9\u0627\u0631 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u06a9\u0647 \u062f\u0631 \u0622\u0646 \u0645\u062d\u0635\u0648\u0644\u06cc \u06a9\u0647 \u0642\u06cc\u0645\u062a \u0622\u0646 \u0627\u0632 \u0642\u0628\u0644 \u062a\u062e\u0641\u06cc\u0641 \u062e\u0648\u0631\u062f\u0647 \u060c \u0646\u0628\u0627\u0634\u062f."],"7":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u06cc\u0634\u062a\u0631"],"8":["\u0627\u0631\u0633\u0627\u0644 \u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc"],"9":[" \u062f\u0631\u0622\u0645\u062f \u0634\u0645\u0627: "],"10":["\u0648 \u0645\u062a\u063a\u06cc\u0631"],"11":["\u0627\u0632 \u0637\u0631\u064a\u0642"],"12":["\"%s\" \u0628\u0631\u0627\u06cc \u0634\u0645\u0627 \u06cc\u06a9 \u067e\u06cc\u0627\u0645 \u0627\u0632 \u0641\u0631\u0648\u0634\u06af\u0627\u0647  \"%s\" \u0627\u0631\u0633\u0627\u0644 \u06a9\u0631\u062f"],"13":["\"%s\" \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0642\u0648\u0627\u0646\u06cc\u0646 \u062c\u062f\u0627\u06af\u0627\u0646\u0647"],"14":["\"{product_title}\" \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a "],"15":["\u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f"],"16":["#%s \u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u063a\u06cc\u0631 \u0628\u0627\u06cc\u062f \u06cc\u06a9\u062a\u0627 \u0628\u0627\u0634\u062f."],"17":["% \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f"],"18":["%d \u0628\u0631\u0631\u0633\u06cc \u0633\u0641\u0627\u0631\u0634\u062a\u0627\u062a \u0627\u0632 %d"],"19":["%d \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u06a9\u0627\u0645\u0644\u0627 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0634\u062f %d"],"20":["%s"],"21":["%s &#8220;%s&#8221; \u062f\u0631\u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f."],"22":["%s - \u0633\u0641\u0627\u0631\u0634  %s"],"23":["%s / %s"],"24":["%s / &infin;"],"25":["%s \u062a\u062e\u0641\u06cc\u0641"],"26":["%s \u067e\u06cc\u0634"],"27":["%s \u0645\u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634 \u0631\u0648\u0632\u0627\u0646\u0647"],"28":["%s \u0634\u0627\u0631\u0698 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"29":["\u202b%s \u062f\u06cc\u062f\u06af\u0627\u0647 \u0645\u0634\u062a\u0631\u06cc"],"30":["%s \u0627\u0642\u0644\u0627\u0645 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u0634\u062f\u0647"],"31":["%s \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647"],"32":["%s \u0645\u062d\u0635\u0648\u0644 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0634\u062f"],"33":["%s \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0634\u062f"],"34":["%s \u0645\u062d\u0635\u0648\u0644 \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0634\u062f"],"35":["%s \u0641\u0631\u0648\u0634 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"36":["\u0645\u0642\u062f\u0627\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 %s"],"37":["%s: %d"],"38":["%s: %s"],"39":["&\u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a;"],"40":["&laquo; \u0642\u0628\u0644\u06cc"],"41":["&larr; \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0644\u06cc\u0633\u062a \u0645\u0646\u0637\u0642\u0647"],"42":["&larr; \u0642\u0628\u0644\u06cc"],"43":["&nbsp; \u0648\u06cc\u0631\u0627\u06cc\u0634"],"44":["&\u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a;"],"45":["( \u062f\u0631\u06cc\u0627\u0641\u062a \u0634\u0646\u0627\u0633\u0647 \u0627\u067e \u0634\u0645\u0627 )"],"46":["( \u062f\u0631\u06cc\u0627\u0641\u062a \u0633\u06cc\u06a9\u0631\u062a \u0627\u067e \u0634\u0645\u0627 )"],"47":["( \u0633\u0641\u0627\u0631\u0634 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 )"],"48":["(\u0627\u0631\u0633\u0627\u0644 \u067e\u0627\u0633\u062e \u0628\u0639\u062b \u0628\u0627\u0632 \u0634\u062f\u0646 \u0645\u062c\u062f\u062f \u062a\u06cc\u06a9\u062a \u062e\u0648\u0627\u0647\u062f \u0634\u062f)"],"49":["(\u0628\u062f\u0648\u0646 \u0646\u0627\u0645)"],"50":["(\u0628\u062f\u0648\u0646 \u0646\u0627\u0645)"],"51":[")"],"52":["+ \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"53":["+ \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0627\u0648\u06cc\u0631 \u0645\u062d\u0635\u0648\u0644"],"54":["- \u0627\u0646\u062a\u062e\u0627\u0628 \u06af\u0631\u0648\u0647 -"],"55":["- \u0627\u0646\u062a\u062e\u0627\u0628 -"],"56":["-- \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a --"],"57":["-- \u0627\u0646\u062a\u062e\u0627\u0628 --"],"58":["-- \u06cc\u06a9 \u067e\u06a9 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f --"],"59":["--\u06a9\u0634\u0648\u0631 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f--"],"60":["- \u06cc\u06a9 \u0627\u0633\u062a\u0627\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f-"],"61":["-\u0647\u06cc\u0686-"],"62":["0"],"63":["0.00"],"64":["3"],"65":["\u003Cb\u003E\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u062d\u0631\u0627\u062c\u003C/b\u003E \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u06a9\u0647 \u0627\u0641\u0632\u0648\u0646\u0647  %sWooCommerce Simple Auctions %s \u0646\u0635\u0628 \u0648 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062f !"],"66":["\u003Cb\u003E\u0631\u0632\u0631\u0648 \u0648\u0648\u06a9\u0627\u0645\u0631\u0633 \u062f\u06a9\u0627\u0646 \u003C/b\u003E\u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u06a9\u0647 \u0627\u0641\u0632\u0648\u0646\u0647 %sWooCommerce Bookings %s \u0646\u0635\u0628 \u0648 \u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062f!"],"67":["\u003Cdiv class=\"pack_data_option\"\u003E\u062d\u062f \u0627\u06a9\u062b\u0631 \u062a\u0627 \u003Cstrong\u003E%d\u003C/strong\u003E \u0645\u062d\u0635\u0648\u0644\u003Cbr /\u003E"],"68":["\u003Cem\u003E\u06cc\u0627\u003C/em\u003E \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u0645\u0633\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u062f\u0631 \u0633\u0631\u0648\u0631 \u062e\u0648\u062f: "],"69":["\u003Ci\u003E \u0627\u06cc\u0646 \u06a9\u0627\u0631\u0628\u0631 \u062f\u0627\u0631\u0627\u06cc \u067e\u06a9 \u067e\u06a9 \u0627\u0633\u062a. \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u06cc\u06a9 \u067e\u06a9 \u062c\u062f\u06cc\u062f \u0631\u0627 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0647\u06cc\u062f\u061f \u0627\u06af\u0631 \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f\u060c \u067e\u06a9 \u0645\u0648\u062c\u0648\u062f\u060c \u0628\u0627 \u06cc\u06a9 \u0645\u0648\u0631\u062f \u062c\u062f\u06cc\u062f \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062e\u0648\u0627\u0647\u062f \u0634\u062f\u003Ci\u003E"],"70":["\u003Cp\u003E\u003Cb\u003E\u0628\u0631\u0627\u06cc \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u003Ca href='%s'\u003E\u0627\u06cc\u0646\u062c\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f\u003C/a\u003E\u003C/b\u003E\u003C/p\u003E"],"71":["\u0631\u0632\u0631\u0648 \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a \u062a\u0648\u0633\u0637 %s \u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0627\u06cc\u06cc\u062f. \u062c\u0632\u0626\u06cc\u0627\u062a \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648\u060c \u0639\u0628\u0627\u0631\u062a\u0646\u062f \u0627\u0632:"],"72":["\u06cc\u06a9 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u062c\u062f\u06cc\u062f \u062f\u0631 \u0633\u0627\u06cc\u062a {site_name} \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0627\u0633\u062a"],"73":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u062c\u062f\u06cc\u062f \u0628\u0647 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f"],"74":["\u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 %s.\u0627\u0646\u062c\u0627\u0645 \u0634\u062f\u0647 \u0634\u0631\u062d \u06a9\u0627\u0645\u0644 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0631\u0632\u0631\u0648:"],"75":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u0628\u0647 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a."],"76":["\u06cc\u06a9 \u067e\u0627\u0633\u062e \u062c\u062f\u06cc\u062f \u062f\u0631 \u062a\u06cc\u06a9\u062a \u0627\u0646\u062c\u0627\u0645 \u0634\u062f "],"77":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0634\u0645\u0627 \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a."],"78":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0627\u06cc\u0646 \u0634\u0646\u0627\u0633\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. "],"79":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0627\u06cc\u0646 \u0645\u0648\u062c\u0648\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. "],"80":["\u06cc\u06a9 \u0646\u0627\u062d\u06cc\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06cc\u06a9 \u0645\u0646\u0637\u0642\u0647 \u062c\u063a\u0631\u0627\u0641\u06cc\u0627\u06cc\u06cc \u0627\u0633\u062a \u06a9\u0647 \u0645\u062c\u0645\u0648\u0639\u0647\u200c\u0627\u06cc \u0627\u0632 \u0631\u0648\u0634\u200c\u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0631 \u0622\u0646 \u0627\u0631\u0627\u0626\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f. \u0645\u0627 \u06cc\u06a9 \u0645\u0634\u062a\u0631\u06cc \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u0645\u0646\u0637\u0642\u0647 \u0648\u0627\u062d\u062f \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0622\u062f\u0631\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644\u0634 \u0645\u0637\u0627\u0628\u0642\u062a \u062e\u0648\u0627\u0647\u06cc\u0645 \u062f\u0627\u062f \u0648 \u0631\u0648\u0634\u200c\u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u062f\u0631 \u0622\u0646\u200c \u0645\u0646\u0637\u0642\u0647 \u0628\u0647 \u0622\u0646\u200c\u0647\u0627 \u0627\u0631\u0627\u0626\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u0645."],"81":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0627\u0632 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0634\u0645\u0627 \u062d\u0630\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a. \u0628\u0627 \u062a\u0648\u062c\u0647 \u0628\u0647 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631\u0648\u0627\u0632\u0647\u060c \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0648 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0647\u0627 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u06cc\u06a9 \u0632\u0645\u0627\u0646 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f."],"82":["\u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a "],"83":["\u0627\u0639\u062a\u0628\u0627\u0631 API"],"84":["\u06a9\u0644\u06cc\u062f API:"],"85":["\u0631\u0645\u0632 \u0639\u0628\u0648\u0631 API"],"86":["\u06a9\u0644\u06cc\u062f API Secret"],"87":["\u0627\u0645\u0636\u0627 API"],"88":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc API"],"89":["\u0632\u06cc\u0631 \u0632\u0628\u0627\u0646\u0647 \u0645\u062d\u0635\u0648\u0644"],"90":["\u0628\u0627\u0644\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u0628 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u06a9\u06cc"],"91":["\u067e\u0630\u06cc\u0631\u0641\u062a\u0647 \u0634\u062f\u0647"],"92":["\u0627\u0645\u06a9\u0627\u0646 \u062f\u0633\u062a\u0631\u0633\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"93":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc"],"94":["SID \u062d\u0633\u0627\u0628"],"95":["\u0627\u0646\u062c\u0627\u0645"],"96":["\u0627\u0639\u0645\u0627\u0644"],"97":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc"],"98":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u0627\u06cc\u0646 \u067e\u0644\u0627\u06af\u06cc\u0646"],"99":["\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"100":["\u062f\u0631 \u062d\u0627\u0644 \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc"],"101":["\u0641\u0639\u0627\u0644 "],"102":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062f\u0631\u0648\u0627\u0632\u0647"],"103":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0641\u0639\u0627\u0644"],"104":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 %s \u0644\u06cc\u0646\u06a9 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0631\u0627\u06cc \u0628\u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s%% \u062f\u0631\u0635\u062f \u067e\u06cc\u0634\u0631\u0641\u062a"],"105":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"106":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u0646\u0631 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"107":["\u0631\u0632\u0631\u0648 \u0648\u0627\u062d\u062f \u0627\u0642\u0627\u0645\u062a\u06cc "],"108":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"109":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"110":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644"],"111":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0645\u06a9\u0627\u0646"],"112":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0646\u0642\u0634\u0647 \u0645\u062d\u0644 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"113":["\u0627\u0641\u0632\u0648\u062f\u0646(\u0634\u063a\u0644)"],"114":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u062c\u062f\u06cc\u062f"],"115":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u0645\u0632\u0627\u06cc\u062f\u0647 \u0627\u06cc "],"116":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648 "],"117":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0631\u0645\u0646\u062f \u062c\u062f\u06cc\u062f"],"118":["\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0633\u062a \u062c\u062f\u06cc\u062f"],"119":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0646\u0638\u0631 \u062c\u062f\u06cc\u062f "],"120":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0646\u0648\u0639 \u0627\u0641\u0631\u0627\u062f"],"121":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0644\u0641\u0646 \u0628\u0631\u0627\u06cc \u0628\u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s%% \u062f\u0631\u0635\u062f\u067e\u06cc\u0634\u0631\u0641\u062a"],"122":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s%% \u062f\u0631\u0635\u062f \u067e\u06cc\u0634\u0631\u0641\u062a."],"123":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0645\u062d\u062f\u0648\u062f\u0647"],"124":["\u067e\u0627\u0633\u062e \u062f\u0627\u062f\u0646"],"125":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"126":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"127":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0628\u0631\u0627\u06cc \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"128":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"129":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0631\u0648\u0634 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 %s %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"130":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0622\u062f\u0631\u0633 %s \u0631\u0627 \u0628\u0647 \u062f\u0633\u062a \u0622\u0648\u0631\u062f\u0646 %% \u067e\u06cc\u0634\u0631\u0641\u062a"],"131":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc"],"132":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c"],"133":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c"],"134":["\u0627\u0641\u0632\u0648\u062f\u0646 \u0631\u0632\u0631\u0648 \u0645\u062d\u0635\u0648\u0644"],"135":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06af\u0627\u0644\u0631\u06cc \u0639\u06a9\u0633"],"136":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06cc\u06a9 \u0645\u0648\u0631\u062f \u062c\u062f\u06cc\u062f"],"137":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062c\u062f\u06cc\u062f"],"138":["\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u06cc\u0644\u0628\u0648\u0631\u062f \u062c\u062f\u06cc\u062f "],"139":["\u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0631\u0645\u0646\u062f \u062c\u062f\u06cc\u062f"],"140":["\u06a9\u0634\u0648\u0631\u0647\u0627\u06cc\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0622\u0646\u0647\u0627 \u0639\u0631\u0636\u0647 \u0645\u06cc \u06a9\u0646\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f \u0634\u0645\u0627 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0648\u0644\u062a \u0647\u0627 \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f. \u0627\u06af\u0631 \u0642\u06cc\u0645\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0647 \u062c\u0632 \u0628\u0631\u062e\u06cc \u06a9\u0634\u0648\u0631\u0647\u0627 / \u0627\u06cc\u0627\u0644\u062a \u0645\u0634\u0627\u0628\u0647 \u0628\u0627\u0634\u062f\u060c \u06cc\u06a9 \u06af\u0632\u06cc\u0646\u0647 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f \u003Cstrong\u003E\u0647\u0631 \u062c\u0627\u06cc \u062f\u06cc\u06af\u0631\u003C/strong\u003E, \u0634\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0632 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u062f."],"141":["\u0627\u0636\u0627\u0641\u0647 \u0628\u0647 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f"],"142":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0645\u0646\u0637\u0642\u0647 \u0645\u0646\u0627\u0633\u0628 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f"],"143":["\u0627\u0641\u0632\u0648\u062f\u0646&nbsp;\u0645\u062a\u0627"],"144":["\u0627\u0641\u0632\u0648\u062f\u0646/\u0644\u06cc\u0646\u06a9 \u0645\u0648\u062c\u0648\u062f\u06cc"],"145":["\u0645\u0646\u0627\u0628\u0639 \u0627\u0636\u0627\u0641\u06cc "],"146":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"],"147":["\u0622\u062f\u0631\u0633 "],"148":["\u0622\u062f\u0631\u0633"],"149":["\u062a\u0627\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633"],"150":["\u0646\u0634\u0627\u0646\u06cc:"],"151":["\u0628\u0627\u0641\u0631 \u0645\u062c\u0627\u0648\u0631\u061f"],"152":["\u0645\u062f\u06cc\u0631\u06cc\u062a"],"153":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631"],"154":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0627\u0632 \u0627\u06cc\u0646 \u062f\u0633\u062a\u0647"],"155":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631"],"156":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631"],"157":["\u067e\u0633 \u0627\u0632 \u0632\u0628\u0627\u0646\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u06a9\u06cc "],"158":["\u0628\u0639\u062f \u0627\u0632 \u062a\u062e\u0641\u06cc\u0641 \u0647\u0627\u06cc \u0642\u0628\u0644 \u0627\u0632 \u0645\u0627\u0644\u06cc\u0627\u062a."],"159":["\u0647\u0645\u0647"],"160":["\u0647\u0645\u0647 (%d)"],"161":["\u0647\u0645\u0647 \u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"162":["\u0647\u0645\u0647 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"163":["\u062a\u0645\u0627\u0645 \u0631\u0648\u0632"],"164":["\u0647\u0645\u0647 \u06af\u0632\u0627\u0631\u0634\u0627\u062a"],"165":["\u062a\u0645\u0627\u0645 \u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc"],"166":["\u0647\u0645\u0647\u200c\u06cc \u062a\u06cc\u06a9\u062a\u200c\u0647\u0627"],"167":["\u0647\u0645\u0647 \u067e\u0633\u062a \u0647\u0627"],"168":["\u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"169":["\u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"170":["\u062a\u0645\u0627\u0645 \u0645\u06a9\u0627\u0646 \u062f\u0631 \u062d\u0627\u0644 \u0631\u0632\u0631\u0648"],"171":["\u062a\u0645\u0627\u0645 \u062a\u0627\u0631\u06cc\u062e \u0647\u0627 ... \u0647\u0633\u062a\u0646\u062f"],"172":["\u0647\u0645\u0647 \u0627\u0646\u062c\u0627\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"173":["\u0627\u0646\u062c\u0627\u0645 \u0634\u062f"],"174":["\u062a\u0645\u0627\u0645 \u0642\u0648\u0627\u0646\u06cc\u0646 \u0645\u0637\u0627\u0628\u0642 \u0628\u0627 \u0631\u0632\u0631\u0648 \u0627\u0639\u0645\u0627\u0644 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f."],"175":["\u062a\u0645\u0627\u0645 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0628\u0631\u0631\u0633\u06cc \u0634\u062f \u0648 \u0645\u0627 \u0633\u0641\u0627\u0631\u0634 \u062a\u06a9\u0631\u0627\u0631\u06cc \u067e\u06cc\u062f\u0627 \u0646\u06a9\u0631\u062f\u0647 \u0627\u06cc\u0645. %s"],"176":["\u062a\u0645\u0627\u0645 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0628\u0631\u0631\u0633\u06cc \u0634\u062f \u0648 \u0645\u0627 \u0686\u0646\u062f \u0633\u0641\u0627\u0631\u0634 \u062a\u06a9\u0631\u0627\u0631\u06cc \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u0645."],"177":["\u0647\u0645\u0647 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0634\u062f. %s"],"178":["\u062a\u0645\u0627\u0645 \u0645\u0627\u0698\u0648\u0644\u200c\u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0641\u0639\u0627\u0644 \u0634\u062f\u0646\u062f"],"179":["\u062a\u0645\u0627\u0645 \u0645\u0627\u0698\u0648\u0644\u200c\u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0646\u062f"],"180":["\u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u06a9\u0647 \u0628\u0647 \u0637\u0648\u0631 \u0641\u0639\u0627\u0644 \u0641\u0631\u0648\u0634 \u0645\u06cc \u06a9\u0646\u0646\u062f \u062f\u0631 \u0627\u06cc\u0646 \u0641\u0647\u0631\u0633\u062a \u0641\u06cc\u0644\u062a\u0631 \u0645\u06cc \u0634\u0648\u0646\u062f."],"181":["\u0627\u062c\u0627\u0632\u0647 \u062f\u0627\u062f\u0646"],"182":["\u0627\u062c\u0627\u0632\u0647 \u0628\u0631\u06af\u0634\u062a \u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"183":["\u0627\u062c\u0627\u0632\u0647 \u0628\u0631\u06af\u0634\u062a \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0645\u06cc \u062f\u0647\u06cc\u062f \u061f"],"184":["\u0627\u062c\u0627\u0632\u0647 \u0628\u0631\u06af\u0634\u062a \u0633\u0641\u0627\u0631\u0634\u061f"],"185":["\u0627\u062c\u0627\u0632\u0647 \u062f\u0647\u06cc\u062f \u0627\u0645\u0627 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc \u0627\u0637\u0644\u0627\u0639 \u0628\u062f\u0647\u062f"],"186":["\u0645\u062c\u0627\u0632 \u0628\u0648\u062f\u0646 \u062f\u06cc\u062f\u06af\u0627\u0647\u061f "],"187":["\u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u062a\u0646\u0647\u0627 \u06cc\u06a9 \u0645\u0642\u062f\u0627\u0631 \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u062f\u0631 \u06cc\u06a9 \u062c\u0647\u062a \u0648\u0627\u062d\u062f \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a"],"188":["\u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0645\u0647\u0645\u0627\u0646 \u0627\u062c\u0627\u0632\u0647 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u062f\u0627\u0631\u0646\u062f"],"189":["\u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f\u060c \u0627\u0645\u0627 \u0628\u0627 \u0627\u0637\u0644\u0627\u0639 \u0645\u0634\u062a\u0631\u06cc"],"190":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627\u06cc \u0645\u062c\u0627\u0632 "],"191":["\u0645\u06cc\u0632\u0627\u0646"],"192":["\u0645\u06cc\u0632\u0627\u0646 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062a\u0627 \u06a9\u0646\u0648\u0646"],"193":["\u0627\u0639\u0644\u0627\u0646"],"194":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"195":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633 \u0634\u062f"],"196":["\u0648\u0636\u0639\u06cc\u062a \u0627\u0639\u0644\u0627\u0646"],"197":["\u0639\u0646\u0648\u0627\u0646 \u0627\u0637\u0644\u0627\u0639\u200c\u0631\u0633\u0627\u0646\u06cc \u0628\u0627\u06cc\u062f \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0628\u0627\u0634\u062f"],"198":["\u0627\u0639\u0644\u0627\u0646\u0627\u062a"],"199":["\u0636\u062f \u0647\u0631\u0632\u0646\u0627\u0645\u0647"],"200":["\u0647\u0631"],"201":["\u0647\u0631 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"202":["\u0622\u06cc\u062f\u06cc  \u0628\u0631\u0646\u0627\u0645\u0647"],"203":["\u0622\u06cc \u062f\u06cc \u0627\u067e\u0644\u06cc\u06a9\u06cc\u0634\u0646"],"204":["\u06a9\u0644\u06cc\u062f \u0631\u0627\u0632 \u0628\u0631\u0646\u0627\u0645\u0647 (App Secret)"],"205":["\u0627\u0639\u0645\u0627\u0644\u200c"],"206":["\u062a\u0627\u06cc\u06cc\u062f"],"207":["\u062a\u0627\u06cc\u06cc\u062f \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"208":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f"],"209":["\u062a\u0623\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"210":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u062f"],"211":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647 ("],"212":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"213":["\u0622\u0648\u0631\u06cc\u0644"],"214":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u062a\u0642\u0644\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f\u061f"],"215":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f"],"216":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u062a\u0645\u0627\u0645 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0631\u0627 \u0644\u06cc\u0646\u06a9 \u06a9\u0646\u06cc\u062f\u061f \u0627\u06cc\u0646 \u06cc\u06a9 \u062a\u063a\u06cc\u06cc\u0631 \u062c\u062f\u06cc\u062f \u0628\u0631\u0627\u06cc \u0647\u0631 \u062a\u0631\u06a9\u06cc\u0628 \u0645\u0645\u06a9\u0646 \u0627\u0632 \u062a\u0646\u0648\u0639 \u0635\u0641\u0627\u062a \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0645\u06cc \u06a9\u0646\u062f (\u062d\u062f\u0627\u06a9\u062b\u0631 50 \u062f\u0631 \u0647\u0631 \u0627\u062c\u0631\u0627)."],"217":["\u0622\u06cc\u0627 \u0627\u0632 \u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0627\u06cc\u062a\u0645 \u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f\u061f \u062f\u0631 \u0635\u0648\u0631\u062a\u06cc \u06a9\u0647 \u0642\u0628\u0644\u0627 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u0627\u0632  \u0638\u0631\u0641\u06cc\u062a \u06a9\u0645 \u0634\u062f\u0647 \u0628\u0627\u0634\u062f\u060c \u06cc\u0627 \u0627\u06cc\u0646\u06a9\u0647 \u0631\u0632\u0631\u0648 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u062b\u0628\u062a \u0634\u062f\u0647 \u0628\u0627\u0634\u062f\u060c \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0635\u062d\u06cc\u062d  \u0638\u0631\u0641\u06cc\u062a \u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0627\u0634\u062a."],"218":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0646\u0648\u0639 \u0634\u062e\u0635 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f"],"219":["\u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0645\u0646\u0628\u0639 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f"],"220":["\u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f  \u0627\u06cc\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f"],"221":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f \u0627\u06cc\u0646 \u0639\u0645\u0644\u06cc\u0627\u062a \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u06af\u0634\u062a \u0646\u06cc\u0633\u062a."],"222":["\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627 \u067e\u0631\u062f\u0627\u0632\u0634 \u06a9\u0646\u06cc\u062f\u061f \u0627\u06cc\u0646 \u0639\u0645\u0644\u06cc\u0627\u062a \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u06af\u0634\u062a \u0646\u06cc\u0633\u062a."],"223":["\u0628\u0633\u062a\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0647\u06cc\u062f"],"224":["\u0648\u06cc\u0698\u06af\u06cc"],"225":["\u0648\u06cc\u0698\u06af\u06cc %d \u067e\u06cc\u0634 \u0641\u0631\u0636"],"226":["\u0648\u06cc\u0698\u06af\u06cc %d \u0633\u0631\u0627\u0633\u0631\u06cc"],"227":["\u0646\u0627\u0645 %d \u0648\u06cc\u0698\u06af\u06cc"],"228":["\u0648\u06cc\u0698\u06af\u06cc %d \u0645\u0642\u062f\u0627\u0631"],"229":["\u0648\u06cc\u0698\u06af\u06cc %d \u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647"],"230":["\u0646\u0627\u0645 \u0648\u06cc\u0698\u06af\u06cc"],"231":["\u0646\u0627\u0645 \u0648\u06cc\u0698\u06af\u06cc "],"232":["\u0645\u0642\u062f\u0627\u0631 \u0645\u0634\u062e\u0635\u0647 (\u0647\u0627) "],"233":["\u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u0628\u0648\u062f\u0646 \u0645\u0634\u062e\u0635\u0647 "],"234":["\u0648\u06cc\u0698\u06af\u06cc \u0647\u0627"],"235":["\u0645\u0632\u0627\u06cc\u062f\u0647"],"236":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u062d\u0631\u0627\u062c"],"237":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u062d\u0631\u0627\u062c"],"238":["\u0646\u0648\u0639 \u062d\u0631\u0627\u062c"],"239":["\u0627\u0648\u062a"],"240":["\u0631\u0645\u0632 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc"],"241":["\u0637\u0631\u0627\u062d"],"242":["\u0627\u062a\u0648\u0645\u0627\u062a\u06cc\u06a9"],"243":["\u0628\u0647 \u0637\u0648\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"244":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644"],"245":["\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u062c\u0648\u062f"],"246":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0646\u0627\u0645 \u0645\u0646\u0637\u0642\u0647 "],"247":["\u0645\u0648\u0642\u0639\u06cc\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0647\u0646\u062f\u0647 \u0628\u062e\u0634 \u0645\u0648\u062c\u0648\u062f "],"248":["\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f: %s"],"249":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062a\u06cc\u06a9\u062a \u0647\u0627 "],"250":["\u0628\u0631\u06af\u0634\u062a \u0628\u0647 \u0647\u0645\u0647 \u0646\u06a9\u062a\u0647 \u0647\u0627"],"251":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646"],"252":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0644\u06cc\u0633\u062a"],"253":["\u067e\u06cc\u0634\u200c\u0641\u0631\u0648\u0634 \u0645\u062c\u0627\u0632 \u0627\u0633\u062a\u061f "],"254":["\u062a\u0631\u0627\u0632"],"255":["\u062a\u0627\u0631\u06cc\u062e \u0645\u0648\u062c\u0648\u062f\u06cc"],"256":["\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627\u0646\u06a9\u06cc"],"257":["\u0647\u0632\u06cc\u0646\u0647 \u067e\u0627\u06cc\u0647"],"258":["\u0647\u0632\u06cc\u0646\u0647 \u067e\u0627\u06cc\u0647"],"259":["\u0646\u0627\u0645 \u0645\u0627\u0698\u0648\u0644 \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0622\u0631\u0627\u06cc\u0647 \u0642\u0631\u0627\u0631 \u0645\u06cc \u062f\u0647\u06cc\u0645"],"260":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0634\u0648\u06cc\u062f"],"261":["\u0642\u0628\u0644 \u0627\u0632 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a\u060c \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0648 \u0635\u0631\u0641\u0647 \u062c\u0648\u06cc\u06cc \u062f\u0631 \u0628\u0631\u062e\u06cc \u0627\u0632 \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627\u06cc \u062f\u0631 \u003Cstrong\u003E \u0639\u0646\u0627\u0635\u0631 \u003C/ strong\u003E \u0628\u0631\u06af\u0647."],"262":["\u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646\u06a9\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0634\u0648\u062f "],"263":["\u0642\u0628\u0644 \u0627\u0632 \u062a\u062e\u0641\u06cc\u0641 \u0642\u0628\u0644 \u0627\u0632 \u0645\u0627\u0644\u06cc\u0627\u062a."],"264":["\u0642\u0628\u0644 \u0627\u0632 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0641\u0627\u06cc\u0644\u060c \u0628\u0627\u06cc\u062f \u062e\u0637\u0627\u0647\u0627\u06cc \u0632\u06cc\u0631 \u0631\u0627 \u0628\u0631\u0637\u0631\u0641 \u06a9\u0646\u06cc\u062f:"],"265":["\u067e\u0631\u0641\u0631\u0648\u0634\u062a\u0631\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"266":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0631\u062a\u0631"],"267":["\u0627\u0641\u0632\u0627\u06cc\u0634 \u0642\u06cc\u0645\u062a"],"268":["\u0686\u0631\u062e\u0647 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628"],"269":["\u062a\u0648\u0642\u0641 \u0686\u0631\u062e\u0647 \u067e\u0631\u062f\u0627\u062e\u062a"],"270":["\u0646\u0631\u062e \u0628\u06cc\u062a \u06a9\u0648\u06cc\u0646"],"271":["\u0647\u0632\u06cc\u0646\u0647 \u0628\u0644\u0627\u06a9"],"272":["\u0647\u0632\u06cc\u0646\u0647 \u0628\u0644\u0648\u06a9"],"273":["\u062a\u0639\u062f\u0627\u062f \u0628\u0644\u0627\u06a9"],"274":["\u0645\u062d\u062a\u0648\u0627\u06cc \u0627\u06cc\u0645\u06cc\u0644."],"275":["\u0628\u0644\u0647 \u06cc\u0627! "],"276":["\u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648"],"277":["\u0631\u0632\u0631\u0648 \u0645\u062d\u0635\u0648\u0644"],"278":["\u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648 \u0634\u062f\u0647:"],"279":["\u0631\u0632\u0631\u0648 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637"],"280":["\u0631\u0632\u0631\u0648 \u0634\u062f:  %s"],"281":["\u0631\u0632\u0631\u0648"],"282":["\u0631\u0632\u0631\u0648 #%d"],"283":["\u0631\u0632\u0631\u0648 #%s"],"284":["\u062c\u0632\u06cc\u06cc\u0627\u062a\u00a0\u0631\u0632\u0631\u0648 \u0634\u0645\u0627"],"285":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0631\u0632\u0631\u0648"],"286":["\u062a\u0627\u0631\u06cc\u062e \u0627\u062a\u0645\u0627\u0645 \u0631\u0632\u0631\u0648:"],"287":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0631\u0632\u0631\u0648:  %s"],"288":["\u0634\u0646\u0627\u0633\u0647 \u0631\u0632\u0631\u0648"],"289":["\u0634\u0646\u0627\u0633\u0647 \u0631\u0632\u0631\u0648:  %s"],"290":["\u0634\u0645\u0627\u0631\u0647 \u0631\u0632\u0631\u0648: #%d. \u0634\u0645\u0627\u0631\u0647 \u0633\u0641\u0627\u0631\u0634:\u003Ca href=\"%s\"\u003E #%d \u003C/a\u003E"],"291":["\u062a\u0627\u0631\u06cc\u062e \u0622\u063a\u0627\u0632 \u0631\u0632\u0631\u0648"],"292":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u0631\u0632\u0631\u0648:"],"293":["\u062a\u0627\u0631\u06cc\u062e \u0622\u063a\u0627\u0632 \u0631\u0632\u0631\u0648:  %s"],"294":["\u0648\u0636\u0639\u06cc\u062a \u0628\u0644\u0627\u06a9"],"295":["\u0648\u0636\u0639\u06cc\u062a \u0631\u0632\u0631\u0648"],"296":["\u0646\u0648\u0639 \u0631\u0632\u0631\u0648"],"297":["\u0646\u0648\u0639 \u0631\u0632\u0631\u0648: %s"],"298":["\u0631\u0632\u0631\u0648 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0644\u063a\u0648 \u0634\u0648\u062f "],"299":["\u0645\u062f\u062a \u0632\u0645\u0627\u0646 \u0631\u0632\u0631\u0648"],"300":["\u0631\u0632\u0631\u0648 \u0628\u0631\u0627\u0633\u0627\u0633 \u0631\u0648\u0632"],"301":["\u0631\u0632\u0631\u0648 \u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u0627\u0647"],"302":["\u0627\u0639\u0645\u0627\u0644 \u06af\u0631\u0648\u0647\u06cc"],"303":["\u0631\u0646\u06af \u067e\u0633 \u0632\u0645\u06cc\u0646\u0647 \u062f\u06a9\u0645\u0647"],"304":["\u0631\u0646\u06af \u062d\u0627\u0634\u06cc\u0647 \u062f\u06a9\u0645\u0647"],"305":["\u0631\u0646\u06af \u06a9\u0627\u062f\u0631 \u0647\u0627\u0648\u0631 \u062f\u06a9\u0645\u0647"],"306":["\u0631\u0646\u06af \u0645\u062a\u0646 \u0647\u0627\u0648\u0631 \u062f\u06a9\u0645\u0647"],"307":["\u0631\u0646\u06af \u0647\u0627\u0648\u0631 \u062f\u06a9\u0645\u0647"],"308":["\u0631\u0646\u06af \u0645\u062a\u0646 \u062f\u06a9\u0645\u0647"],"309":["\u0645\u062a\u0646 \u062f\u06a9\u0645\u0647"],"310":["\u062e\u0631\u06cc\u062f \u0641\u0648\u0631\u06cc"],"311":["\u0642\u06cc\u0645\u062a \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062e\u0631\u06cc\u062f \u0622\u0646"],"312":["\u0628\u0631\u0627\u06cc \u0631\u0648\u0632"],"313":["\u0628\u0631 \u0627\u0633\u0627\u0633 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"314":["\u0628\u0631 \u0627\u0633\u0627\u0633 \u0633\u0627\u0644"],"315":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0645\u062d\u0635\u0648\u0644 \u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648"],"316":["\u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062f\u0648\u0631\u0647 \u0628\u0627\u0641\u0631 \u062f\u0631 \u0622\u06cc\u0646\u062f\u0647 \u0627\u0632 \u06cc\u06a9 \u0631\u0632\u0631\u0648 \u067e\u06cc\u0634 \u0628\u06cc\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f. \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0647 \u0635\u0648\u0631\u062a \u0645\u062c\u0632\u0627 (\u0642\u0628\u0644 \u0648 \u0628\u0639\u062f \u0627\u0632 \u0631\u0632\u0631\u0627\u0633\u06cc\u0648\u0646)"],"317":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0631\u0632\u0631\u0648"],"318":["\u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647 CSV "],"319":["\u0646\u0648\u0639 \u0645\u062d\u0627\u0633\u0628\u0647"],"320":["\u062a\u0642\u0648\u06cc\u0645"],"321":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u0626\u0645 \u062a\u0642\u0648\u06cc\u0645"],"322":["\u062d\u0627\u0644\u062a \u0646\u0645\u0627\u06cc\u0634 \u062a\u0642\u0648\u06cc\u0645"],"323":["\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc(URL) \u0641\u0631\u0627\u062e\u0648\u0627\u0646"],"324":["\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0644\u063a\u0648 \u0634\u0648\u062f\u061f"],"325":["\u0627\u0646\u0635\u0631\u0627\u0641 "],"326":["\u0627\u0646\u0635\u0631\u0627\u0641 \u0627\u0632 \u067e\u0627\u0633\u062e"],"327":["\u0644\u063a\u0648 \u062f\u0631\u062e\u0648\u0627\u0633\u062a"],"328":["\u0644\u063a\u0648 \u0628\u0631\u0646\u0627\u0645\u0647"],"329":["\u0644\u063a\u0648 \u0634\u062f\u0647!"],"330":["\u0644\u063a\u0648 \u0634\u062f\u0647\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"331":["\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 %s \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0631\u062f."],"332":["\u06a9\u0627\u0631\u062a"],"333":["\u06a9\u0627\u0631\u062a \u062f\u0631 %s \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc \u0631\u0633\u062f"],"334":["\u06a9\u0627\u0631\u062a \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc \u0631\u0633\u062f \u0628\u0627"],"335":["\u0645\u062c\u0645\u0648\u0639 \u06a9\u0627\u0644\u0627\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f - \u0645\u0648\u0631\u062f \u0628\u0647 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627 \u0628\u0631\u0627\u06cc \u062e\u0631\u06cc\u062f \u0627\u0642\u0644\u0627\u0645 \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u062e\u0648\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u06cc\u062f. "],"336":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627"],"337":["\u0645\u0648\u0636\u0648\u0639"],"338":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc:"],"339":["\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"340":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc"],"341":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc: "],"342":["\u067e\u0631\u062f\u0627\u062e\u062a \u0632\u0646\u062c\u06cc\u0631 "],"343":["\u062a\u063a\u06cc\u06cc\u0631 \u0622\u062f\u0631\u0633"],"344":["\u0627\u06cc\u0646 \u062f\u06a9\u0645\u0647 \u0645\u062a\u0646 \u0645\u0648\u0631\u062f \u0631\u0627 \u0628\u0647 \u0641\u0631\u0648\u0634 \u0628\u0631\u0633\u0627\u0646\u06cc\u062f "],"345":["\u0634\u0627\u0631\u0698 \u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0631\u0627\u06cc\u0637 \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637 \u06a9\u0627\u0631\u0628\u0631"],"346":["\u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0645\u062d\u0635\u0648\u0644"],"347":["\u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"348":["\u06af\u0641\u062a\u06af\u0648"],"349":["\u062a\u0642\u0644\u0628 \u06a9\u0631\u062f\u06cc\u062f!"],"350":["\u0628\u0631\u0631\u0633\u06cc \u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"351":["\u0628\u0631\u0631\u0633\u06cc \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc"],"352":["\u0642\u0648\u0627\u0646\u06cc\u0646 \u0631\u0627 \u06a9\u0646\u062a\u0631\u0644 \u06a9\u0646\u06cc\u062f..."],"353":["\u0627\u06af\u0631 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u067e\u0633 \u0627\u0632 \u062e\u0631\u06cc\u062f \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u0644\u063a\u0648 \u0634\u0648\u062f\u060c \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u0639\u0644\u0627\u0645\u062a \u0628\u0632\u0646\u06cc\u062f. \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0631\u0633\u0627\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f."],"354":["\u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u0639\u0644\u0627\u0645\u062a \u0628\u0632\u0646\u06cc\u062f \u0627\u06af\u0631 \u0631\u0632\u0631\u0648 \u0628\u0647 \u062a\u0623\u06cc\u06cc\u062f / \u062a\u0627\u06cc\u06cc\u062f \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632 \u062f\u0627\u0631\u062f. \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0637\u06cc \u062a\u0633\u0648\u06cc\u0647 \u062d\u0633\u0627\u0628 \u0627\u0646\u062c\u0627\u0645 \u0646\u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"355":[" \u0627\u06af\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0645\u0648\u0627\u0631\u062f \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0641\u0631\u0648\u0634 \u0631\u0627 \u0634\u0627\u0645\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f \u0627\u06cc\u0646 \u062a\u06cc\u06a9 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f."],"356":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"357":["\u0627\u06af\u0631 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u062e\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u0628\u0627\u06cc\u062f \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f."],"358":["\u0628\u0631\u0686\u0633\u0628 \u062f\u06a9\u0645\u0647 \u067e\u0631\u062f\u0627\u062e\u062a "],"359":["\u062a\u0635\u0648\u06cc\u0631 \u067e\u0631\u062f\u0627\u062e\u062a "],"360":["\u0627\u0646\u062a\u062e\u0627\u0628 \u067e\u06a9 \u0627\u0634\u062a\u0631\u0627\u06a9"],"361":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u0631\u0627 \u0627\u0632 \u06a9\u0627\u0645\u067e\u06cc\u0648\u062a\u0631\u062a\u0627\u0646: "],"362":["\u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u062a\u0635\u0627\u0644 \u0627\u0633\u062a\u0631\u06cc\u067e\u060c \u06cc\u06a9 \u0627\u0631\u0632 \u0631\u0627 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u0633\u062a\u0631\u06cc\u067e \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067e\u0648\u0644 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"363":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0627\u0632 \u06a9\u0627\u0645\u067e\u06cc\u0648\u062a\u0631:"],"364":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0627\u06cc\u0644"],"365":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. \u0641\u0642\u0637 \u0631\u0648\u0634 \u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u06a9\u0647 \u0646\u0648\u0627\u062d\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06a9\u0646\u0646\u062f \u0644\u06cc\u0633\u062a \u0645\u06cc \u0634\u0648\u0646\u062f."],"366":["\u0641\u0631\u0645\u062a \u0627\u06cc\u0645\u06cc\u0644 \u0627\u0631\u0633\u0627\u0644\u06cc \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"367":["\u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u062e\u0648\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u0648 \u0631\u0648\u06cc \u062f\u06a9\u0645\u0647 \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u062a\u0645\u0627\u0645 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062f\u0631 \u0641\u0631\u0645 XML \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f"],"368":["\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646"],"369":["\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647"],"370":["\u0631\u0648\u06cc \u062f\u06a9\u0645\u0647 Browse \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f \u0648 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 XML \u06a9\u0647 \u0634\u0645\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u06a9\u0646\u06cc\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"371":["\u0627\u06cc\u0646\u062c\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"372":["\u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"373":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u0635\u0641\u062d\u0627\u062a \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0628\u0631\u0627\u06cc \u067e\u0644\u0627\u06af\u06cc\u0646 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f"],"374":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0634\u062a\u0631\u06cc (Client ID)"],"375":["\u0631\u0627\u0632\u062f\u0627\u0631\u06cc \u0645\u0634\u062a\u0631\u06cc (Client Secret)"],"376":["\u06a9\u062f Client secret \u06af\u0648\u06af\u0644"],"377":["\u06a9\u0644\u0648\u0646\u06cc\u0646\u06af \u0627\u06cc\u0646 \u06a9\u0644\u0627\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0628\u0644\u0627\u06cc\u0627\u06cc \u0641\u0627\u062c\u0639\u0647 \u0628\u0627\u0631 \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f!"],"378":["\u0628\u0633\u062a\u0646 \u062a\u06cc\u06a9\u062a"],"379":["\u0628\u0633\u062a\u0647"],"380":["\u0628\u0633\u062a\u0647 \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E"],"381":["\u062a\u06cc\u06a9\u062a\u200c\u0647\u0627\u06cc \u0628\u0633\u062a\u0647"],"382":["\u0633\u0628\u06a9 \u0628\u0633\u062a\u0646"],"383":["\u06a9\u062f"],"384":["\u0631\u0646\u06af\u200c\u0628\u0646\u062f\u06cc \u0647\u0627"],"385":["\u0646\u0642\u0634\u0647 \u0633\u062a\u0648\u0646"],"386":["\u0646\u0627\u0645 \u0633\u062a\u0648\u0646 "],"387":["\u062f\u06cc\u062f\u06af\u0627\u0647"],"388":["\u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646"],"389":["\u067e\u0648\u0631\u0633\u0627\u0646\u062a"],"390":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646"],"391":["\u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647"],"392":["\u062a\u0627\u0626\u06cc\u062f"],"393":["\u062a\u0627\u06cc\u06cc\u062f \u0631\u0632\u0631\u0648"],"394":["\u062a\u0628\u0631\u06cc\u06a9 %s!"],"395":["\u0627\u062a\u0635\u0627\u0644"],"396":["\u0627\u062a\u0635\u0627\u0644 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e"],"397":["\u06a9\u0644\u06cc\u062f \u0645\u0634\u062a\u0631\u06cc (Consumer Key)"],"398":["\u0645\u062e\u0641\u06cc(secret) \u0645\u0634\u062a\u0631\u06cc"],"399":["\u062a\u0645\u0627\u0633 \u0628\u0627 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"400":["\u0645\u062d\u062a\u0648\u0627"],"401":["\u0627\u062f\u0627\u0645\u0647"],"402":["\u06a9\u0646\u062a\u0631\u0644 \u06cc\u0627 \u0646\u0647 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \"\u062f\u0631 \u0628\u0648\u0631\u0633\" \u0648 \u06cc\u0627 \"\u0627\u0632 \u0633\u0647\u0627\u0645\" \u062f\u0631 \u0638\u0627\u0647\u0631 \u0634\u062f\u0647 \u0627\u0633\u062a."],"403":["\u06a9\u062f \u06a9\u0648\u067e\u0646 \u0636\u0631\u0648\u0631\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"404":["\u0647\u0632\u06cc\u0646\u0647"],"405":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0627"],"406":["\u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0631\u0632\u0631\u0648"],"407":["\u06a9\u0634\u0648\u0631"],"408":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"409":["\u06a9\u062f \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 : \u003Cstrong\u003E%s\u003C/strong\u003E"],"410":["\u0639\u0646\u0648\u0627\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"411":["\u0645\u0642\u062f\u0627\u0631 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"412":["\u0645\u0642\u062f\u0627\u0631 \u06a9\u0648\u067e\u0646 \u0636\u0631\u0648\u0631\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"413":["\u06a9\u062f \u06a9\u0648\u067e\u0646."],"414":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0648\u067e\u0646."],"415":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u062d\u0630\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"416":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"417":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"418":["\u0639\u0646\u0648\u0627\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f"],"419":["\u0646\u0648\u0639 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"420":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0647\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647"],"421":["\u06a9\u062f\u0647\u0627\u06cc \u062a\u062e\u0641\u06cc\u0641"],"422":["\u0627\u06cc\u062c\u0627\u062f \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"423":["\u0627\u06cc\u062c\u0627\u062f \u062a\u06cc\u06a9\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062c\u062f\u06cc\u062f"],"424":["\u0627\u06cc\u062c\u0627\u062f \u06cc\u06a9 \u0628\u0631\u0646\u0627\u0645\u0647"],"425":["\u0627\u06cc\u062c\u0627\u062f \u06a9\u0627\u0631\u0645\u0646\u062f"],"426":["\u062a\u0627\u0631\u06cc\u062e \u0627\u06cc\u062c\u0627\u062f \u0634\u062f"],"427":["\u0627\u0639\u062a\u0628\u0627\u0631"],"428":["\u06a9\u0645 \u0641\u0631\u0648\u0634\u200c\u062a\u0631\u06cc\u0646\u200c\u0647\u0627"],"429":["Cross-sells \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u06cc \u0647\u0633\u062a\u0646\u062f \u06a9\u0647 \u0634\u0645\u0627 \u062f\u0631 \u0633\u0628\u062f \u06a9\u0627\u0644\u0627\u06cc\u06cc \u062a\u0628\u0644\u06cc\u063a \u0645\u06cc \u06a9\u0646\u06cc\u062f\u060c \u0628\u0631 \u0627\u0633\u0627\u0633 \u0645\u062d\u0635\u0648\u0644 \u0641\u0639\u0644\u06cc."],"430":["\u0645\u0648\u062c\u0648\u062f\u06cc \u0641\u0639\u0644\u06cc"],"431":["\u0628\u0633\u062a\u0647 \u0641\u0639\u0627\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 "],"432":["\u0648\u06cc\u0698\u06af\u06cc \u0633\u0641\u0627\u0631\u0634\u06cc"],"433":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0633\u0641\u0627\u0631\u0634\u06cc"],"434":["\u0645\u0634\u062a\u0631\u06cc"],"435":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0634\u062a\u0631\u06cc"],"436":["\u0641\u0631\u0645 \u0645\u0647\u0627\u062c\u0631\u062a \u0645\u0634\u062a\u0631\u06cc"],"437":["\u0645\u0634\u062a\u0631\u06cc \u062a\u0639\u0631\u06cc\u0641 \u06a9\u0631\u062f \u0628\u0644\u0627\u06a9 \u0647\u0627\u06cc"],"438":["\u0645\u0634\u062a\u0631\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f"],"439":["\u0645\u0634\u062a\u0631\u06cc\u0627\u0646 \u0645\u0648\u062c\u0648\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc\u0627\u0646 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u06cc\u06a9\u06cc \u0627\u0632 \u0641\u0631\u0645 \u0631\u0632\u0631\u0648 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u0646\u062f."],"440":["\u0645\u0634\u062a\u0631\u06cc \u0627\u06cc\u0646 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0631\u0627 \u062f\u0631 \u0627\u06cc\u0645\u06cc\u0644 \u0633\u0641\u0627\u0631\u0634 \u062e\u0648\u062f \u062f\u0631\u06cc\u0627\u0641\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f"],"441":["\u062f\u0627\u0646\u0645\u0627\u0631\u06a9\u06cc"],"442":["\u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"443":["\u06a9\u0627\u062f\u0631 \u0645\u0646\u0648\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"444":["\u0645\u0646\u0648\u06cc \u0641\u0639\u0627\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"445":["\u067e\u06cc\u0634 \u0632\u0645\u06cc\u0646\u0647 \u0646\u0627\u0648\u0628\u0631\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"446":["\u0645\u062a\u0646 \u0646\u0627\u0648\u0628\u0631\u06cc \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"447":["\u0632\u0645\u0627\u0646"],"448":["\u0628\u0627\u0632\u0647 \u0632\u0645\u0627\u0646\u06cc"],"449":["\u0645\u062d\u062f\u0648\u062f \u062a\u0627\u0631\u06cc\u062e \u0628\u0647 \u0647\u0645\u0631\u0627\u0647 \u0632\u0645\u0627\u0646"],"450":["\u0628\u0633\u062a\u0646 \u062f\u0631 \u062a\u0627\u0631\u06cc\u062e \u0645\u0639\u06cc\u0646"],"451":["\u0645\u062d\u062f\u0648\u062f\u0647 \u062a\u0627\u0631\u06cc\u062e"],"452":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0641\u0631\u0648\u0634 \u0648\u06cc\u0698\u0647 "],"453":["\u062a\u0627\u0631\u06cc\u062e\u200c\u0647\u0627\u06cc \u0634\u0631\u0648\u0639 \u0642\u06cc\u0645\u062a \u062d\u0631\u0627\u062c"],"454":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0631\u0648\u0632"],"455":["\u0631\u0648\u0632"],"456":["\u0631\u0648\u0632 \u0647\u0627, ( \u0633\u0627\u062e\u062a \u0633\u0641\u0627\u0631\u0634 \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0631\u062f\u0627\u0634\u062a) \u003Cbr\u003E \u0645\u0642\u062f\u0627\u0631 \"0\" \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"457":["\u063a\u06cc\u0631\u0647 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647"],"458":["\u067e\u0644\u0627\u06af\u06cc\u0646 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0644\u0637\u0641\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f"],"459":["\u062f\u0631 \u062d\u0627\u0644 \u063a\u06cc\u0631\u0647 \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc"],"460":["\u0628\u062f\u0647\u06cc"],"461":["Log \u0627\u0634\u06a9\u0627\u0644 \u0632\u062f\u0627\u06cc\u06cc"],"462":["\u062f\u0633\u0627\u0645\u0628\u0631"],"463":["\u0642\u06cc\u0645\u062a \u067e\u06cc\u0634 \u0641\u0631\u0636 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 "],"464":["\u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc"],"465":["\u0648\u06cc\u0698\u06af\u06cc \u067e\u06cc\u0634\u200c\u0641\u0631\u0636"],"466":["\u0627\u0646\u062a\u062e\u0627\u0628 \u067e\u06cc\u0634 \u0641\u0631\u0636:"],"467":["\u062d\u0630\u0641 \u06a9\u0631\u062f\u0646"],"468":["\u062d\u0630\u0641 \u0645\u062c\u0648\u0632"],"469":["\u062d\u0630\u0641 \u062f\u0627\u0626\u0645"],"470":["\u062d\u0630\u0641 \u062d\u0631\u0627\u062c \u0645\u062d\u0635\u0648\u0644"],"471":["\u062d\u0630\u0641 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"472":["\u062d\u0630\u0641 \u06a9\u0627\u0631\u062a"],"473":["\u062d\u0630\u0641 \u062a\u0635\u0648\u06cc\u0631"],"474":["\u062d\u0630\u0641 \u062f\u0627\u0626\u0645\u06cc"],"475":["\u062c\u062f\u0627 \u06a9\u0646\u0646\u062f\u0647"],"476":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a"],"477":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a: "],"478":["\u0645\u0634\u062e\u0635\u0627\u062a"],"479":["\u0633\u0648\u0627\u0644 \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u067e\u0631\u0633\u06cc\u062f(\u0627\u0632 \u0627\u0631\u0633\u0627\u0644 \u0633\u0648\u0627\u0644 \u0647\u0627\u06cc \u0628\u06cc \u0645\u0648\u0631\u062f \u067e\u0631\u0647\u06cc\u0632 \u06a9\u0646\u06cc\u062f) "],"480":["\u062c\u0632\u06cc\u06cc\u0627\u062a  \u062f\u0631 \u0628\u0627\u0644\u0627 \u0646\u0645\u0627\u06cc\u0634  \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f. "],"481":["\u0646\u0648\u0639 \u062a\u062e\u0641\u06cc\u0641 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u0645\u06cc \u06a9\u0646\u062f."],"482":["\u0627\u0646\u0648\u0627\u0639 \u0645\u062e\u062a\u0644\u0641 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 (e.g. size, color)"],"483":["\u0627\u0628\u0639\u0627\u062f"],"484":["\u0627\u0628\u0639\u0627\u062f (L&times;W&times;H)"],"485":["\u0645\u0633\u062a\u0642\u06cc\u0645"],"486":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0631\u0627\u062c "],"487":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634"],"488":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"489":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u062d\u0631\u0627\u062c \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 "],"490":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627"],"491":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644"],"492":["\u062a\u0627\u06cc\u06cc\u062f \u0646\u0634\u062f"],"493":["\u0642\u0637\u0639 \u0634\u062f\u0646"],"494":["\u0642\u0637\u0639"],"495":["\u0642\u0637\u0639 \u0627\u062a\u0635\u0627\u0644 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u06a9\u0627\u0631\u0628\u0631"],"496":["\u062a\u062e\u0641\u06cc\u0641"],"497":["\u062a\u062e\u0641\u06cc\u0641 "],"498":["\u062a\u062e\u0641\u06cc\u0641 %"],"499":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u062e\u0641\u06cc\u0641"],"500":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u062e\u0641\u06cc\u0641"],"501":["\u062a\u062e\u0641\u06cc\u0641 \u0631\u0648\u06cc \u06a9\u0644 \u0633\u0641\u0627\u0631\u0634"],"502":["\u0646\u0648\u0639 \u062a\u062e\u0641\u06cc\u0641"],"503":["\u062a\u062e\u0641\u06cc\u0641 \u0631\u0648\u06cc \u0645\u062d\u0635\u0648\u0644"],"504":["\u0627\u06cc\u0646 \u067e\u06cc\u063a\u0627\u0645 \u0631\u0627 \u0646\u0634\u0627\u0646 \u0646\u062f\u0647"],"505":["\u0631\u062f \u06a9\u0631\u062f\u0646 \u0627\u06cc\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"506":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0642\u0648\u06cc\u0645 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u06a9\u0644\u06cc\u06a9 \u06a9\u0631\u062f\u0646"],"507":["\u0647\u0632\u06cc\u0646\u0647 \u0646\u0645\u0627\u06cc\u0634"],"508":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u062f\u0627\u062e\u0644 \u0632\u0628\u0627\u0646\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 "],"509":["\u0627\u062c\u0627\u0632\u0647 \u0646\u062f\u0647"],"510":["\u062a\u0635\u0627\u0648\u06cc\u0631 \u0631\u0627 \u0648\u0627\u0631\u062f \u0646\u06a9\u0646\u06cc\u062f "],"511":["\u0622\u06cc\u0627 \u0648\u0627\u0642\u0639\u0627 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f\u061f"],"512":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u062f\u06a9\u0627\u0646"],"513":["\u0631\u0632\u0631\u0648 \u062f\u06a9\u0627\u0646 \u0644\u063a\u0648 \u0634\u062f \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc"],"514":["\u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062f\u06a9\u0627\u0646 (\u0627\u0633\u062a\u0631\u06cc\u067e)"],"515":["\u062e\u0637\u0627 \u062f\u06a9\u0627\u0646:"],"516":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0632\u0646\u062f\u0647 \u062f\u06a9\u0627\u0646"],"517":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062f\u0643\u0627\u0646 \u0645\u0646"],"518":["\u062d\u0631\u0627\u062c \u062c\u062f\u06cc\u062f \u062f\u06a9\u0627\u0646"],"519":["\u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u062f\u06a9\u0627\u0646"],"520":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u062f\u06a9\u0627\u0646"],"521":["\u0627\u0646\u062c\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627 \u06a9\u0627\u0631\u062a \u0647\u0627\u06cc \u0639\u0636\u0648\u0634\u062a\u0627\u0628 "],"522":["\u067e\u0646\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0647\u0631"],"523":["\u067e"],"524":["\u062a\u0623\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u06a9\u0627\u0646"],"525":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u06a9\u0627\u0646"],"526":["\u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646"],"527":["\u0627\u062a\u0635\u0627\u0644 strip \u062f\u06a9\u0627\u0646"],"528":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646"],"529":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u0647\u0631"],"530":["\u0627\u0628\u0632\u0627\u0631\u0647\u0627\u06cc \u067e\u0646\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"531":["\u062f\u06a9\u0627\u0646 \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0645\u062d\u0635\u0648\u0644"],"532":["\u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u06a9\u0627\u0646"],"533":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u06cc \u062f\u06a9\u0627\u0646"],"534":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"535":["\u062f\u06a9\u0627\u0646: \u062a\u0623\u06cc\u06cc\u062f"],"536":["\u0646\u0645\u0627\u06cc\u0634 \u0646\u062f\u0647\u06cc\u062f"],"537":["\u0627\u0646\u062c\u0627\u0645 \u0634\u062f."],"538":["\u0622\u062f\u0631\u0633 \u062f\u0627\u0646\u0644\u0648\u062f %d "],"539":["\u0646\u0627\u0645 \u062f\u0627\u0646\u0644\u0648\u062f %d "],"540":["\u0627\u0646\u0642\u0636\u0627\u0621 \u062f\u0627\u0646\u0644\u0648\u062f :"],"541":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u0646\u0644\u0648\u062f"],"542":["\u062f\u0627\u0646\u0644\u0648\u062f \u0641\u0627\u06cc\u0644 \u062a\u0648\u062f\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u067e\u06cc \u067e\u0627\u0644"],"543":["\u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0632 \u0627\u062f\u0631\u0633 "],"544":["\u0627\u0646\u0642\u0636\u0627\u0621 \u062f\u0627\u0646\u0644\u0648\u062f"],"545":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627 \u062f\u0627\u0646\u0644\u0648\u062f "],"546":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u0646\u0644\u0648\u062f"],"547":["\u0646\u0627\u0645 \u062f\u0631\u06cc\u0627\u0641\u062a "],"548":["\u0641\u0627\u06cc\u0644 \u062f\u0627\u0646\u0644\u0648\u062f"],"549":["\u0641\u0627\u06cc\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f"],"550":["\u0645\u062d\u0635\u0648\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f"],"551":["\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u062f\u0627\u0646\u0644\u0648\u062f\u06cc"],"552":["\u062a\u0639\u062f\u0627\u062f \u062f\u0627\u0646\u0644\u0648\u062f : %s \u0628\u0627\u0631"],"553":["\u062f\u0627\u0646\u0644\u0648\u062f \u0647\u0627"],"554":["\u062f\u0627\u0646\u0644\u0648\u062f \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647"],"555":["\u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633"],"556":["\u067e\u06cc\u0634\u0646\u0648\u06cc\u0633  (%d)"],"557":["\u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"558":["\u0628\u0627 \u06a9\u0634\u06cc\u062f\u0646 \u0648 \u0631\u0647\u0627 \u06a9\u0631\u062f\u0646 \u06cc\u0627 \u06a9\u0644\u06cc\u06a9 \u0645\u062a\u063a\u06cc\u0631 \u0645\u062f\u06cc\u0631 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634 \u062a\u0639\u06cc\u06cc\u0646 \u06a9\u0646\u06cc\u062f"],"559":["\u06af\u0648\u0627\u0647\u06cc \u0646\u0627\u0645\u0647 \u0631\u0627\u0646\u0646\u062f\u06af\u06cc"],"560":["\u0633\u0631\u0631\u0633\u06cc\u062f \u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0631\u0633\u06cc\u062f\u0647 \u0627\u0633\u062a \u060c\u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u0627\u0632 \u0637\u0631\u0641 \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u0645\u06cc \u0634\u0648\u062f"],"561":["\u062a\u06a9\u0631\u0627\u0631\u06cc"],"562":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc"],"563":["\u062a\u06a9\u062b\u06cc\u0631 \u0645\u062d\u0635\u0648\u0644"],"564":["\u0645\u062f\u062a:"],"565":["\u0647\u0644\u0646\u062f\u06cc"],"566":["\u0627\u06cc\u0645\u06cc\u0644"],"567":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644"],"568":["\u0647\u0631 \u06af\u06cc\u0631\u0646\u062f\u0647 "],"569":["\u062f\u0631\u0622\u0645\u062f"],"570":["\u0645\u06cc\u0632\u0627\u0646 \u062f\u0631\u0622\u0645\u062f"],"571":["\u06af\u0632\u0627\u0631\u0634 \u062f\u0631\u0622\u0645\u062f"],"572":["\u0648\u06cc\u0631\u0627\u06cc\u0634"],"573":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"574":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062d\u0631\u0627\u062c "],"575":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0632\u0631\u0648"],"576":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"577":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0646 \u062e\u0631\u06cc\u062f"],"578":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u0648\u062c\u0648\u062f\u06cc"],"579":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"580":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0645\u0646\u062f"],"581":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u0648\u0636\u0648\u0639"],"582":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c"],"583":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644 \u0631\u0632\u0631\u0648"],"584":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0638\u0631\u0627\u062a"],"585":["\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644"],"586":["\u0627\u06cc\u0645\u06cc\u0644"],"587":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 "],"588":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u0627\u06cc\u0645\u06cc\u0644"],"589":["\u0645\u0648\u0636\u0648\u0639 \u0627\u06cc\u0645\u06cc\u0644"],"590":["\u0627\u06cc\u0645\u06cc\u0644 \u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647"],"591":["\u0628\u062f\u0646\u0647 \u0627\u06cc\u0645\u06cc\u0644"],"592":["\u0627\u06cc\u0645\u06cc\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f."],"593":["\u0647\u062f\u06cc\u0646\u06af(\u0639\u0646\u0648\u0627\u0646) \u0627\u06cc\u0645\u06cc\u0644"],"594":["\u0627\u06cc\u0645\u06cc\u0644 \u0627\u0644\u0632\u0627\u0645\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"595":["\u0627\u0631\u0633\u0627\u0644 \u0647\u0634\u062f\u0627\u0631 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u062b\u0628\u062a \u0634\u062f"],"596":["\u0628\u0647 \u062c\u0632 \u0627\u06cc\u0645\u06cc\u0644"],"597":["\u0633\u0648\u0627\u0644 \u0634\u0645\u0627 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f(\u0628\u0647 \u0632\u0648\u062f\u06cc \u067e\u0627\u0633\u062e \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0634\u0645\u0627 \u0641\u0631\u0633\u062a\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f) "],"598":["\u0646\u0648\u0639 \u0627\u06cc\u0645\u06cc\u0644"],"599":["\u067e\u0633\u062a \u0627\u0644\u06a9\u062a\u0631\u0648\u0646\u06cc\u06a9:"],"600":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a"],"601":["\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a"],"602":["\u067e\u0627\u0633\u062e \u062e\u0627\u0644\u06cc"],"603":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u0631\u0632 Bitcoin \u062f\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0637 "],"604":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u06af\u0631 \u0645\u062d\u062f\u0648\u062f\u0647 \u062a\u0642\u0648\u06cc\u0645\u061f"],"605":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u0639\u0644\u0627\u0646 \u0627\u06cc\u0645\u06cc\u0644"],"606":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644"],"607":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u06af\u0641\u062a\u06af\u0648\u06cc \u0632\u0646\u062f\u0647"],"608":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 PayPal Adaptive "],"609":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 sandbox \u067e\u06cc \u067e\u0627\u0644"],"610":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u062d\u0635\u0648\u0644"],"611":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u0634\u0627\u0647\u062f\u0647"],"612":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"613":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0686\u0646\u062f \u0641\u0631\u0634\u0646\u062f\u0647"],"614":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0686\u0646\u062f \u0641\u0631\u0634\u0646\u062f\u0647"],"615":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648\u0631\u0648\u062f \u0628\u0647 \u0633\u06cc\u0633\u062a\u0645 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"616":["\u0641\u0639\u0627\u0644 \u0646\u0645\u0648\u062f\u0646 \u0645\u062d\u0631\u0645\u0627\u0646\u0647"],"617":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a\u0631\u06cc\u067e"],"618":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u062f\u0631 \u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"619":["\u0628\u0633\u062a\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u062f\u0631 \u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062c\u062f\u06cc\u062f \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"620":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"621":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0648 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0642\u0648\u0627\u0646\u06cc\u0646"],"622":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0642\u0648\u0627\u0646\u06cc\u0646 \u062f\u0631 \u0641\u0631\u0645 \u062b\u0628\u062a"],"623":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0627\u0644\u062a \u062a\u0633\u062a"],"624":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u0632\u0627\u06cc\u062f\u0647 "],"625":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062a\u062e\u0641\u06cc\u0641 \u06a9\u0644\u06cc"],"626":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u06af\u0641\u062a\u06af\u0648\u06cc \u0632\u0646\u062f\u0647 \u0628\u06cc\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0648 \u0645\u0634\u062a\u0631\u06cc"],"627":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u0644\u0627\u06af"],"628":["\u0627\u0639\u0644\u0627\u0646 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u062f\u0631 \u067e\u0627\u06cc\u0627\u0646 \u0627\u0646\u0642\u0636\u0627\u06cc \u067e\u06a9\u06cc\u062c \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"629":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u0627\u0646\u0648\u0627\u0639 \u0627\u0641\u0631\u0627\u062f"],"630":["\u0628\u0631\u0631\u0633\u06cc (\u0646\u0638\u0631\u0627\u062a) \u0631\u0627 \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0641\u0639\u0627\u0644 \u0645\u06cc\u06a9\u0646\u062f"],"631":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"632":["\u0645\u0632\u0627\u06cc\u062f\u0647 \u067e\u0631\u0648\u06a9\u0633\u06cc \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"633":["\u06a9\u0627\u0631\u062a \u0647\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"634":["\u0645\u0632\u0627\u06cc\u062f\u0647 \u0645\u0647\u0631 \u0648 \u0645\u0648\u0645 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"635":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"636":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0631 \u0633\u0637\u062d \u0645\u062d\u0635\u0648\u0644"],"637":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"638":["\u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc \u062a\u062e\u0641\u06cc\u0641 \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"639":["\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc\u0645\u06cc\u0644\u06cc"],"640":["\u0627\u06af\u0631 \u0645\u062d\u0635\u0648\u0644 \u062d\u0645\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f \u0648 \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f\u060c\u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"641":["\u0627\u06af\u0631 \u062a\u0645\u0627\u06cc\u0644 \u062f\u0627\u0631\u06cc\u062f \u0628\u0647 \u0645\u062d\u0636 \u062e\u0631\u06cc\u062f \u0627\u062c\u0627\u0632\u0647 \u062f\u0627\u0646\u0644\u0648\u062f \u0635\u0627\u062f\u0631 \u0634\u0648\u062f \u0627\u06cc\u0646 \u0642\u0633\u0645\u062a \u0631\u0627 \u062a\u06cc\u06a9 \u0628\u0632\u0646\u06cc\u062f"],"642":["\u0627\u06af\u0631 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0641\u0627\u06cc\u0644 \u0642\u0627\u0628\u0644 \u062f\u0627\u0646\u0644\u0648\u062f \u067e\u0633 \u0627\u0632 \u062e\u0631\u06cc\u062f \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"643":["\u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0631 \u0633\u0637\u0648\u062d \u0645\u062e\u062a\u0644\u0641 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f"],"644":["\u0627\u06cc\u0646 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u06a9\u0644 \u0647\u0632\u06cc\u0646\u0647 \u0631\u0632\u0631\u0648 (\u0647\u0632\u06cc\u0646\u0647 \u0628\u0644\u0648\u06a9 \u0648 \u067e\u0627\u06cc\u0647) \u0631\u0627 \u062a\u0648\u0633\u0637 \u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f \u0636\u0631\u0628 \u06a9\u0646\u06cc\u062f."],"645":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0628\u0644\u06cc\u062a \u062a\u0646\u0638\u06cc\u0645 \u0647\u0632\u06cc\u0646\u0647 \u0627\u0631\u0633\u0627\u0644 \u0628\u0631\u0627\u06cc \u0647\u0631 \u06a9\u0627\u0644\u0627 \u0648 \u0647\u0631 \u06a9\u0634\u0648\u0631 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"646":["\u0641\u0639\u0627\u0644/\u063a\u06cc\u0631\u0641\u0639\u0627\u0644"],"647":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 / \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u0645\u0647\u0645\u0627\u0646"],"648":["\u0641\u0639\u0627\u0644 \u0634\u062f\u0647"],"649":["\u0641\u0639\u0627\u200c\u0644\u200c\u0633\u0627\u0632\u06cc \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0639\u062f \u0627\u0632 \u0641\u0631\u0645 \u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc\u200c\u062f\u0647\u062f \u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0645\u06cc\u0644\u060c \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u062a\u0627\u06cc\u06cc\u062f \u0634\u0648\u0646\u062f"],"650":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u0627\u06cc\u0646 \u0622\u06cc\u06a9\u0648\u0646 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u0631\u0627 \u062a\u062d\u062a \u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc \u062f\u0647\u062f \u0628\u0631\u0627\u06cc \u0648\u0631\u0648\u062f \u0628\u0647 \u0633\u06cc\u0633\u062a\u0645 \u0648 \u06cc\u0627 \u062b\u0628\u062a \u0646\u0627\u0645 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"651":["\u062a\u0627\u0631\u06cc\u062e \u0627\u062a\u0645\u0627\u0645"],"652":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646:"],"653":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646"],"654":["\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc"],"655":["\u0645\u062a\u0646 \u0645\u0648\u0636\u0648\u0639 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639 \u0631\u0633\u0627\u0646\u06cc \u0627\u06cc\u0645\u06cc\u0644 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"656":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u06a9 \u0648\u0627\u062d\u062f \u0646\u06af\u0647\u062f\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc (Stock keeping unit) \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f  \u06cc\u0627 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f \u0627\u0632 \u0648\u0627\u062d\u062f \u0646\u06af\u0647\u062f\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc (Stock keeping unit \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0645\u0627\u062f\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"657":["\u0647\u0632\u06cc\u0646\u0647 (\u0628\u062f\u0648\u0646 \u0645\u0627\u0644\u06cc\u0627\u062a) \u06cc\u0627 \u0645\u0628\u0644\u063a \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f\u060c \u0628\u0631\u0627\u06cc \u0645\u062b\u0627\u0644 \u003Ccode\u003E 1000 * [qty] \u003C/code\u003E. \u0627\u0632 \u003Ccode\u003E [qty] \u003C/code\u003E \u0628\u0631\u0627\u06cc \u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u060c \u0627\u0632 \u003Ccode\u003E [cost] \u003C/code\u003E \u0628\u0631\u0627\u06cc \u06a9\u0644 \u0647\u0632\u06cc\u0646\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u060c \u0648 \u0627\u0632\u003Ccode\u003E[fee percent='10' min_fee='20' max_fee='']\u003C/code\u003E\u0628\u0631\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u062f\u0631\u0635\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"658":["\u0647\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0642\u0627\u0646\u0648\u0646 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u0628\u0647 \u0647\u0631 \u0628\u0644\u0648\u06a9 \u0631\u0632\u0631\u0648 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f."],"659":["\u0647\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0642\u0627\u0646\u0648\u0646 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u0628\u0647 \u0637\u0648\u0631 \u06a9\u0644\u06cc \u0628\u0647 \u0631\u0632\u0631\u0648 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f."],"660":["\u06cc\u06a9 \u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc \u062c\u062f\u06cc\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f:"],"661":["\u06cc\u06a9 \u0645\u0642\u062f\u0627\u0631 \u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0631 \u0633\u0637\u062d \u0645\u062e\u062a\u0644\u0641 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u06a9\u0627\u062f\u0631 \u062e\u0627\u0644\u06cc \u06af\u0630\u0627\u0634\u062a\u0647 \u0648 \u0627\u0632 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0648\u0627\u0644\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f."],"662":["\u0648\u0632\u0646 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u0628\u0627 \u062e\u0627\u0644\u06cc \u06af\u0630\u0627\u0634\u062a\u0646 \u0627\u0646 \u0627\u0632 \u0648\u0632\u0646 \u067e\u0627\u06cc\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f."],"663":["\u0645\u062a\u0646 \u0628\u062f\u0646\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639 \u0631\u0633\u0627\u0646\u06cc \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"664":["\u0639\u0646\u0648\u0627\u0646 \u0631\u0648\u0634 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"665":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632 \u0647\u0627\u06cc\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u067e\u06a9\u06cc\u062c  \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"666":["\u06af\u06cc\u0631\u0646\u062f\u06af\u0627\u0646 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f (\u0628\u0627 \u06a9\u0627\u0645\u0627 \u0627\u0632 \u0647\u0645 \u062c\u062f\u0627 \u0634\u062f\u0647) \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644. \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0628\u0647 %s."],"667":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0645\u062a\u0646\u060c \u06cc\u0627 \u062e\u0635\u0648\u0635\u06cc\u062a \u0647\u0627\u06cc\u06cc \u0628\u0627 \u0645\u0642\u0627\u062f\u06cc\u0631 \u062c\u062f\u0627\u06a9\u0646\u0646\u062f\u0647 \"%s\" \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"668":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644\u06cc \u06a9\u0647 \u0628\u0631\u0627\u06cc \u062e\u0631\u06cc\u062f \u067e\u0644\u0627\u06af\u06cc\u0646 \u0648 \u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0642\u0631\u0627\u0631 \u06af\u0631\u0641\u062a \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"669":["\u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u06cc \u0631\u0627 \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u067e\u06a9\u06cc\u062c  \u0631\u0627 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"670":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632\u06cc \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0642\u0628\u0644 \u0627\u0632 \u0622\u0646 \u06cc\u06a9 \u0644\u06cc\u0646\u06a9 \u062f\u0627\u0646\u0644\u0648\u062f \u0645\u0646\u0642\u0636\u06cc \u0645\u06cc \u0634\u0648\u062f\u060c \u06cc\u0627 \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f."],"671":["\u06af\u0648\u0627\u0647\u06cc \u0646\u0627\u0645\u0647 PayPal API \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u062a\u0639\u0644\u06cc\u0642 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0648 \u0644\u063a\u0648 \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f. %s \u0628\u06cc\u0634\u062a\u0631 \u0628\u062e\u0648\u0627\u0646\u06cc\u062f & raquo; %s"],"672":["\u0646\u0627\u0645 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"673":["\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"674":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"675":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0631\u06cc\u062f  \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"676":["\u0622\u062f\u0631\u0633 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"677":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"678":["\u067e\u06cc\u0627\u0645 \u062e\u0637\u0627"],"679":["\u062e\u0637\u0627\u06cc\u06cc \u0631\u062e \u062f\u0627\u062f\u0647 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b \u0645\u062c\u062f\u062f\u0627\u064b \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f."],"680":["\u062e\u0637\u0627!"],"681":["\u062e\u0637\u0627: "],"682":["\u062e\u0637\u0627: \u062a\u0627\u06cc\u06cc\u062f \u0628\u0627 \u0634\u06a9\u0633\u062a \u0645\u0648\u0627\u062c\u0647 \u0634\u062f"],"683":["\u0647\u0631 \u0645\u062d\u0635\u0648\u0644 \u062f\u0648\u0645 \u0628\u0627 \u0627\u06cc\u0646 \u0642\u06cc\u0645\u062a \u0627\u0632 \u0647\u0645\u0627\u0646 \u0646\u0648\u0639 \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"684":["\u0628\u0631\u0627\u0633\u0627\u0633"],"685":["\u062d\u0630\u0641 \u0622\u06cc\u062a\u0645 \u0647\u0627\u06cc \u0641\u0631\u0648\u0634"],"686":["\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0627\u06cc\u0646 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627"],"687":["\u062d\u0630\u0641 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"688":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627"],"689":["\u0645\u0646\u0642\u0636\u06cc"],"690":["\u0627\u0646\u0642\u0636\u0627  %s/%s"],"691":["\u0627\u0646\u062a\u0642\u0636\u0627 \u062a\u0627 %s"],"692":["\u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627\u0621"],"693":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc"],"694":["\u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0647\u0645\u0647"],"695":["\u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc CSV"],"696":["\u062e\u0631\u0648\u062c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0627\u0632 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"697":["\u0628\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc XML"],"698":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0647\u0645\u0647 \u0633\u062a\u0648\u0646\u200c\u0647\u0627"],"699":["\u062a\u0645\u0627\u0645 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0635\u0627\u062f\u0631 \u06a9\u0646 "],"700":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0645\u062a\u0627\u06cc \u062f\u0644\u062e\u0648\u0627\u0647\u061f"],"701":["\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0628\u0647 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 CSV"],"702":["\u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u062e\u0627\u0631\u062c\u06cc"],"703":["\u0645\u062d\u0635\u0648\u0644 \u062e\u0627\u0631\u062c\u06cc "],"704":["\u062e\u0627\u0631\u062c\u06cc / \u0648\u0627\u0628\u0633\u062a\u0647"],"705":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u06cc\u0634\u062a\u0631"],"706":["\u0641\u06cc\u0633 \u0628\u0648\u06a9"],"707":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u0641\u06cc\u0633 \u0628\u0648\u06a9"],"708":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0641\u06cc\u0633 \u0628\u0648\u06a9 :"],"709":["\u062a\u0635\u0648\u06cc\u0631 \u0641\u06cc\u0633 \u0628\u0648\u06a9 :"],"710":["\u0639\u0646\u0648\u0627\u0646 \u0641\u06cc\u0633 \u0628\u0648\u06a9:"],"711":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s %s"],"712":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s &#8220;%s&#8221;"],"713":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0645\u062d\u0635\u0648\u0644 %s \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f"],"714":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f &#8220;%s&#8221;: \u0646\u0648\u0639 \u067e\u0633\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a %s"],"715":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062f\u0633\u062a\u0647 \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s"],"716":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062a\u06af \u067e\u0633\u062a \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f %s"],"717":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0648\u06cc\u0698\u0647"],"718":["\u0641\u0648\u0631\u06cc\u0647"],"719":["\u0647\u0632\u06cc\u0646\u0647"],"720":["\u0646\u0627\u0645 \u0647\u0632\u06cc\u0646\u0647"],"721":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u0646\u062f\u0647"],"722":["\u067e\u06cc\u0648\u0633\u062a \u0647\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a\u06cc \u0641\u0639\u0627\u0644 \u0646\u06cc\u0633\u062a\u0646\u062f"],"723":["\u0646\u0627\u0645 \u067e\u0631\u0648\u0646\u062f\u0647:"],"724":["\u0622\u062f\u0631\u0633 \u0641\u0627\u06cc\u0644"],"725":["\u067e\u0631\u0648\u0646\u062f\u0647 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a \u0644\u0637\u0641\u0627 \u0686\u06cc\u0632\u06cc \u0645\u0647\u0645 \u062a\u0631 \u0631\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0646\u06cc\u062f. \u0627\u06cc\u0646 \u062e\u0637\u0627 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0646\u0627\u0634\u06cc \u0627\u0632 \u0622\u067e\u0644\u0648\u062f \u0647\u0627\u06cc\u06cc \u06a9\u0647 \u062f\u0631 php.ini \u0634\u0645\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a \u06cc\u0627 \u062a\u0648\u0633\u0637 post_max_size \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u06a9\u0648\u0686\u06a9\u062a\u0631 \u0627\u0632 upload_max_filesize \u062f\u0631 php.ini \u062a\u0639\u0631\u06cc\u0641 \u0634\u0648\u062f."],"726":["\u0641\u06cc\u0644\u062a\u0631 \u0631\u0632\u0631\u0648"],"727":["\u0641\u0646\u0644\u0627\u0646\u062f\u06cc"],"728":["\u0646\u0627\u0645 \u06a9\u0648\u0686\u06a9"],"729":["\u0646\u0627\u0645 \u0627\u0644\u0632\u0627\u0645\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"730":["\u0645\u06a9\u0627\u0646 \u0627\u0648\u0644 \u0634\u0631\u0648\u0639 \u0645\u06cc \u0634\u0648\u062f \u062f\u0631 ..."],"731":["\u0645\u0642\u062f\u0627\u0631 \u062b\u0627\u0628\u062a"],"732":["\u0628\u0644\u0627\u06a9 \u062b\u0627\u0628\u062a"],"733":["\u062b\u0627\u0628\u062a"],"734":["\u0646\u0631\u062e \u062b\u0627\u0628\u062a"],"735":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0631\u0648\u0634 \u067e\u0631\u062f\u0627\u062e\u062a\u060c \u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u0627\u0639\u062a\u0628\u0627\u0631\u0646\u0627\u0645\u0647 \u06a9\u0627\u0631\u0628\u0631\u062f\u06cc \u062f\u0627\u0631\u06cc\u062f "],"736":["\u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0633\u06cc\u0633\u062a\u0645 \u0644\u0637\u0641\u0627 \u062f\u0631 \u062d\u0633\u0627\u0628 \u062a\u0648\u0633\u0639\u0647 \u062f\u0647\u0646\u062f\u0647 \u062b\u0628\u062a \u0646\u0627\u0645 \u06a9\u0646\u06cc\u062f \u0648 \u0645\u062f\u0627\u0631\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0634\u0645\u0627 \u0631\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0646\u06cc\u062f "],"737":["\u0628\u0631\u0627\u06cc \u003Cbr /\u003E\u003Cstrong\u003E%s\u003C/strong\u003E \u0631\u0648\u0632\u003C/div\u003E"],"738":["\u0628\u0631\u0627\u06cc\u003Cbr /\u003E\u003Cstrong\u003E\u0646\u0627\u0645\u062d\u062f\u0648\u062f\u003C/strong\u003E \u0631\u0648\u0632\u003C/div\u003E"],"739":["\u0631\u0627\u06cc\u06af\u0627\u0646"],"740":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646"],"741":["\u0641\u0631\u0627\u0646\u0633\u0648\u06cc"],"742":["\u062c\u0645\u0639\u0647"],"743":["\u0627\u0632"],"744":["\u0627\u0632 \u0634\u0645\u0627\u0631\u0647"],"745":["\u0627\u0632:"],"746":["\u062f\u0631\u0648\u0627\u0632\u0647 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"747":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0639\u0645\u0648\u0645\u06cc"],"748":["\u0633\u0627\u062e\u062a \u0641\u0627\u06cc\u0644 CSV"],"749":["\u0622\u0644\u0645\u0627\u0646\u06cc"],"750":["\u062f\u0631\u06cc\u0627\u0641\u062a \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"751":["\u062f\u0631\u06cc\u0627\u0641\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"752":["\u06a9\u0644\u06cc\u062f API \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u062e\u0648\u062f \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0646\u06cc\u062f."],"753":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0634\u062a\u0631\u06cc \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u062e\u0648\u062f\u060c \u0645\u0646\u0648\u06cc \u0628\u0631\u0646\u0627\u0645\u0647 \u0647\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0646\u06cc\u062f."],"754":["\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0642\u0628\u0644\u06cc"],"755":["\u0628\u0631\u0648 \u0628\u0647 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 &rarr;"],"756":["\u0631\u0641\u062a\u0646 \u0628\u0647 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a"],"757":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u06af\u0648\u06af\u0644"],"758":["\u06af\u0648\u06af\u0644 \u067e\u0644\u0627\u0633"],"759":["\u0641\u0631\u0648\u0634 \u0646\u0627\u062e\u0627\u0644\u0635"],"760":["\u0645\u062d\u0635\u0648\u0644 \u06af\u0631\u0648\u0647"],"761":["\u06af\u0631\u0648\u0647 \u0628\u0646\u062f\u06cc \u0634\u062f\u0647"],"762":["\u06af\u0631\u0648\u0647 \u0628\u0646\u062f\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"763":["\u0645\u0634\u0627\u0648\u0631\u0647 \u0645\u0647\u0645\u0627\u0646 "],"764":["\u062f\u0627\u0631\u0627\u06cc \u0627\u0641\u0631\u0627\u062f"],"765":["\u062f\u0627\u0631\u0627\u06cc \u0645\u0648\u062c\u0648\u062f\u06cc"],"766":["\u0634\u0627\u062f \u0628\u0627\u0634\u06cc\u062f!"],"767":["\u0627\u0631\u062a\u0641\u0627\u0639 (%s) "],"768":["\u0633\u0644\u0627\u0645  %s"],"769":["\u0633\u0644\u0627\u0645,"],"770":["\u0633\u0644\u0627\u0645 \u060c"],"771":["\u0633\u0644\u0627\u0645"],"772":["\u0633\u0644\u0627\u0645 "],"773":["\u0633\u0644\u0627\u0645! \u0641\u0627\u06cc\u0644 CSV \u062d\u0627\u0648\u06cc \u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a\u06cc \u0645\u0631\u06a9\u0632 \u062e\u062f\u0645\u0627\u062a \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f. \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0628\u0627 \u067e\u0633\u0648\u0646\u062f csv \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0648 \u06a9\u0644\u06cc\u062f \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0648 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0631\u0627 \u0628\u0632\u0646\u06cc\u062f. "],"774":["\u0633\u0644\u0627\u0645\u060c"],"775":["\u0633\u0644\u0627\u0645\u060c %s"],"776":["\u067e\u0646\u0647\u0627\u0646"],"777":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0634\u062a\u0631\u06cc"],"778":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0631\u062f\u0627\u0634\u062a"],"779":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u0631\u0641\u062a\u0647"],"780":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u0634\u062a\u0631\u06cc \u0631\u0627 \u0627\u0632 \u062c\u0632\u0626\u06cc\u0627\u062a \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u067e\u0646\u0647\u0627\u0646 \u06a9\u0646\u06cc\u062f"],"781":["\u0645\u062e\u0641\u06cc \u06a9\u0631\u062f\u0646 \u06af\u0632\u06cc\u0646\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u062c\u0647 (\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0647 \u0637\u0648\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0631\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u0645\u06cc\u200c\u06a9\u0646\u062f)"],"782":["\u0633\u0627\u0639\u062a(\u0647\u0627)"],"783":["\u0686\u0646\u062f \u0628\u0627\u0631 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u06a9\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"784":["\u0686\u0646\u062f \u0628\u0627\u0631 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0647\u0631 \u0645\u0634\u062a\u0631\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"785":["\u0686\u06af\u0648\u0646\u0647 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u0645 \u0628\u0647 \u0634\u0645\u0627 \u06a9\u0645\u06a9 \u06a9\u0646\u0645\u061f"],"786":["\u0686\u0642\u062f\u0631 (\u066a) \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0632 \u0647\u0631 \u0633\u0641\u0627\u0631\u0634 \u062f\u0631\u06cc\u0627\u0641\u062a \u0645\u06cc \u06a9\u0646\u06cc\u062f\u060c \u0627\u06af\u0631 \u0634\u0645\u0627 \u0647\u06cc\u0686 \u062a\u062e\u0645 \u0645\u0631\u063a\u06cc \u0631\u0627 \u0627\u0639\u0645\u0627\u0644 \u0646\u06a9\u0646\u06cc\u062f\u060c \u062e\u0627\u0644\u06cc (\u0646\u0647 \u201c0\u201d) "],"787":["\u0645\u0646 \u06cc\u06a9 \u0645\u0634\u062a\u0631\u06cc \u0647\u0633\u062a\u0645"],"788":["\u0645\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0647\u0633\u062a\u0645"],"789":["\u0645\u0646 \u062e\u0648\u0627\u0646\u062f\u0647 \u0648 \u0642\u0628\u0648\u0644 \u0628\u0647 \u003Ca target=\"_blank\" href=\"%s\"\u003E\u0642\u0648\u0627\u0646\u06cc\u0646 &amp; \u0634\u0631\u0627\u06cc\u0637\u003C/a\u003E."],"790":["\u0622\u06cc\u062f\u06cc"],"791":["\u0634\u0646\u0627\u0633\u0647 %d"],"792":["\u062a\u0627\u06cc\u06cc\u062f \u0634\u0646\u0627\u0633\u0647"],"793":["\u0634\u0646\u0627\u0633\u0647: "],"794":["\u067e\u0631\u062f\u0627\u062e\u062a IPN \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"795":["\u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a."],"796":["\u067e\u0627\u06cc\u0627\u0646 \u062f\u0648\u0631\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634."],"797":["\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a. txn_id #%s"],"798":["\u0641\u0631\u0645 \u0631\u0633\u06cc\u062f \u062b\u0628\u062a \u0646\u0627\u0645 \u0634\u0645\u0627 \u06a9\u0646\u0633\u0644 \u0634\u062f "],"799":["\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f."],"800":["\u0639\u0636\u0648\u06cc\u062a \u0627\u0634\u062a\u0631\u0627\u06a9 IPN \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a."],"801":["\u0627\u06af\u0631 \u06cc\u06a9 \u0645\u0634\u062a\u0631\u06cc \u0627\u0642\u062f\u0627\u0645 \u0628\u0647 \u062e\u0631\u06cc\u062f \u06a9\u0627\u0644\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u06cc\u06a9 \u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u0627\u0632 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f\u060c \u0627\u0648\u0644\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0627\u0632 \u0647\u0631 \u0646\u0648\u0639 \u062f\u0648\u0645 \u0628\u0627 \u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u0634\u0627\u0631\u0698 \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"802":[" \u0627\u06af\u0631 \u0645\u062d\u0635\u0648\u0644 \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0645\u0637\u0627\u0628\u0642 \u0645\u062d\u0635\u0648\u0644 \u0645\u0648\u062c\u0648\u062f \u0628\u0627 ID \u06cc\u0627 SKU \u0628\u0627\u0634\u062f\u060c \u0628\u0647 \u062c\u0627\u06cc \u0627\u06cc\u062c\u0627\u062f \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u06cc\u0627 \u0631\u062f \u0634\u062f\u0646 \u0627\u0632 \u0622\u0646\u060c \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f. "],"803":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646\u060c \u06af\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0628\u0631\u0627\u06cc \u067e\u0630\u06cc\u0631\u0634 \u0628\u06cc\u062a \u06a9\u0648\u06cc\u0646 \u0628\u0631\u0631\u0648\u06cc \u0645\u0648\u062f\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f. \u0646\u06a9\u062a\u0647: \u0628\u0627\u06cc\u062f \u062a\u0623\u06cc\u06cc\u062f \u0635\u062d\u062a \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u0648 \u067e\u0648\u0644 \u0631\u0627 \u0628\u0631\u0627\u06cc USD \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f. "],"804":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646\u060c \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u06cc\u06a9 \u062f\u06a9\u0645\u0647 \"\u067e\u0631\u062f\u0627\u062e\u062a\" \u0648 \u0641\u0631\u0645 \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u0645\u0648\u062f\u0627\u0644 \u0631\u0627 \u062f\u0631 \u067e\u0631\u062f\u0627\u062e\u062a\u060c \u0628\u0647 \u062c\u0627\u06cc \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u0628\u0647 \u0637\u0648\u0631 \u0645\u0633\u062a\u0642\u06cc\u0645 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0634\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f."],"805":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646\u060c \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0628\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0627\u0631\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u062f\u0631 \u0632\u0645\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc\u062a\u0648\u0627\u0646\u0646\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u0646\u062f. \u062c\u0632\u0626\u06cc\u0627\u062a \u06a9\u0627\u0631\u062a \u062f\u0631 \u0633\u0631\u0648\u0631 Stripe \u0630\u062e\u06cc\u0631\u0647 \u0645\u06cc \u0634\u0648\u062f\u060c \u0646\u0647 \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627."],"806":["\u0627\u06af\u0631 \u0642\u0627\u0628\u0644 \u0631\u0632\u0631\u0648 \u0646\u0628\u0627\u0634\u062f\u060c \u06a9\u0627\u0631\u0628\u0631 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0628\u0644\u0627\u06a9 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0631\u0632\u0631\u0648\u0634\u0627\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u0646\u062f."],"807":["\u0627\u06af\u0631 \u062a\u0646\u0638\u06cc\u0645 \u0634\u0648\u062f\u060c \u0646\u0631\u062e \u06a9\u0645\u0633\u06cc\u0648\u0646 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u062a\u0627\u0633\u0631\u06cc \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u062f\u0633\u062a\u0647 \u0631\u0627 \u0628\u0631\u0637\u0631\u0641 \u0645\u06cc \u06a9\u0646\u062f"],"808":["\u0627\u06af\u0631 \u0642\u06cc\u0645\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0647\u0645\u0647 \u06a9\u0634\u0648\u0631\u0647\u0627\u06cc \u06cc\u06a9\u0633\u0627\u0646  \u0627\u0633\u062a\u060c \u0627\u0632 \u0627\u06cc\u0646 \u0641\u06cc\u0644\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f. \u0627\u06af\u0631 \u0646\u0647\u060c \u062f\u0633\u062a\u06cc \u06a9\u0634\u0648\u0631\u0647\u0627\u06cc \u0632\u06cc\u0631 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"809":["\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f \u0648 \u0627\u06af\u0631 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u06a9\u0648\u067e\u0646 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u062f\u060c \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646 \u0631\u0627 \u0641\u0639\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f."],"810":["\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u06a9\u0648\u067e\u0646 \u062a\u0646\u0647\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0628\u0647 \u0635\u0648\u0631\u062a \u062c\u062f\u0627\u06af\u0627\u0646\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u0648\u062f. \u06a9\u0648\u067e\u0646 \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 \u0627\u0639\u0645\u0627\u0644 \u0634\u062f\u0647 \u0627\u0632 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u062d\u0630\u0641 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f."],"811":["\u0627\u06af\u0631 \u062f\u0631\u0633\u062a \u0628\u0627\u0634\u062f\u060c \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0627\u0642\u0644\u0627\u0645\u06cc \u06a9\u0647 \u062f\u0627\u0631\u0627\u06cc \u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634 \u0647\u0633\u062a\u0646\u062f \u0627\u0639\u0645\u0627\u0644 \u0646\u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"812":["\u0627\u06af\u0631 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0631\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u0646\u0637\u0642\u0647 \u0627\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f"],"813":["\u0627\u06af\u0631 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0632 \u0633\u06cc\u0633\u062a\u0645 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0642\u0628\u0644\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"814":["\u0639\u06a9\u0633"],"815":["\u06af\u0627\u0644\u0631\u06cc \u0639\u06a9\u0633"],"816":["\u062a\u0635\u0627\u0648\u06cc\u0631"],"817":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc"],"818":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc CSV"],"819":["\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"820":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc XML"],"821":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 "],"822":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0631\u0633\u06cc\u062f - \u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a\u06cc %s \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u0634\u062f\u0646\u062f . "],"823":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f!"],"824":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u062e\u062f\u0645\u0627\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 CSV "],"825":["\u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a \u0648\u0627\u0631\u062f\u0627\u062a\u06cc "],"826":["\u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc"],"827":["\u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0627\u0646\u0628\u0627\u0631"],"828":["\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632 \u0628\u0627\u06cc\u062f \u0622\u0646 \u0631\u0627 \u062a\u062d\u062a \u06a9\u0646\u062a\u0631\u0644 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f\u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f \u003C/a\u003E"],"829":["\u062f\u0631 \u0647\u0631  %d %s (.)"],"830":["\u062f\u0631 \u0647\u0631  %d %s (.) "],"831":["\u0642\u0627\u0628\u0644 \u0641\u0631\u0648\u0634"],"832":["\u062f\u0631 \u0627\u0646\u0628\u0627\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a "],"833":["\u062f\u0631 \u0627\u06cc\u0646 \u0646\u0648\u0639 \u062d\u0631\u0627\u062c\u060c \u0647\u0645\u0647 \u062f\u0627\u0648\u0637\u0644\u0628\u0627\u0646 \u0628\u0647 \u0637\u0648\u0631 \u0647\u0645\u0632\u0645\u0627\u0646 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u0627\u062a \u0645\u0647\u0631 \u0648 \u0645\u0648\u0645 \u0631\u0627 \u0627\u0631\u0627\u0626\u0647 \u0645\u06cc \u062f\u0647\u0646\u062f \u062a\u0627 \u0647\u06cc\u0686 \u06cc\u06a9 \u0627\u0632 \u0637\u0631\u0641\u06cc\u0646 \u0627\u0639\u0644\u0627\u0645 \u0642\u06cc\u0645\u062a \u0647\u0631 \u0634\u0631\u06a9\u062a \u06a9\u0646\u0646\u062f\u0647 \u062f\u06cc\u06af\u0631 \u0631\u0627 \u0646\u0645\u06cc \u062f\u0627\u0646\u0646\u062f. \u0628\u0627\u0644\u0627\u062a\u0631\u06cc\u0646 \u0642\u06cc\u0645\u062a \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u0646\u062f\u0647 \u0642\u06cc\u0645\u062a \u0631\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u06a9\u0646\u062f. \u0627\u06af\u0631 \u062f\u0648 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0628\u0627 \u0647\u0645\u0627\u0646 \u0627\u0631\u0632\u0634 \u0628\u0631\u0627\u06cc \u062d\u0631\u0627\u062c \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0647 \u0634\u0648\u062f\u060c \u0622\u0646 \u0686\u06cc\u0632\u06cc \u06a9\u0647 \u0642\u0631\u0627\u0631 \u0628\u0648\u062f \u0627\u0648\u0644 \u0628\u0631\u0646\u062f\u0647 \u0634\u0648\u062f. "],"834":["\u062f\u0631 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a "],"835":["\u0635\u0646\u062f\u0648\u0642"],"836":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a"],"837":["\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0634\u0646\u0627\u0633\u0647 \u0627\u067e"],"838":["\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0633\u06cc\u06a9\u0631\u062a \u0627\u067e"],"839":["\u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u0622\u062f\u0631\u0633 \u0641\u0627\u06cc\u0644"],"840":["\u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 \u0628\u0631\u062e\u06cc \u0627\u0632 \u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc \u06a9\u0647 \u0628\u0627 \u06a9\u0627\u0645\u0627 \u0622\u0646 \u0647\u0627 \u0631\u0627 \u0627\u0632 \u0647\u0645 \u062c\u062f\u0627 \u06a9\u0646\u06cc\u062f \u0648 \u0627\u06cc\u0646 \u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc \u0628\u0627\u0639\u062b \u0628\u0647\u062a\u0631 \u0634\u062f\u0646 \u0631\u062a\u0628\u0647 \u0628\u0646\u062f\u06cc \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0645\u06cc \u0634\u0648\u062f."],"841":["\u062f\u0631\u0648\u0646 \u062a\u0628 \u0645\u062d\u0635\u0648\u0644"],"842":["\u0646\u0635\u0628 \u0635\u0641\u062d\u0647 \u062f\u06a9\u0627\u0646 "],"843":["\u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u0646\u0635\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f"],"844":["\u0628\u0633\u062a\u0646 \u0641\u0648\u0631\u06cc"],"845":["\u0634\u0646\u0627\u0633\u0647 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"846":["\u0634\u0646\u0627\u0633\u0647 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"847":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u0628\u0639 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"848":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0646\u0627\u0645\u0639\u062a\u0628\u0631. \u0644\u0637\u0641\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"849":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc \u06cc\u0627 \u0631\u0645\u0632 \u0639\u0628\u0648\u0631 \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a"],"850":["\u06a9\u0627\u0631\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"851":["\u0646\u0648\u0639 \u0641\u0627\u06cc\u0644 \u063a\u06cc\u0631 \u0645\u062c\u0627\u0632 \u0627\u0633\u062a"],"852":["\u0646\u0648\u0639 \u0641\u0627\u06cc\u0644 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a. \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0641\u0631\u0645\u062a\u200c\u0647\u0627 \u0627\u0632 \u0641\u0627\u06cc\u0644 CSV \u0648 TXT \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f."],"853":["\u0645\u0627\u0698\u0648\u0644 \u0627\u0631\u0627\u0626\u0647 \u0634\u062f\u0647 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"854":["\u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u0642\u0628\u0648\u0644"],"855":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644 %d \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"856":["\u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u0646\u0627\u0645\u0639\u062a\u0628\u0631. "],"857":["\u0645\u0642\u062f\u0627\u0631 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631"],"858":["\u0646\u0648\u0639 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"859":["\u067e\u0627\u0633\u062e \u0646\u0627\u062f\u0631\u0633\u062a"],"860":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0646\u0627\u0645\u0639\u062a\u0628\u0631. \u0644\u0637\u0641\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"861":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"862":["\u0622\u06cc\u0627 \u06cc\u06a9 \u0648\u06cc\u0698\u06af\u06cc \u062c\u0647\u0627\u0646\u06cc \u0627\u0633\u062a\u061f "],"863":["\u0648\u06cc\u0698\u0647 \u0627\u0633\u062a\u061f"],"864":["\u003Cstrong\u003E \u0628\u0647 \u0634\u062f\u062a \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc \u0634\u0648\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u062f\u0647\u06cc\u062f  \u003Cstrong/\u003E \u0627\u06af\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0647\u0627\u06cc \u0641\u0639\u0627\u0644 \u0628\u0627 PayPal \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f. \u0627\u0646\u062c\u0627\u0645 \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0634\u062a\u0631\u0627\u06a9 \u0647\u0627\u06cc \u0641\u0639\u0644\u06cc \u0631\u0627 \u0627\u0632 \u0628\u06cc\u0646 \u0628\u0628\u0631\u062f."],"865":["\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627\u06cc\u06cc"],"866":["\u0645\u062d\u0635\u0648\u0644"],"867":["\u0645\u0642\u062f\u0627\u0631 \u0645\u0648\u0631\u062f"],"868":["\u0645\u062c\u0645\u0648\u0639 \u0645\u0648\u0631\u062f"],"869":["\u0648\u0636\u0639\u06cc\u062a \u0622\u06cc\u062a\u0645"],"870":["\u0645\u0648\u0627\u0631\u062f \u0641\u0631\u0648\u062e\u062a\u0647 \u0634\u062f\u0647"],"871":["\u0698\u0627\u0646\u0648\u06cc\u0647"],"872":["\u0698\u0627\u067e\u0646\u06cc"],"873":["\u062c\u0648\u0644\u0627\u06cc"],"874":["\u0698\u0648\u0626\u0646"],"875":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062c\u0633\u062a\u062c\u0648 \u06a9\u0646\u06cc\u062f..."],"876":["\u0628\u0631\u0686\u0633\u0628"],"877":["\u0632\u0628\u0627\u0646 \u0628\u0631\u0627\u06cc \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0646 \u062e\u0637 \u0645\u0634\u06cc \u0645\u062f\u0631\u06a9 Checkout. \u0628\u0631\u0627\u06cc \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0632\u0628\u0627\u0646 \u062f\u0644\u062e\u0648\u0627\u0647 \u06a9\u0627\u0631\u0628\u0631\u060c \u0627\u06af\u0631 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0628\u0627\u0634\u062f\u060c Auto \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f. \u0627\u0646\u06af\u0644\u06cc\u0633\u06cc \u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f."],"878":["\u0622\u062e\u0631\u06cc\u0646 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"879":["\u0646\u0627\u0645 \u062e\u0644\u0627\u0646\u0648\u0627\u062f\u06af\u06cc"],"880":["\u0646\u0627\u0645 \u062e\u0627\u0646\u0648\u0627\u062f\u06af\u06cc \u0627\u0644\u0632\u0627\u0645\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f"],"881":["\u0622\u062e\u0631\u06cc\u0646 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"882":["\u0628\u06cc\u0634\u062a\u0631 \u0628\u062f\u0627\u0646\u06cc\u062f"],"883":["\u067e\u0627\u0633\u062e \u062f\u0647\u06cc\u062f"],"884":["\u0628\u0631\u0627\u06cc \u0646\u0627\u0645\u062d\u062f\u0648\u062f\u0646 \u0628\u0648\u062f\u0646 \u062f\u0627\u0646\u0644\u0648\u062f \u0645\u062c\u062f\u062f \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627 \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f"],"885":["\u0637\u0648\u0644 (%s)"],"886":["\u0628\u0647 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062c\u0627\u0632\u0647 \u0645\u06cc\u200c\u062f\u0647\u062f \u06cc\u06a9 \u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u0648 \u067e\u0627\u06cc\u0627\u0646 \u062f\u0631 \u062a\u0642\u0648\u06cc\u0645 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u062f - \u0645\u062f\u062a \u0632\u0645\u0627\u0646 \u0628\u0647 \u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0645\u062d\u0627\u0633\u0628\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"887":["\u0628\u0647 \u0634\u0645\u0627 \u0627\u0645\u06a9\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f \u062a\u0627 \u0646\u0631\u062e \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f"],"888":["\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632"],"889":["\u0628\u0633\u062a\u0647 \u0646\u0627\u0645\u062d\u062f\u0648\u062f."],"890":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062f\u062a"],"891":["\u0646\u062a\u06cc\u062c\u0647 \u0645\u062d\u062f\u0648\u062f \u0628\u0631\u0627\u06cc \u0645\u0646\u0627\u0628\u0639 \u0628\u0627 \u06cc\u06a9 \u06a9\u062f \u062e\u0627\u0635 \u062a\u0646\u0638\u06cc\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a."],"892":["\u0645\u062d\u062f\u0648\u062f\u0633\u0627\u0632\u06cc \u0645\u0648\u0642\u0639\u06cc\u062a \u0645\u0646\u0637\u0642\u0647"],"893":["\u0644\u06cc\u0646\u06a9 \u0628\u0647"],"894":["\u0644\u06cc\u0646\u06a9 \u062a\u0645\u0627\u0645 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"895":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u0631\u062a\u0628\u0637"],"896":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u0644\u06cc\u0646\u06a9\u062f\u06cc\u0646"],"897":["\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u062f\u0633\u062a\u0647 \u0627\u06cc \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0622\u0646 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f."],"898":["\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u062f\u0633\u062a\u0647 \u0627\u06cc \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0622\u0646 \u0627\u0639\u0645\u0627\u0644 \u0646\u0645\u06cc \u0634\u0648\u062f."],"899":["\u0644\u06cc\u0633\u062a \u0622\u062f\u0631\u0633 \u0647\u0627\u06cc \u0627\u06cc\u0645\u06cc\u0644 \u06a9\u0647 \u0645\u06cc \u062a\u0648\u0627\u0646\u0646\u062f \u0627\u0632 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u0646\u062f."],"900":["\u0644\u06cc\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"901":["\u0644\u06cc\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f."],"902":["\u0641\u0647\u0631\u0633\u062a \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc (\u06cc\u0627 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627\u06cc \u0645\u0647\u0645\u0627\u0646) \u06a9\u0647 \u0627\u0632 \u06a9\u0648\u067e\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f\u0647 \u0627\u0646\u062f."],"903":["\u06af\u0641\u062a\u06af\u0648\u06cc \u0632\u0646\u062f\u0647"],"904":["\u062c\u0633\u062a\u062c\u0648\u06cc \u067e\u0648\u06cc\u0627"],"905":["\u0627\u0639\u062a\u0628\u0627\u0631\u0646\u0627\u0645\u0647 \u0647\u0627\u06cc \u0632\u0646\u062f\u0647"],"906":["\u0648\u0627\u0646\u062a \u0645\u062d\u0644\u06cc"],"907":["\u0645\u062d\u0644 \u0633\u06a9\u0648\u0646\u062a \u06a9\u0647 \u062f\u0631 \u0622\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0628\u0631\u0627\u06cc \u062a\u062d\u0648\u06cc\u0644 \u062d\u0645\u0644 \u0645\u06cc \u0634\u0648\u062f. \u0645\u0639\u0645\u0648\u0644\u0627 \u0628\u0627 \u0622\u062f\u0631\u0633 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u06cc\u06a9\u0633\u0627\u0646 \u0627\u0633\u062a."],"908":["\u0648\u0631\u0648\u062f \u0631\u0648\u06cc\u062f\u0627\u062f\u0647\u0627\u06cc \u067e\u06cc \u067e\u0627\u0644\u060c \u0645\u0627\u0646\u0646\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a IPN\u060c \u062f\u0631 \u062f\u0627\u062e\u0644 \u003Ccode\u003Ewoocommerce/logs/paypal-%s.txt\u003C/code\u003E "],"909":["\u0648\u0627\u0631\u062f\u0647 \u0634\u062f\u0647"],"910":["\u0648\u0631\u0648\u062f"],"911":["\u0646\u06a9\u062a\u0647 \u0648\u0631\u0648\u062f"],"912":["\u062e\u0631\u0648\u062c \u0627\u0632 \u0633\u06cc\u0633\u062a\u0645"],"913":["\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646"],"914":["\u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646"],"915":["\u0648\u0636\u0639\u06cc\u062a \u062d\u0631\u0627\u062c \u0631\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062b\u0628\u062a \u0634\u062f\u0647 \u062c\u062f\u06cc\u062f \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f "],"916":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0631\u0632\u0631\u0648"],"917":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062f\u0633\u062a\u0631\u0633\u06cc \u0647\u0627"],"918":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u06a9\u0627\u0646 \u0647\u0627"],"919":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc\u061f"],"920":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627 "],"921":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627 \u0648 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627 \u0645\u062a\u063a\u06cc\u0631 \u0627\u0633\u062a."],"922":["\u0648\u06cc\u0698\u06af\u06cc \u0647\u0627\u06cc \u0627\u06cc\u0646 \u062d\u0631\u0627\u062c \u0631\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u06a9\u0646\u06cc\u062f "],"923":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0633\u0627\u062f\u0647 \u0627\u0633\u062a."],"924":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062a\u0642\u0648\u06cc\u0645 \u0631\u0632\u0631\u0648"],"925":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0632\u0631\u0648"],"926":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0646\u0627\u0628\u0639 \u0631\u0632\u0631\u0648"],"927":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0631\u0632\u0631\u0648\u0647\u0627"],"928":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u06a9\u0627\u0631\u062a"],"929":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0648 \u0645\u0627\u0644\u06cc\u0627\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u0632\u0627\u06cc\u062f\u0647"],"930":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0648 \u0645\u0627\u0644\u06cc\u0627\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627"],"931":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc\u061f"],"932":["\u0645\u062f\u06cc\u0631\u06cc\u062a \u062a\u06cc\u06a9\u062a  \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"933":["\u062f\u0627\u062f\u0647\u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u062e\u0648\u062f \u0631\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u06a9\u0646\u06cc\u062f "],"934":["\u0646\u0642\u0634\u0647 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc CSV \u0628\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a "],"935":["\u0646\u0642\u0634\u0647 \u0628\u0647 \u0641\u06cc\u0644\u062f "],"936":["\u0645\u0627\u0631\u0633"],"937":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u067e\u0630\u06cc\u0631\u0641\u062a\u0646"],"938":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0647\u0631\u0632\u0646\u0627\u0645\u0647 \u0646\u06cc\u0633\u062a"],"939":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"940":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0647\u0631\u0632\u0646\u0627\u0645\u0647"],"941":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0632\u0628\u0627\u0644\u0647"],"942":["\u0639\u0644\u0627\u0645\u062a \u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0644\u063a\u0648 \u0634\u062f\u0647"],"943":["\u0628\u06cc\u0634\u062a\u0631\u06cc\u0646"],"944":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0631\u0632\u0631\u0648 \u062f\u0631 \u0647\u0631 \u0628\u0644\u0627\u06a9"],"945":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0645\u0648\u0627\u0631\u062f \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u06a9\u0647 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u0628\u0647 \u0622\u0646 \u0627\u0639\u0645\u0627\u0644 \u06a9\u0631\u062f."],"946":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0627\u0641\u0631\u0627\u062f"],"947":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u067e\u0646\u062c\u0631\u0647 \u0631\u0632\u0631\u0648 (\u062f\u0631 \u0622\u06cc\u0646\u062f\u0647)"],"948":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0645\u062f\u062a \u0632\u0645\u0627\u0646"],"949":["\u0645\u0642\u062f\u0627\u0631 \u062d\u062f\u0627\u06a9\u062b\u0631 \u0633\u0641\u0627\u0631\u0634 \u06a9\u0647 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0648\u067e\u0646 \u0645\u062c\u0627\u0632 \u0627\u0633\u062a."],"950":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0627\u0646\u062f\u0627\u0632\u0647: %s"],"951":["\u0645\u06cc"],"952":["\u067e\u06cc\u0627\u0645"],"953":["\u067e\u06cc\u063a\u0627\u0645:"],"954":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0645\u062a\u0627 :"],"955":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u0627."],"956":["\u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc \u0645\u062a\u0627:"],"957":["\u062f\u0627\u062f\u0647 \u0647\u0627\u06cc \u0645\u062a\u0627."],"958":["\u06a9\u0644\u06cc\u062f \u0645\u062a\u0627."],"959":["\u0645\u0642\u062f\u0627\u0631 \u0645\u062a\u0627."],"960":["\u0645\u062a\u0627: %s"],"961":["\u0639\u0646\u0648\u0627\u0646 \u0631\u0648\u0634"],"962":["\u0631\u0648\u0634 \u0641\u0639\u0627\u0644 \u06cc\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06a9\u0627\u0631 \u0646\u0645\u06cc \u06a9\u0646\u062f"],"963":["\u0639\u0646\u0648\u0627\u0646 \u0631\u0648\u0634"],"964":["\u062d\u062f\u0627\u0642\u0644"],"965":["\u062d\u062f\u0627\u0642\u0644 \u0634\u062e\u0635"],"966":["\u062d\u062f\u0627\u0642\u0644 \u0645\u0642\u062f\u0627\u0631"],"967":["\u062d\u062f\u0627\u0642\u0644 \u0645\u06cc\u0632\u0627\u0646 \u0633\u0641\u0627\u0631\u0634"],"968":["\u062d\u062f\u0627\u0642\u0644 \u067e\u0646\u062c\u0631\u0647 \u0631\u0632\u0631\u0648 (\u062f\u0631 \u0622\u06cc\u0646\u062f\u0647)"],"969":["\u062d\u062f\u0627\u0642\u0644 \u0645\u062f\u062a \u0632\u0645\u0627\u0646"],"970":["\u062d\u062f\u0627\u0642\u0644 \u0645\u0628\u0644\u063a \u0628\u0631\u0627\u06cc \u0627\u0631\u0633\u0627\u0644 \u0631\u0627\u06cc\u06af\u0627\u0646"],"971":["\u0645\u0642\u062f\u0627\u0631 \u062d\u062f\u0627\u0642\u0644 \u0633\u0641\u0627\u0631\u0634 \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0648\u067e\u0646 \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0628\u0627\u0634\u062f."],"972":["\u062d\u062f\u0627\u0642\u0644 \u0645\u0642\u062f\u0627\u0631 \u06a9\u0644 \u0633\u0641\u0627\u0631\u0634 0.50 \u0627\u0633\u062a."],"973":["\u06a9\u0645\u062a\u0631\u06cc\u0646 \u0645\u0642\u062f\u0627\u0631"],"974":["\u062f\u0642\u06cc\u0642\u0647"],"975":["\u0632\u0645\u0627\u0646\u200c\u0628\u0646\u062f\u06cc \u0627\u0632 \u062f\u0633\u062a\u200c \u0631\u0641\u062a\u0647"],"976":["\u062d\u0627\u0644\u062a"],"977":["\u0628\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0631\u062f\u0646 \u0628\u0631 \u0631\u0648\u06cc \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E\u060c \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0645\u062f\u064a\u0631\u064a\u062a \u06a9\u0646\u064a\u062f"],"978":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0698\u0648\u0644"],"979":["\u0645\u0627\u0698\u0648\u0644 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a."],"980":["\u0645\u0627\u0698\u0648\u0644 \u0647\u0627"],"981":["\u062f\u0648\u0634\u0646\u0628\u0647"],"982":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0627\u0647"],"983":["\u0645\u0627\u0647 \u0647\u0627)"],"984":["\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0647 \u0633\u0637\u0644 \u0632\u0628\u0627\u0644\u0647"],"985":["\u0686\u0646\u062f\u06cc\u0646"],"986":["\u062a\u0642\u0633\u06cc\u0645 \u0647\u0645\u0647 \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0628\u0648\u0633\u06cc\u0644\u0647 \u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f"],"987":["\u062e\u0627\u0644\u06cc"],"988":["\u0646\u0627\u0645"],"989":["\u0646\u0627\u0645"],"990":["\u06a9\u0627\u0631\u062a \u0634\u0646\u0627\u0633\u0647 \u0628\u06cc\u0646 \u0627\u0644\u0645\u0644\u0644\u06cc"],"991":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u06a9\u0645\u06a9 \u062f\u0627\u0631\u06cc\u062f\u061f"],"992":["\u0647\u06cc\u0686 \u0648\u0642\u062a"],"993":["\u062c\u062f\u06cc"],"994":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u062c\u062f\u06cc\u062f"],"995":["\u0627\u0639\u0644\u0627\u0645 \u062c\u062f\u06cc\u062f - {title}"],"996":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f"],"997":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u0627\u0632 {seller_name}"],"998":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634 \u062c\u062f\u06cc\u062f \u0627\u0631\u0633\u0627\u0644 \u0634\u062f"],"999":["\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0633\u062a"],"1000":["\u062d\u0631\u0627\u062c \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 {seller_name} \u0627\u0636\u0627\u0641\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1001":["\u0627\u06cc\u0645\u06cc\u0644\u200c\u0647\u0627\u06cc \u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u0628\u0647 \u0645\u062f\u06cc\u0631 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc\u200c\u0634\u0648\u062f \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0631\u0632\u0631\u0648 \u062c\u062f\u06cc\u062f \u0627\u06cc\u062c\u0627\u062f \u0648 \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0648\u062f. \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u062f\u0631\u06cc\u0627\u0641\u062a \u0645\u06cc\u200c\u0634\u0648\u062f \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u062a\u0627\u06cc\u06cc\u062f \u0631\u0632\u0631\u0648 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0627\u0633\u062a."],"1002":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u0628\u0631\u0627\u06cc \u0633\u0641\u0627\u0631\u0634 #"],"1003":["\u0646\u0638\u0631 \u062c\u062f\u06cc\u062f"],"1004":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062c\u062f\u06cc\u062f \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0631\u0627\u062c "],"1005":["\u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0647\u0627\u06cc \u0628\u0631\u0646\u0627\u0645\u0647 Nexmo"],"1006":["\u0628\u0639\u062f\u06cc "],"1007":["\u0628\u0639\u062f\u06cc &raquo;"],"1008":["\u0628\u0639\u062f\u06cc &rarr;"],"1009":["\u062e\u06cc\u0631"],"1010":["\u0647\u06cc\u0686 \u0645\u0642\u062f\u0627\u0631\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1011":["\u0627\u0639\u0644\u0627\u0646\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1012":["\u0647\u06cc\u0686 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1013":["\u0647\u06cc\u0686 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc \u062f\u0631 \u0633\u0637\u0644 \u0632\u0628\u0627\u0644\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1014":["\u0647\u06cc\u0686 \u0631\u0632\u0631\u0648\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1015":["\u0646\u06a9\u062a\u0647 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a."],"1016":["\u0633\u0641\u0627\u0631\u0634 \u062f\u0631\u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1017":["\u0647\u0646\u0648\u0632 \u0627\u0645\u062a\u06cc\u0627\u0632\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"1018":["\u0645\u0648\u062c\u0648\u062f\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1019":["\u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f!"],"1020":["\u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1021":["\u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1022":["\u0647\u06cc\u0686 \u0646\u0642\u062f \u0648\u0628\u0631\u0631\u0633\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1023":["\u0647\u06cc\u0686 \u0628\u0631\u0646\u0627\u0645\u0647 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062a\u0648\u0633\u0637 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u0628\u0633\u0627\u06cc\u062a \u062a\u0646\u0638\u06cc\u0645 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"1024":["\u0647\u06cc\u0686 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1025":["\u0647\u06cc\u0686 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"1026":["\u0647\u06cc\u0686 \u0634\u0646\u0627\u0633\u0647 \u0627\u0639\u0644\u0627\u0646\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1027":["\u0622\u062f\u0631\u0633 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a"],"1028":["\u0647\u06cc\u0686 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"1029":["\u06a9\u062f \u062a\u062e\u0641\u06cc\u0641\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f!"],"1030":["\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1031":["\u0628\u062f\u0648\u0646 \u067e\u06cc\u0634\u0641\u0631\u0636"],"1032":["\u0647\u06cc\u0686 \u0645\u0648\u062c\u0648\u062f\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u060c \u0644\u0637\u0641\u0627\u064b \u06cc\u06a9 \u0645\u0648\u062c\u0648\u062f\u06cc \u003Ca href='%s'\u003E\u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f\u003C/a\u003E"],"1033":["\u0647\u06cc\u0686 \u0645\u0648\u0631\u062f\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06af\u0631\u0648\u0647\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1034":["\u0645\u0648\u0631\u062f\u06cc \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a"],"1035":["\u0647\u06cc\u0686 \u0645\u062d\u0635\u0648\u0644 \u0645\u0637\u0627\u0628\u0642\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"1036":["\u0647\u06cc\u0686 \u0631\u0648\u0634\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f "],"1037":["\u0645\u0627\u0698\u0648\u0644\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f."],"1038":["\u0634\u0645\u0627\u0631\u0647\u200c \u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647:"],"1039":["\u0647\u06cc\u0686 \u062f\u0633\u062a\u0648\u0631\u0627\u0644\u0639\u0645\u0644\u06cc \u0628\u0627 \u06a9\u0644\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f: %s"],"1040":["\u0647\u06cc\u0686 \u0634\u0646\u0627\u0633\u0647 \u0633\u0641\u0627\u0631\u0634\u06cc \u062a\u0648\u0633\u0637 \u06a9\u0644\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06cc\u0627\u0641\u062a \u0646\u0634\u062f: %s"],"1041":["\u0647\u06cc\u0686 \u0633\u0641\u0627\u0631\u0634\u06cc \u0628\u0631\u0627\u06cc \u067e\u0631\u062f\u0627\u0632\u0634 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f!"],"1042":["\u0628\u062f\u0648\u0646 \u06a9\u0644\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u060c \u0642\u0637\u0639 \u0634\u062f "],"1043":["\u0645\u062d\u0635\u0648\u0644\u06cc  \u06cc\u0627\u0641\u062a \u0646\u0634\u062f!"],"1044":["\u0647\u0646\u0648\u0632 \u0627\u0645\u062a\u06cc\u0627\u0632\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f\u0647 \u0627\u0633\u062a."],"1045":["\u0647\u06cc\u0686 \u062a\u062e\u0641\u06cc\u0641\u06cc \u0628\u0631\u0627\u06cc \u062d\u0630\u0641 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"1046":["\u0647\u06cc\u0686 \u062f\u0631\u062e\u0648\u0627\u0633\u062a\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f."],"1047":["\u0647\u06cc\u0686 \u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1048":["\u0646\u062a\u06cc\u062c\u0647 \u0627\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1049":["\u0647\u06cc\u0686 \u062f\u06cc\u062f\u06af\u0627\u0647\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1050":["\u0647\u06cc\u0686 \u0648\u0636\u0639\u06cc\u062a \u0646\u0642\u062f\u06cc  \u0628\u0631\u0627\u06cc \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0646\u0642\u062f \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1051":["\u0647\u06cc\u0686 \u0641\u0631\u0648\u0634\u0646\u062f\u0647\u200c\u0627\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1052":["\u0628\u062f\u0648\u0646 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1053":["\u0628\u062f\u0648\u0646 \u0647\u0632\u06cc\u0646\u0647 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1054":["\u0647\u06cc\u0686 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644\u06cc \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1055":["\u0647\u06cc\u0686 \u0631\u0627\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u062a\u0646\u0638\u06cc\u0645 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0628\u0627 \u0645\u062f\u06cc\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062e\u0648\u062f \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f"],"1056":["\u0647\u06cc\u0686 \u06a9\u0627\u0631\u0645\u0646\u062f\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1057":["\u0647\u06cc\u0686 \u067e\u06a9\u06cc\u062c \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f!"],"1058":["\u0647\u06cc\u0686 \u062a\u06cc\u06a9\u062a\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f!"],"1059":["\u06a9\u0627\u0631\u0628\u0631\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f!"],"1060":["\u0647\u06cc\u0686 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f! "],"1061":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a\u06cc \u0627\u0636\u0627\u0641\u0647 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"1062":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u06cc \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1063":["\u06a9\u0627\u0631\u0645\u0646\u062f\u06cc \u0645\u062e\u062a\u0635 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1064":["\u0647\u06cc\u0686 \u0641\u0631\u0648\u0634\u0646\u062f\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0648\u0636\u0639\u06cc\u062a \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f"],"1065":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632"],"1066":["\u0634\u0645\u0627\u0631\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 :"],"1067":["\u0639\u062f\u0645 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0648\u0642\u062a"],"1068":["\u0647\u06cc\u0686\u200c\u06cc\u06a9"],"1069":["\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f"],"1070":["\u0646\u0631\u0648\u0698\u06cc"],"1071":["\u0646\u0627 \u0645\u0648\u062c\u0648\u062f"],"1072":["\u0647\u0631\u0632\u0646\u0627\u0645\u0647 \u0646\u06cc\u0633\u062a"],"1073":["\u0642\u0627\u062f\u0631 \u0628\u0647 \u067e\u06cc\u0648\u0633\u062a \"%s\" \u0646\u06cc\u0633\u062a."],"1074":["\u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1075":["\u0686\u06cc\u0632\u06cc \u062f\u0631 \u0633\u0637\u0644 \u0632\u0628\u0627\u0644\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f ..."],"1076":["\u0646\u06a9\u062a\u0647"],"1077":["\u0646\u0648\u0627\u0645\u0628\u0631"],"1078":["\u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1079":["\u062a\u0639\u062f\u0627\u062f \u0631\u0648\u0632\u0647\u0627"],"1080":["\u062a\u0639\u062f\u0627\u062f \u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"1081":["\u062a\u0639\u062f\u0627\u062f \u062f\u0641\u0639\u0627\u062a"],"1082":["\u062a\u0639\u062f\u0627\u062f \u062f\u0641\u0639\u0627\u062a\u06cc \u06a9\u0647 \u06a9\u0648\u067e\u0646 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0642\u0631\u0627\u0631 \u06af\u0631\u0641\u062a\u0647 \u0627\u0633\u062a."],"1083":["\u0628\u0633\u06cc\u0627\u0631 \u062e\u0648\u0628"],"1084":["\u06cc\u0627 \u0645\u0633\u06cc\u0631 \u0631\u0627 \u0628\u0647 \u0641\u0627\u06cc\u0644 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f:"],"1085":["\u0627\u06a9\u062a\u0628\u0631"],"1086":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"1087":["\u0647\u0632\u06cc\u0646\u0647 \u06cc\u06a9 \u0628\u0627\u0631 \u0628\u0631\u0627\u06cc \u0631\u0632\u0631\u0648 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u06cc\u06a9 \u06a9\u0644."],"1088":["\u0622\u0646\u0644\u0627\u06cc\u0646"],"1089":["\u0622\u0646\u0644\u0627\u06cc\u0646  (%d)"],"1090":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646"],"1091":["\u0628\u0627\u0632 \u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E"],"1092":["\u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u0628\u0627\u0632"],"1093":["\u0645\u0627\u0646\u062f\u0647 \u0627\u0648\u0644 \u062f\u0648\u0631\u0647 (\u0645\u0627\u0646\u062f\u0647 \u062f\u0631 \u0627\u0628\u062a\u062f\u0627\u064a \u062f\u0648\u0631\u0647)"],"1094":["\u06af\u0632\u06cc\u0646\u0647..."],"1095":["\u0628\u0647 \u0635\u0648\u0631\u062a \u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u06cc\u06a9 \u0628\u0631\u0686\u0633\u0628 \u0628\u0631\u0627\u06cc \u062f\u06a9\u0645\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u06a9\u0646\u06cc\u062f "],"1096":["\u0628\u0647 \u0635\u0648\u0631\u062a \u062f\u0644\u062e\u0648\u0627\u0647 URL \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 128x128px \u0627\u0632 \u0646\u0627\u0645 \u062a\u062c\u0627\u0631\u06cc \u06cc\u0627 \u0645\u062d\u0635\u0648\u0644 \u062e\u0648\u062f \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f. \u0645\u062b\u0644\u0627 \u003Ccode\u003E https://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg \u003C/ code\u003E"],"1097":["\u06af\u0632\u06cc\u0646\u0647 \u0647\u0627"],"1098":["\u062a\u0631\u062a\u06cc\u0628"],"1099":["\u0633\u0641\u0627\u0631\u0634 %d \u0628\u0635\u0648\u0631\u062a \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0627 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u062f"],"1100":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0632\u0631\u0648 #%s \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u0633\u062a\u0631\u062f \u0634\u062f\u0647 \u0628\u0631\u0686\u0633\u0628 \u062e\u0648\u0631\u062f\u0647 \u0627\u0633\u062a - \u06a9\u062f \u0639\u0644\u062a PayPal : %s "],"1101":["\u0633\u0641\u0627\u0631\u0634 \u067e\u0631\u062f\u0627\u062e\u062a %s \u003Ca href=\"#\"\u003E\u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647\u003C/a\u003E \u0627\u0632 \u0637\u0631\u06cc\u0642 %s \u062f\u0631 ( \u0622\u06cc\u062f\u06cc \u0634\u0627\u0631\u0698 : %s)"],"1102":["\u0633\u0641\u0627\u0631\u0634 \u067e\u0631\u062f\u0627\u062e\u062a %s \u062a\u0648\u0633\u0637 \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646 \u0628\u0627  \u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698 \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647:%s "],"1103":[" \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0641\u0627\u0631\u0634 %s \u06a9\u0627\u0645\u0644 \u0634\u062f."],"1104":["\u0633\u0641\u0627\u0631\u0634 \u067e\u0631\u062f\u0627\u062e\u062a %s \u062a\u0648\u0633\u0637 \u0627\u0633\u062a\u0631\u06cc\u067e \u062f\u06a9\u0627\u0646 \u0628\u0627  \u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698 \u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647:%s"],"1105":["\u0648\u0636\u0639\u06cc\u062a \u0633\u0641\u0627\u0631\u0634 %s \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u062f\u0644\u06cc\u0644 \u0627\u062e\u062a\u0644\u0627\u0641 \u0646\u0638\u0631 \u0628\u0647 \u0646\u0641\u0639 \u0634\u0645\u0627 \u0627\u0632 \u0637\u0631\u06cc\u0642 %s \u062f\u0631 (\u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698: %s) \u0628\u0647 \u0627\u062a\u0645\u0627\u0645 \u0631\u0633\u06cc\u062f\u0647 \u0627\u0633\u062a"],"1106":["\u0648\u0636\u0639\u06cc\u062a \u0633\u0641\u0627\u0631\u0634 %s \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0639\u0644\u062a \u0627\u062e\u062a\u0644\u0627\u0641 \u0627\u0632 \u0637\u0631\u06cc\u0642 %s \u062f\u0631 (\u0634\u0646\u0627\u0633\u0647 \u0634\u0627\u0631\u0698: %s ) \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0639\u0644\u06cc\u0642 \u0646\u06af\u0647 \u062f\u0627\u0634\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1107":["\u062a\u0627\u0631\u06cc\u062e \u0633\u0641\u0627\u0631\u0634 :"],"1108":["\u0634\u0646\u0627\u0633\u0647 \u067e\u0631\u062f\u0627\u062e\u062a"],"1109":["\u0634\u0646\u0627\u0633\u0647 \u0633\u0641\u0627\u0631\u0634 : "],"1110":["\u0634\u0645\u0627\u0631\u0647 \u0633\u0641\u0627\u0631\u0634."],"1111":["\u0648\u0636\u0639\u06cc\u062a \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u0627\u0631\u064a\u0632"],"1112":["\u0645\u062c\u0645\u0648\u0639 \u0633\u0641\u0627\u0631\u0634"],"1113":["\u062a\u062e\u0641\u06cc\u0641 \u0633\u0641\u0627\u0631\u0634"],"1114":["\u0633\u0641\u0627\u0631\u0634 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a / \u0645\u0639\u06a9\u0648\u0633 "],"1115":["\u0648\u0636\u0639\u06cc\u062a \u0633\u0641\u0627\u0631\u0634 \u06a9\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0631\u062f\u0627\u0634\u062a \u06a9\u0646\u062f."],"1116":["\u062c\u062f\u0648\u0644 \u0633\u0641\u0627\u0631\u0634 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0628\u0627\u0632\u0633\u0627\u0632\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a!"],"1117":["\u06a9\u0644 \u0633\u0641\u0627\u0631\u0634 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"1118":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a"],"1119":["\u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062f\u0631 \u062d\u0627\u0644 \u067e\u0631\u062f\u0627\u0632\u0634"],"1120":["\u0633\u0627\u06cc\u0631"],"1121":["\u0633\u0627\u06cc\u0631 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0648\u062c\u0648\u062f "],"1122":["\u06a9\u0634\u0648\u0631\u0647\u0627\u06cc \u062f\u06cc\u06af\u0631"],"1123":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062f\u06cc\u06af\u0631"],"1124":["\u0633\u0627\u06cc\u0631 \u0627\u0633\u062a\u0627\u0646 \u0647\u0627"],"1125":["\u062f\u06cc\u06af\u0631"],"1126":["\u0627\u0645\u06a9\u0627\u0646 \u062b\u0628\u062a \u0646\u062f\u0627\u0631\u06cc\u062f!"],"1127":["\u0646\u0627\u0645\u0648\u062c\u0648\u062f"],"1128":[" \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1129":["\u0645\u062f\u06cc\u0631 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0631\u0627 \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062f\u0631\u06cc\u0627\u0641\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f"],"1130":["\u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634 \u0641\u0631\u0636 \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0644\u0627 \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc \u0634\u0648\u062f"],"1131":["\u0628\u0631\u0631\u0633\u06cc \u06a9\u0644\u06cc"],"1132":["\u0627\u0639\u062a\u0628\u0627\u0631 \u067e\u06a9\u06cc\u062c"],"1133":["\u0622\u0644\u0627\u0631\u0645 \u0647\u0634\u062f\u0627\u0631 \u067e\u0627\u06cc\u0627\u0646 \u067e\u06a9\u06cc\u062c"],"1134":["\u0635\u0641\u062d\u0647 \u0646\u0635\u0628 \u0648 \u0631\u0627\u0647 \u0627\u0646\u062f\u0627\u0632\u06cc"],"1135":["\u0635\u0641\u062d\u0647 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0648 \u0646\u0635\u0628 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"1136":["\u067e\u0631\u062f\u0627\u062e\u062a \u0645\u0648\u0642\u062a "],"1137":["\u0645\u0646\u0628\u0639"],"1138":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0645\u0627\u062f\u0631"],"1139":["\u0622\u06cc\u062a\u0645 \u0627\u0635\u0644\u06cc"],"1140":["\u06a9\u062f \u0645\u062d\u0635\u0648\u0644 \u0627\u0635\u0644\u06cc "],"1141":["\u067e\u0627\u0633\u067e\u0648\u0631\u062a"],"1142":["\u0631\u0645\u0632 \u0639\u0628\u0648\u0631"],"1143":["\u0631\u0645\u0632 \u0639\u0628\u0648\u0631:"],"1144":["\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 \u067e\u06cc \u067e\u0627\u0644\u060c \u062f\u0631 \u0635\u0648\u0631\u062a\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u062d\u0633\u0627\u0628 \u067e\u06cc \u067e\u0627\u0644 \u0646\u062f\u0627\u0631\u06cc\u062f \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0632 \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062e\u0648\u062f \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u06cc\u062f. "],"1145":["\u0628\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0646\u0637\u0628\u0627\u0642 paypal \u067e\u0631\u062f\u0627\u062e\u062a \u06a9\u0646\u06cc\u062f "],"1146":["\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u067e\u06cc \u067e\u0627\u0644 "],"1147":["\u0627\u0646\u062c\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a"],"1148":["PayPal \u0648\u0627\u062d\u062f \u067e\u0648\u0644 \u0634\u0645\u0627 \u0631\u0627 \u0642\u0628\u0648\u0644 \u0646\u0645\u06cc\u06a9\u0646\u062f. "],"1149":["PayPal Adaptive \u0628\u0627 \u0627\u0631\u0633\u0627\u0644 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0686\u0646\u062f \u06a9\u0627\u0631\u0628\u0631 \u06a9\u0627\u0631 \u0645\u06cc \u06a9\u0646\u062f "],"1150":["\u0627\u06cc\u0645\u06cc\u0644 \u067e\u06cc \u067e\u0627\u0644"],"1151":["\u067e\u0631\u062f\u0627\u062e\u062a \u067e\u06cc \u067e\u0627\u0644"],"1152":["\u06af\u0648\u062f\u0627\u0644 \u0645\u0627\u0633\u0647\u0628\u0627\u0632\u06cc \u067e\u06cc \u067e\u0627\u0644"],"1153":["\u0633\u0646\u062f\u0628\u0627\u06a9\u0633 \u067e\u06cc\u200c\u067e\u0627\u0644 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u0628\u0631\u0627\u06cc \u0622\u0632\u0645\u0627\u06cc\u0634 \u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0631\u062f. \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u062d\u0633\u0627\u0628 \u0628\u0631\u0646\u0627\u0645\u0647 \u0646\u0648\u06cc\u0633 \u003Ca href=\"%s\"\u003E\u0627\u06cc\u0646\u062c\u0627\u003C/a\u003E \u062b\u0628\u062a \u0646\u0627\u0645 \u06a9\u0646\u06cc\u062f "],"1154":["\u067e\u0631\u062f\u0627\u062e\u062a%s \u0627\u0632 \u0637\u0631\u06cc\u0642 IPN."],"1155":["\u067e\u0631\u062f\u0627\u062e\u062a %s \u0627\u0632 \u0637\u0631\u06cc\u0642 IPN. \u0633\u0641\u0627\u0631\u0634 \u062f\u0631 \u062d\u0627\u0644 \u0627\u062a\u0645\u0627\u0645 \u0627\u0633\u062a. PayPal \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0631\u0627 \u0627\u0632 \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0648\u0636\u0639\u06cc\u062a \u0628\u06cc\u0634\u062a\u0631 \u0645\u0637\u0644\u0639 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f. \u0628\u0631\u0627\u06cc \u06a9\u0633\u0628 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631\u060c \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc PayPal \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f"],"1156":["\u062f\u0631\u06af\u0627\u0647 \u067e\u0631\u062f\u0627\u062e\u062a"],"1157":["\u0631\u0648\u0634\u200c\u0647\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a"],"1158":["\u0633\u06cc\u0633\u062a\u0645 \u067e\u0631\u062f\u0627\u062e\u062a"],"1159":["\u0648\u062c\u0647 \u067e\u0631\u062f\u0627\u062e\u062a\u06cc \u0628\u0631\u0627\u06cc \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0632\u0631\u0648 %s \u0645\u0633\u062a\u0631\u062f \u0634\u062f. "],"1160":["\u062e\u0637\u0627\u06cc Adaptive \u067e\u06cc \u067e\u0627\u0644: %s \u060c \u06a9\u062f \u062e\u0637\u0627: %d"],"1161":["\u062f\u0633\u062a\u0631\u0633\u06cc \u0631\u062f \u0634\u062f"],"1162":["\u0645\u0646\u062a\u0638\u0631 \u0628\u0631\u0631\u0633\u06cc"],"1163":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 ("],"1164":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"1165":["\u062f\u0631 \u0635\u0648\u0631\u062a\u06cc \u06a9\u0647 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0628\u0647 \u0631\u0648\u0632 \u0645\u06cc \u0634\u0648\u062f\u060c \u0628\u0647 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627\u06cc \u0645\u0646\u062a\u062e\u0628 \u0645\u062d\u0635\u0648\u0644 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f \u0628\u0647 \u06af\u06cc\u0631\u0646\u062f\u0647 \u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647."],"1166":["\u0628\u0631\u0631\u0633\u06cc \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"1167":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc"],"1168":["\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc  (%d)"],"1169":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631"],"1170":["\u0647\u0632\u06cc\u0646\u0647 \u0647\u0631 \u0645\u062d\u0635\u0648\u0644 \u0627\u0636\u0627\u0641\u06cc"],"1171":["\u0642\u06cc\u0645\u062a \u0647\u0631 \u0645\u062d\u0635\u0648\u0644 \u0627\u0636\u0627\u0641\u06cc"],"1172":["\u062f\u0631 \u0647\u0631 \u0647\u0632\u06cc\u0646\u0647 \u0627\u0636\u0627\u0641\u06cc"],"1173":["\u0642\u06cc\u0645\u062a \u0647\u0631 \u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u0645\u062d\u0635\u0648\u0644"],"1174":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0647\u0631 \u06a9\u0644\u0627\u0633: \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0647\u0631 \u06a9\u0644\u0627\u0633 \u0628\u0647 \u0635\u0648\u0631\u062a \u062c\u062f\u0627\u06af\u0627\u0646\u0647"],"1175":["\u0628\u0631\u0627\u0633\u0627\u0633 \u0647\u0631 \u0633\u0641\u0627\u0631\u0634: \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06af\u0631\u0627\u0646 \u062a\u0631\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644"],"1176":["\u062f\u0631 \u0635\u062f"],"1177":["\u062f\u0631\u0635\u062f\u06cc"],"1178":["\u062d\u0630\u0641 \u062f\u0627\u0626\u0645\u06cc"],"1179":["\u062f\u0633\u062a\u0631\u0633\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a."],"1180":["\u0646\u0627\u0645 \u0646\u0648\u0639 \u0634\u062e\u0635"],"1181":["\u062a\u0639\u062f\u0627\u062f \u0627\u0641\u0631\u0627\u062f"],"1182":["\u0627\u0646\u0648\u0627\u0639 \u0627\u0641\u0631\u0627\u062f"],"1183":["\u0646\u0648\u0639 \u0627\u0641\u0631\u0627\u062f \u0628\u0647 \u0634\u0645\u0627 \u0627\u0645\u06a9\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f \u0647\u0632\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641 \u0631\u0632\u0631\u0648 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0646\u0648\u0627\u0639 \u0645\u062e\u062a\u0644\u0641\u060c \u0628\u0631\u0627\u06cc \u0645\u062b\u0627\u0644 \u0628\u0632\u0631\u06af\u0633\u0627\u0644\u0627\u0646 \u0648 \u06a9\u0648\u062f\u06a9\u0627\u0646 \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u06cc\u062f."],"1184":["\u0634\u062e\u0635"],"1185":["\u0627\u0641\u0631\u0627\u062f:"],"1186":["\u0627\u0641\u0631\u0627\u062f"],"1187":["\u062a\u0644\u0641\u0646 "],"1188":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646"],"1189":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646"],"1190":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646"],"1191":["\u062a\u0627\u06cc\u06cc\u062f \u062a\u0644\u0641\u0646"],"1192":["\u062a\u0644\u0641\u0646: "],"1193":["\u0634\u0646\u0627\u0633\u0647 \u0639\u06a9\u0633"],"1194":["\u0634\u0646\u0627\u0633\u0647 \u0639\u06a9\u0633"],"1195":["\u062f\u0631\u0648\u0627\u0632\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0633\u062a \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0644\u06cc\u062f API \u062a\u0633\u062a \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f."],"1196":["\u0644\u0637\u0641\u0627 \u003Ca href=\"%s\"\u003E\u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f\u003C/a\u003E \u0634\u0645\u0627 \u003Cstrong\u003E\u062f\u06a9\u0627\u0646\u003C/strong\u003E\u06a9\u0644\u06cc\u062f \u0645\u062c\u0648\u0632 \u067e\u0644\u0627\u06af\u06cc\u0646 \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0628\u0647 \u0637\u0648\u0631 \u0645\u0646\u0638\u0645 \u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc."],"1197":["\u0644\u0637\u0641\u0627\u064b \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u0648 \u0627\u06cc\u0645\u06cc\u0644 \u062e\u0648\u062f \u0631\u0627 \u062a\u0627\u06cc\u06cc\u062f \u06a9\u0646\u06cc\u062f \u0633\u067e\u0633 \u0628\u0647 \u0633\u0627\u06cc\u062a \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f."],"1198":["\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u06af\u0641\u062a\u06af\u0648 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f"],"1199":["\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u0627\u062f\u0627\u0645\u0647 \u0648\u0627\u0631\u062f \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0634\u0648\u06cc\u062f"],"1200":["\u0644\u0637\u0641\u0627 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f \u062a\u0627 \u062f\u0631 \u0645\u0648\u0631\u062f \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062a\u062d\u0642\u06cc\u0642 \u06a9\u0646\u06cc\u062f "],"1201":["\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0628\u06cc\u0634\u062a\u0631\u060c \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f ( \u0627\u0641\u0631\u0627\u062f \u06cc\u0627 \u0645\u0648\u062c\u0648\u062f\u06cc)"],"1202":["\u0644\u0637\u0641\u0627 \u0627\u0628\u062a\u062f\u0627 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u0636\u0648\u0627\u0628\u0637 \u0631\u0627 \u0628\u067e\u0630\u06cc\u0631\u06cc\u062f"],"1203":["\u0644\u0637\u0641\u0627 \u067e\u06a9\u06cc\u062c \u062f\u0631 \u062d\u0627\u0644 \u0627\u062c\u0631\u0627 \u062e\u0648\u062f \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u062f\u06cc\u06af\u0631\u06cc \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u067e\u06cc\u062f\u0627 \u06a9\u0646\u06cc\u062f"],"1204":["\u0644\u0637\u0641\u0627 \u0627\u06af\u0631 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0633\u06cc\u0633\u062a\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u062c\u062f\u062f \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u062a\u06cc\u06a9 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u0628\u0632\u0646\u06cc\u062f"],"1205":["\u06cc\u06a9 \u0646\u0627\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f!!!"],"1206":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u062f\u0633\u062a\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f!"],"1207":["\u0644\u0637\u0641\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0686\u0647 \u06a9\u0633\u06cc \u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u0631\u0627 \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f "],"1208":["\u0644\u0637\u0641\u0627 \u0633\u06cc\u0633\u062a\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0648\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f "],"1209":["\u0644\u0637\u0641\u0627 \u0639\u0646\u0648\u0627\u0646 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"1210":["\u0644\u0637\u0641\u0627 \u0645\u0642\u062f\u0627\u0631 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"1211":["\u0644\u0637\u0641\u0627 \u0639\u0646\u0648\u0627\u0646 \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641 \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f"],"1212":["\u0644\u0637\u0641\u0627 \u0627\u06cc\u0645\u06cc\u0644 PayPal  \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u0646\u0645\u0627\u06cc\u06cc\u062f."],"1213":["\u0644\u0637\u0641\u0627 \u062a\u0645\u0627\u0645 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0631\u0627 \u067e\u0631 \u06a9\u0646\u06cc\u062f"],"1214":["\u0644\u0637\u0641\u0627 \u0627\u0628\u062a\u062f\u0627 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0631\u0627 \u067e\u0631 \u06a9\u0646\u06cc\u062f"],"1215":["\u0644\u0637\u0641\u0627 \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062d\u0627\u0635\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u06a9\u0627\u0631\u062a \u0634\u0645\u0627 \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0627\u0633\u062a \u0648 \u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062c\u0627\u0648\u0627 \u0627\u0633\u06a9\u0631\u06cc\u067e\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06a9\u0646\u062f."],"1216":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0627\u0633\u062a\u0627\u0646 \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u06a9\u0634\u0648\u06cc\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"1217":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"1218":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u06a9\u0634\u0648\u0631 \u0631\u0627 \u0627\u0632 \u0644\u06cc\u0633\u062a \u06a9\u0634\u0648\u06cc\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"1219":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0631\u0648\u0634 \u0627\u0631\u0633\u0627\u0644 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"1220":["\u0644\u0637\u0641\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 xml \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"1221":["\u0644\u0637\u0641\u0627 \u0628\u0631\u062e\u06cc \u0627\u0632 \u0645\u0648\u0627\u0631\u062f \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"1222":["\u0644\u0637\u0641\u0627 \u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f"],"1223":["\u0644\u0637\u0641\u0627 \u0647\u0631 \u06af\u0648\u0646\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0645\u0634\u062e\u0635 \u06a9\u0646\u06cc\u062f"],"1224":["\u0644\u0637\u0641\u0627\u064b \u0644\u06cc\u0646\u06a9 \u0631\u0627 \u0628\u0647 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0645\u0639\u062a\u0628\u0631 CSV \u062f\u0647\u06cc\u062f \u06cc\u0627 \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f."],"1225":["\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc \u067e\u0644\u0627\u06af\u06cc\u0646"],"1226":["\u067e\u0644\u0627\u06af\u06cc\u0646 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"1227":["\u062c\u0627\u06cc\u06af\u0627\u0647"],"1228":["\u0622\u062f\u0631\u0633 \u067e\u0633\u062a\u06cc"],"1229":["\u06a9\u062f \u067e\u0633\u062a\u06cc \u0628\u0627\u06cc\u062f \u0628\u0627 \u06a9\u0627\u0645\u0627 \u0627\u0632 \u0647\u0645 \u062c\u062f\u0627 \u0634\u0648\u062f"],"1230":["\u0642\u06cc\u0645\u062a"],"1231":["\u0642\u06cc\u0645\u062a:"],"1232":["\u0642\u06cc\u0645\u062a : "],"1233":["\u0627\u0647\u0645\u06cc\u062a"],"1234":["\u067e\u0631\u062f\u0627\u0632\u0634 \u062a\u0645\u0627\u0645 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627\u0632\u0627\u0631 \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u06cc\u06a9 \u0645\u06a9\u0627\u0646 \u0648\u0627\u062d\u062f. \u003Ca href=\"%s\" target=\"_blank\"\u003E \u0628\u06cc\u0634\u062a\u0631 \u003Ca/\u003E \u0631\u0627 \u0628\u06cc\u0627\u0645\u0648\u0632\u06cc\u062f"],"1235":["\u062f\u0631 \u062d\u0627\u0644 \u067e\u0631\u062f\u0627\u0632\u0634"],"1236":["\u0632\u0645\u0627\u0646 \u067e\u0631\u062f\u0627\u0632\u0634"],"1237":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1238":["\u062a\u062e\u0641\u06cc\u0641 % \u0645\u062d\u0635\u0648\u0644"],"1239":["\u062a\u062e\u0641\u06cc\u0641 \u0645\u062d\u0635\u0648\u0644"],"1240":["\u0633\u0648\u0627\u0644 \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 "],"1241":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644:"],"1242":["\u0634\u0646\u0627\u0633\u0647 \u06a9\u0627\u0644\u0627"],"1243":["\u0627\u0639\u0644\u0627\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0627\u06cc\u0645\u06cc\u0644"],"1244":["\u0645\u062d\u0635\u0648\u0644 \u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647"],"1245":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644 (SKU):"],"1246":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644"],"1247":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644:"],"1248":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0645\u062d\u0635\u0648\u0644"],"1249":["\u0639\u0646\u0648\u0627\u0646 \u0645\u062d\u0635\u0648\u0644"],"1250":["\u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644:"],"1251":["\u062f\u0633\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1252":["\u0645\u062d\u0635\u0648\u0644\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"1253":["\u0646\u0627\u0645 \u0645\u062d\u0635\u0648\u0644."],"1254":["\u0645\u062d\u0635\u0648\u0644 \u062f\u06cc\u06af\u0631 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"1255":["\u0642\u06cc\u0645\u062a \u0645\u062d\u0635\u0648\u0644 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u06a9\u0645\u062a\u0631 \u0627\u0632 \u0647\u0632\u06cc\u0646\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0627\u0634\u062f!"],"1256":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0645\u06cc \u06a9\u0646\u062f"],"1257":["\u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0627\u0639\u062a\u0628\u0627\u0631 \u0628\u0633\u062a\u0647 \u0647\u0627\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u0646\u0642\u0636\u06cc \u0645\u06cc \u0634\u0648\u062f "],"1258":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u062d\u0630\u0641 \u0634\u062f"],"1259":["\u0627\u0646\u0648\u0627\u0639 \u0643\u0627\u0644\u0627 "],"1260":["\u06a9\u0627\u0644\u0627\u0647\u0627"],"1261":["\u0627\u0646\u062a\u0634\u0627\u0631"],"1262":["\u06a9\u0644\u06cc\u062f \u0627\u0646\u062a\u0634\u0627\u0631\u06cc"],"1263":["\u0645\u0646\u062a\u0634\u0631 \u0634\u062f"],"1264":["\u0645\u0646\u062a\u0634\u0631 \u0634\u062f\u0647 \u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"1265":["\u0646\u06a9\u062a\u0647 \u062e\u0631\u06cc\u062f"],"1266":["\u0646\u06a9\u0627\u062a \u0636\u0631\u0648\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a "],"1267":["\u062a\u0639\u062f\u0627\u062f"],"1268":["\u0645\u0642\u062f\u0627\u0631"],"1269":["\u062a\u062e\u0641\u06cc\u0641 \u0645\u0642\u062f\u0627\u0631"],"1270":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"1271":["\u0628\u0627\u0632\u0647"],"1272":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0631\u0648\u0632"],"1273":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0645\u0627\u0647"],"1274":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0647\u0641\u062a\u0647"],"1275":["\u0646\u0648\u0639 \u0645\u062d\u062f\u0648\u062f\u0647"],"1276":["\u0627\u0645\u062a\u06cc\u0627\u0632  %d \u0627\u0632 5"],"1277":["\u0627\u0645\u062a\u06cc\u0627\u0632"],"1278":["\u0628\u0627\u0632\u0633\u0627\u0632\u06cc"],"1279":["\u0622\u0645\u0627\u062f\u0647 \u0628\u0647 \u062d\u0645\u0644 \u062f\u0631 "],"1280":["\u062f\u0644\u06cc\u0644 \u0634\u06a9\u0633\u062a "],"1281":["\u0639\u0644\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a (\u062f\u0644\u062e\u0648\u0627\u0647)"],"1282":["\u06af\u06cc\u0631\u0646\u062f\u0647 (\u0647\u0627\u06cc)"],"1283":["\u067e\u0631\u062f\u0627\u062e\u062a \u0645\u062c\u062f\u062f"],"1284":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0632\u0645\u0627\u0646\u0628\u0646\u062f\u06cc \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a webhooks \u062f\u0627\u0631\u062f. \u0628\u0647 \u003Ca href=\"%s\"\u003Ewebhook\u003C/a\u003E \u0628\u0631\u0648\u06cc\u062f \u0648 \u0646\u0634\u0627\u0646\u06cc \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u003Ccode\u003E%s\u003C/code\u003E. \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. \u062f\u0631 \u063a\u06cc\u0631 \u0627\u06cc\u0646 \u0635\u0648\u0631\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc \u0628\u0647 \u0637\u0648\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0646\u062c\u0627\u0645 \u0646\u0645\u06cc \u0634\u0648\u062f"],"1285":["\u0622\u062f\u0631\u0633 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631"],"1286":["\u0622\u062f\u0631\u0633 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a"],"1287":["\u0633\u0641\u0627\u0631\u0634 \u0627\u0631\u062c\u0627\u0639 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 #%s"],"1288":["\u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1289":["\u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0632 \u0637\u0631\u06cc\u0642 %s"],"1290":["\u0645\u06cc\u0632\u0627\u0646 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1291":["\u0645\u0628\u0644\u063a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a :"],"1292":["\u0631\u0648\u0634 \u0628\u0627\u0632 \u067e\u0631\u062f\u0627\u062e\u062a"],"1293":["\u0633\u06cc\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1294":["\u0639\u0644\u062a \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1295":["\u062f\u0644\u06cc\u0644 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a : "],"1296":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1297":["\u0645\u0642\u062f\u0627\u0631 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1298":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631\u0627\u06cc {order_id} \u0647\u0633\u062a {status}"],"1299":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f."],"1300":["\u0648\u0636\u0639\u06cc\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1301":["\u0628\u0627\u0632 \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u062f"],"1302":["\u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0627"],"1303":["\u0627\u0633\u062a\u0631\u062f\u0627\u062f %s"],"1304":["\u062a\u0648\u0644\u06cc\u062f \u0633\u0641\u0627\u0631\u0634 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u062c\u062f\u0648\u0644"],"1305":["\u0646\u0627\u062d\u06cc\u0647"],"1306":["\u062b\u0628\u062a \u0646\u0627\u0645"],"1307":["\u062b\u0628\u062a \u0646\u0627\u0645 \u0634\u062f\u0647"],"1308":["\u062a\u0627\u0631\u06cc\u062e \u062b\u0628\u062a \u0646\u0627\u0645"],"1309":["\u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u0634\u062f\u0647 \u0627\u0632"],"1310":["\u0646\u06a9\u062a\u0647 \u062b\u0628\u062a\u200c\u0646\u0627\u0645"],"1311":["\u0642\u06cc\u0645\u062a \u0639\u0627\u062f\u06cc:"],"1312":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u0639\u0645\u0648\u0644\u06cc"],"1313":["\u0642\u06cc\u0645\u062a \u0627\u0635\u0644\u06cc"],"1314":["\u0631\u062f \u06a9\u0646\u06cc\u062f"],"1315":["\u0631\u062f \u0634\u062f\u0647"],"1316":["\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0644\u06cc\u0633\u062a \u0645\u0632\u0627\u06cc\u062f\u0647 \u0628\u0647 \u0633\u0627\u0639\u062a"],"1317":["\u0686\u0646\u0627\u0646\u0686\u0647 \u0628\u0639\u062f \u0627\u0632 \u0686\u0646\u062f\u0633\u0627\u0639\u062a \u0634\u06a9\u0633\u062a \u062e\u0648\u0631\u062f\u060c \u0644\u06cc\u0633\u062a \u0645\u062c\u062f\u062f\u0627 \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u06af\u0631\u062f\u062f."],"1318":["\u0627\u06af\u0631 \u0628\u0639\u062f \u0627\u0632 n \u0633\u0627\u0639\u062a \u067e\u0631\u062f\u0627\u062e\u062a \u0646\u0645\u06cc \u0634\u0648\u062f\u060c "],"1319":["\u0641\u0627\u06cc\u0644 \u0635\u0641\u0631 \u06a9\u06cc\u0644\u0648\u0628\u0627\u06cc\u062a\u06cc \u062f\u0627\u0646\u0644\u0648\u062f \u0634\u062f"],"1320":["\u0641\u0627\u06cc\u0644 \u0627\u0632 \u0631\u0627\u0647 \u062f\u0648\u0631 \u0628\u0633\u06cc\u0627\u0631 \u0628\u0632\u0631\u06af \u0627\u0633\u062a\u060c \u0645\u062d\u062f\u0648\u062f \u0627\u0633\u062a %s"],"1321":["\u062e\u0637\u0627\u06cc\u06cc \u0631\u062e \u062f\u0627\u062f. \u0644\u0637\u0641\u0627 \u0645\u062c\u062f\u062f \u062a\u0644\u0627\u0634 \u06a9\u0646\u06cc\u062f."],"1322":["\u0633\u0631\u0648\u0631 \u0631\u0627\u0647 \u062f\u0648\u0631 \u067e\u0627\u0633\u062e \u062e\u0637\u0627 \u0631\u0627 \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0631\u062f %1$d %2$s"],"1323":["\u067e\u0627\u06a9"],"1324":["\u062d\u0630\u0641 \u0627\u06cc\u0646 \u0639\u06a9\u0633"],"1325":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0627\u06cc\u0646 \u0622\u06cc\u062a\u0645 \u0631\u0627 \u062d\u0630\u0641 \u0645\u06cc\u06a9\u0646\u06cc\u062f\u061f"],"1326":["\u062a\u0645\u062f\u06cc\u062f"],"1327":["\u062a\u062c\u062f\u06cc\u062f \u0645\u062c\u0648\u0632"],"1328":["\u06af\u0632\u0627\u0631\u0634 \u0647\u0627"],"1329":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0634\u062f!"],"1330":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u0646\u0633\u0644 \u0634\u062f!"],"1331":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062d\u0630\u0641 \u0634\u062f!"],"1332":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1333":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647 \u0627\u0633\u062a!"],"1334":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627 \u0644\u063a\u0648 \u06af\u0631\u062f\u06cc\u062f!"],"1335":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062d\u0630\u0641 \u0634\u062f"],"1336":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u062f\u0648\u0631\u0647 \u0628\u0627\u0641\u0631 \u0627\u0632 ("],"1337":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u062a\u0627\u06cc\u06cc\u062f"],"1338":["\u0646\u06cc\u0627\u0632 \u0628\u0647 \u0628\u0631\u0631\u0633\u06cc \u062f\u0627\u0631\u062f"],"1339":["\u0642\u06cc\u0645\u062a \u0631\u0632\u0631\u0648 \u0634\u062f\u0647"],"1340":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"1341":["\u0639\u0646\u0648\u0627\u0646 \u0645\u0648\u062c\u0648\u062f\u06cc"],"1342":["\u0646\u0627\u0645 \u0645\u0648\u062c\u0648\u062f\u06cc..."],"1343":["\u0645\u0648\u062c\u0648\u062f\u06cc:"],"1344":["\u0645\u0646\u0627\u0628\u0639"],"1345":["\u0627\u06af\u0631 \u0627\u06cc\u0646 \u0645\u06a9\u0627\u0646 \u062f\u0627\u0631\u0627\u06cc \u0645\u06a9\u0627\u0646 \u0647\u0627\u06cc \u0645\u062a\u0639\u062f\u062f \u0627\u0633\u062a \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0645\u0647 \u0645\u06a9\u0627\u0646 \u0647\u0627 \u0631\u0627 \u0628\u0647 \u0646\u0645\u0627\u06cc\u0634 \u0628\u06af\u0630\u0627\u0631\u06cc\u062f"],"1346":["\u0645\u0648\u062c\u0648\u062f\u06cc ... \u0647\u0633\u062a\u0646\u062f"],"1347":["\u0645\u0648\u062c\u0648\u062f \u06a9\u0631\u062f\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1348":["\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646"],"1349":["\u062f\u0631\u0622\u0645\u062f"],"1350":["\u0645\u0639\u06a9\u0648\u0633"],"1351":["\u0648\u0636\u0639\u06cc\u062a \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f"],"1352":["\u0627\u0645\u062a\u06cc\u0627\u0632 \u0631\u062a\u0628\u0647 \u0628\u0646\u062f\u06cc (0 \u062a\u0627 5)."],"1353":["\u0627\u06cc\u0645\u06cc\u0644 \u0646\u0627\u0638\u0631."],"1354":["\u0646\u0627\u0645 \u0646\u0627\u0638\u0631."],"1355":["\u0628\u0631\u0631\u0633\u06cc"],"1356":["\u0644\u063a\u0648 \u062f\u0633\u062a\u0631\u0633\u06cc"],"1357":["\u0642\u0648\u0627\u0646\u06cc\u0646 \u0628\u0627 \u0627\u0639\u062f\u0627\u062f \u06a9\u0645\u062a\u0631 \u0628\u0631\u0627\u06cc \u0627\u0648\u0644\u06cc\u0646 \u0628\u0627\u0631 \u0627\u062c\u0631\u0627 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f. \u0642\u0648\u0627\u0646\u06cc\u0646 \u0628\u06cc\u0634\u062a\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646 \u0627\u06cc\u0646 \u062c\u062f\u0648\u0644 \u0628\u0627 \u0647\u0645\u0627\u0646 \u0627\u0648\u0644\u0648\u06cc\u062a \u0646\u06cc\u0632 \u0628\u0631\u0627\u06cc \u0627\u0648\u0644\u06cc\u0646 \u0628\u0627\u0631 \u0627\u062c\u0631\u0627 \u0645\u06cc \u0634\u0648\u062f."],"1358":["\u0627\u062c\u0631\u0627\u06cc \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc "],"1359":["\u0639\u0646\u0648\u0627\u0646 \u0633\u0626\u0648:"],"1360":["\u0639\u0646\u0648\u0627\u0646 \u0633\u0626\u0648 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0646\u0627\u0645 \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"1361":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062d\u0635\u0648\u0644"],"1362":["\u06a9\u062f \u0645\u062d\u0635\u0648\u0644 %s"],"1363":["\u062e\u0637\u0627 \u067e\u06cc\u0627\u0645\u06a9 \u0627\u0631\u0633\u0627\u0644 \u0634\u062f\u0647"],"1364":["\u067e\u06cc\u0627\u0645\u06a9 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f"],"1365":["\u0645\u062a\u0646 \u067e\u06cc\u0627\u0645\u06a9"],"1366":["\u06a9\u062f \u067e\u06cc\u0627\u0645\u06a9\u06cc"],"1367":["\u067e\u06cc\u0627\u0645\u06a9 \u0627\u0631\u0633\u0627\u0644 \u06af\u0631\u062f\u06cc\u062f.\u0644\u0637\u0641\u0627 \u06a9\u062f \u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647 \u062e\u0648\u062f \u0631\u0627 \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"1368":["\u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634:"],"1369":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0634\u06af\u0641\u062a \u0627\u0646\u06af\u06cc\u0632"],"1370":["\u062a\u0627\u0631\u06cc\u062e \u067e\u0627\u06cc\u0627\u0646 \u0641\u0631\u0648\u0634 :"],"1371":["\u0642\u06cc\u0645\u062a \u0628\u0627 \u062a\u062e\u0641\u06cc\u0641"],"1372":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0634\u06af\u0641\u062a \u0627\u0646\u06af\u06cc\u0632"],"1373":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639 \u0641\u0631\u0648\u0634 :"],"1374":["\u0641\u0631\u0648\u0634"],"1375":["\u0641\u0631\u0648\u0634 \u0631\u0648\u0632"],"1376":["\u0641\u0631\u0648\u0634 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"1377":["\u0645\u062c\u0645\u0648\u0639 \u0641\u0631\u0648\u0634"],"1378":["\u0647\u0645\u0627\u0646 \u062e\u0627\u0646\u0648\u0627\u062f\u0647"],"1379":["\u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u0627\u0633\u0644\u0627\u06cc\u062f\u0631 \u0646\u0645\u0648\u0646\u0647 "],"1380":["\u06af\u0630\u0631\u0648\u0627\u0698\u0647 \u0628\u0631\u0646\u0627\u0645\u0647 Sandbox "],"1381":["\u0627\u0645\u0636\u0627\u06cc Sandbox App "],"1382":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u0631\u0646\u0627\u0645\u0647 Sandbox "],"1383":["\u0634\u0646\u0628\u0647"],"1384":["\u0630\u062e\u06cc\u0631\u0647 \u0648 \u0641\u0639\u0627\u0644\u0633\u0627\u0632\u06cc"],"1385":["\u0630\u062e\u06cc\u0631\u0647 \u062a\u063a\u06cc\u0631\u0627\u062a"],"1386":["\u0630\u062e\u06cc\u0631\u0647 \u0645\u062d\u0635\u0648\u0644"],"1387":["\u0630\u062e\u06cc\u0631\u0647 \u0645\u0648\u062c\u0648\u062f\u06cc"],"1388":["\u0630\u062e\u06cc\u0631\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"1389":["\u0630\u062e\u06cc\u0631\u0647 \u067e\u06cc\u0634\u200c\u0646\u0648\u06cc\u0633"],"1390":["\u0630\u062e\u06cc\u0631\u0647 \u0648\u06cc\u0698\u06af\u06cc"],"1391":["\u0630\u062e\u06cc\u0631\u0647 \u0648\u06cc\u0698\u06af\u06cc \u0647\u0627"],"1392":["\u06a9\u0627\u0631\u062a \u0647\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647"],"1393":["\u0632\u0645\u0627\u0646 \u0628\u0646\u062f\u06cc"],"1394":["\u0632\u0645\u0627\u0646 \u0628\u0646\u062f\u06cc \u0634\u062f\u0647"],"1395":["\u062c\u0633\u062a\u062c\u0648 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"1396":["\u062c\u0633\u062a\u062c\u0648 \u067e\u0633\u062a"],"1397":["\u062c\u0633\u062a\u062c\u0648 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"1398":["\u062c\u0633\u062a\u062c\u0648\u06cc \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 &hellip;"],"1399":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0632\u0646\u062f\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1400":["\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648 \u0628\u0631\u0627\u06cc: "],"1401":["\u062c\u0633\u062a\u062c\u0648\u06cc \u0646\u0638\u0631 "],"1402":["\u06a9\u0644\u06cc\u062f \u0631\u0627\u0632"],"1403":["\u062f\u06cc\u062f\u0646 \u0647\u0645\u0647"],"1404":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0647\u0645\u0647"],"1405":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062c\u0632\u0626\u06cc\u0627\u062a \u0631\u0627 \u0628\u0627 \u0631\u0641\u062a\u0646 \u0628\u0647 \u0627\u06cc\u0646\u062c\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f: "],"1406":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0634\u0648\u0631"],"1407":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0648\u0639 \u0634\u0646\u0627\u0633\u0647:"],"1408":["\u0647\u0645\u06cc\u0646 \u0642\u0634\u0646\u06af\u0647!"],"1409":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0622\u06cc \u062f\u06cc \u0633\u0641\u0627\u0631\u0634"],"1410":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0628\u0631\u062e\u06cc \u0627\u0632 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1411":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u062a\u0627\u0646"],"1412":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"1413":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u0634"],"1414":["\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 ..."],"1415":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647"],"1416":["\u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0633\u062a\u0647 \u0647\u0627"],"1417":["\u0641\u06cc\u0644\u062f\u0647\u0627 \u0631\u0627 \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u0628\u0631\u0627\u06cc \u0646\u0642\u0634\u0647 \u0631\u0648\u06cc \u0632\u0645\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f\u060c \u06cc\u0627 \u062f\u0631\u0646\u0638\u0631 \u0646\u06af\u06cc\u0631\u06cc\u062f \u0647\u0646\u06af\u0627\u0645 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc. "],"1418":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u06cc\u0686\u06a9\u062f\u0627\u0645"],"1419":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0645\u0648\u0636\u0648\u0639 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1420":["\u0628\u0631\u0686\u0633\u0628 \u0647\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f"],"1421":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u062e\u0627\u0635 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0628\u0633\u062a\u0647. \u0628\u0631\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0645\u0627\u0645 \u062f\u0633\u062a\u0647 \u0647\u0627\u060c \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f "],"1422":["\u0628\u0633\u062a\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f "],"1423":["\u0627\u0646\u062a\u062e\u0627\u0628 \u0642\u0648\u0627\u0646\u06cc\u0646"],"1424":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647"],"1425":["\u0641\u0631\u0648\u0634 \u0622\u06cc\u062a\u0645 \u062f\u06a9\u0645\u0647 \u0645\u062a\u0646 "],"1426":["\u0641\u0631\u0648\u0634 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f "],"1427":["\u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 "],"1428":["\u062a\u0627\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1429":["\u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634:"],"1430":["\u0642\u06cc\u0645\u062a \u0641\u0631\u0648\u0634: "],"1431":["\u0641\u0631\u0648\u0634 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1432":["\u0627\u0631\u0633\u0627\u0644"],"1433":["\u0627\u0631\u0633\u0627\u0644 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0628\u0631\u0627\u06cc"],"1434":["\u0627\u0631\u0633\u0627\u0644 \u0627\u06cc\u0645\u06cc\u0644"],"1435":["\u0627\u0631\u0633\u0627\u0644 \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0627\u0631\u0633\u0627\u0644 \u0628\u0647 PayPal \u0628\u0647 \u062c\u0627\u06cc \u0635\u062f\u0648\u0631 \u0635\u0648\u0631\u062a \u062d\u0633\u0627\u0628."],"1436":["\u0646\u0627\u0645 \u0627\u0631\u0633\u0627\u0644 \u06a9\u0646\u0646\u062f\u0647"],"1437":["\u0627\u0631\u0633\u0627\u0644 \u0628\u0647"],"1438":["\u0633\u067e\u062a\u0627\u0645\u0628\u0631"],"1439":["\u062a\u0646\u0638\u06cc\u0645 \u0645\u062d\u062f\u0648\u062f\u0647 \u062f\u0633\u062a\u0631\u0633 \u067e\u0630\u06cc\u0631\u06cc:"],"1440":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647 \u062f\u0633\u062a\u0631\u0633 \u067e\u0630\u06cc\u0631\u06cc"],"1441":["\u062a\u0646\u0638\u06cc\u0645 \u0645\u0646\u0627\u0628\u0639 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633"],"1442":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647"],"1443":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0634\u062e\u0635\u06cc"],"1444":["\u062a\u0646\u0638\u06cc\u0645 \u0648\u0636\u0639\u06cc\u062a \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc \u0648\u0642\u062a\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06cc\u0627 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0631\u062f."],"1445":["\u062a\u0646\u0638\u06cc\u0645 \u067e\u06cc\u0627\u0645 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a"],"1446":["\u062a\u0646\u0638\u06cc\u0645 \u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0628\u06cc\u0634\u062a\u0631"],"1447":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646\u06cc \u06a9\u0647 \u0645\u062f\u06cc\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0627\u062e\u0630 \u06a9\u0646\u062f \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u06a9\u0646\u06cc\u062f"],"1448":["\u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646\u06cc \u06a9\u0647 \u0645\u062f\u06cc\u0631 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0639\u0636\u0648\u06cc\u062a \u0627\u062e\u0630 \u06a9\u0646\u062f \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u06a9\u0646\u06cc\u062f"],"1449":["\u062a\u0646\u0638\u06cc\u0645 \u062a\u062e\u0641\u06cc\u0641 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644"],"1450":["\u0645\u0648\u0642\u0639\u06cc\u062a \u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634 \u0628\u062e\u0634 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062f\u0631 \u0635\u0641\u062d\u0647 \u062a\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f "],"1451":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0641\u0648\u0642 \u0627\u0644\u0639\u0627\u062f\u0647"],"1452":["\u0639\u0646\u0648\u0627\u0646 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u062e\u0634 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0635\u0641\u062d\u0647 \u062a\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f "],"1453":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u0631\u062a\u0628\u0637 \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u0641\u0631\u0648\u0634 \u0648 \u0641\u0631\u0648\u0634 \u0645\u062a\u0642\u0627\u0628\u0644 \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f"],"1454":["\u062a\u0646\u0638\u06cc\u0645 \u06a9\u062f\u067e\u0633\u062a\u06cc"],"1455":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"1456":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],"1457":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0631\u06cc"],"1458":["\u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0634\u062a\u0646 \u062a\u062c\u0631\u0628\u0647 \u062e\u0648\u062f \u0631\u0627 \u0628\u0627 \u003Ca href='%s' target='_blank'\u003E%s\u003C/a\u003E"],"1459":["\u062d\u0645\u0644 \u0628\u0647"],"1460":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1461":["\u0645\u062d\u0627\u0633\u0628\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644:"],"1462":["\u0631\u062f\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1463":["\u0647\u0632\u06cc\u0646\u0647 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1464":["\u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 :"],"1465":["\u0631\u0648\u0634 \u0627\u0631\u0633\u0627\u0644"],"1466":["\u0646\u0627\u0645 \u0631\u0648\u0634 \u0627\u0631\u0633\u0627\u0644"],"1467":["\u0633\u06cc\u0627\u0633\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1468":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1469":["\u0645\u0627\u0644\u06cc\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644:"],"1470":["\u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1471":["\u06af\u0631\u0648\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644:"],"1472":["\u06a9\u0644\u0627\u0633 \u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062a\u0648\u0633\u0637 \u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062e\u0627\u0635 \u0628\u0647 \u06af\u0631\u0648\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f."],"1473":["\u062c\u0632\u0626\u06cc\u0627\u062a \u0627\u0631\u0633\u0627\u0644"],"1474":["\u0642\u0627\u0628\u0644\u06cc\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9 \u0633\u0627\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0627\u0633\u062a"],"1475":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0636\u0627\u0641\u0647 \u0634\u062f"],"1476":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062d\u0630\u0641 \u0634\u062f"],"1477":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f"],"1478":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0641\u0639\u0627\u0644 \u0634\u062f"],"1479":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0636\u0627\u0641\u0647 \u0646\u0634\u062f"],"1480":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062d\u0630\u0641 \u0646\u0634\u062f\u0647 \u0627\u0633\u062a"],"1481":["\u0631\u0648\u0634 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1482":["\u0641\u0642\u0637 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1483":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],"1484":["\u0642\u06cc\u0645\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0627\u0633\u062a\u0627\u0646"],"1485":["\u0639\u0646\u0648\u0627\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0627\u06cc\u062f \u0636\u0631\u0648\u0631\u06cc \u0628\u0627\u0634\u062f"],"1486":["\u0645\u0646\u0637\u0642\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1487":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644: "],"1488":["\u062d\u0645\u0644 \u0627\u0632:"],"1489":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1490":["\u0622\u062f\u0631\u0633 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1491":["\u0634\u0631\u062d \u06a9\u0648\u062a\u0627\u0647"],"1492":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u06a9\u0648\u062a\u0627\u0647"],"1493":["\u062a\u0648\u0636\u06cc\u062d \u0645\u062e\u062a\u0635\u0631 \u062f\u0631\u0628\u0627\u0631\u0647 \u0645\u062d\u0635\u0648\u0644..."],"1494":["\u0646\u0645\u0627\u06cc\u0634"],"1495":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062f\u06a9\u0627\u0646"],"1496":["\u0646\u0645\u0627\u06cc\u0634 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 "],"1497":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0645\u062d\u0635\u0648\u0644"],"1498":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1499":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1500":["\u0646\u0645\u0627\u06cc\u0634 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062f\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1501":["\u0646\u0634\u0627\u0646 \u0645\u06cc \u062f\u0647\u062f \u06a9\u0647 \u0622\u06cc\u0627 \u0646\u0627\u0638\u0631 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f\u0647 \u06cc\u0627 \u0646\u0647."],"1502":["\u0633\u0627\u062f\u0647"],"1503":["\u0645\u062d\u0635\u0648\u0644 \u0633\u0627\u062f\u0647"],"1504":["\u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0686\u06cc\u0646\u06cc \u0633\u0627\u062f\u0647\u200c\u0634\u062f\u0647"],"1505":["\u062a\u06a9\u06cc"],"1506":["\u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0686\u0646\u062f \u0641\u0631\u0634\u0646\u062f\u0647"],"1507":["\u062d\u0627\u0644\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0647\u0627 (\u062a\u0648\u0635\u06cc\u0647 \u0634\u062f\u0647) "],"1508":["\u0622\u062f\u0631\u0633 url \u0633\u0627\u06cc\u062a"],"1509":["\u0627\u0633\u06a9\u0631\u06cc\u0644"],"1510":["\u0646\u0627\u0645\u06a9 \"%s\" \u067e\u067e\u06cc\u0634 \u0627\u0632 \u0627\u06cc\u0646 \u0628\u06a9\u0627\u0631 \u0631\u0641\u062a\u0647 \u0627\u0633\u062a. \u062e\u0648\u0627\u0647\u0634\u0645\u0646\u062f \u0627\u0633\u062a \u0622\u0646\u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f . "],"1511":["\u0646\u0627\u0645\u06a9 \"%s\" \u062f\u0631\u0633\u062a \u0646\u06cc\u0633\u062a \u0632\u06cc\u0631\u0627 \u0627\u06cc\u0646 \u0645\u0648\u0631\u062f \u067e\u06cc\u0634 \u0627\u0632 \u0627\u06cc\u0646 \u0628\u06a9\u0627\u0631 \u0631\u0641\u062a\u0647 \u0627\u0633\u062a . \u062e\u0648\u0627\u0647\u0634\u0645\u0646\u062f \u0627\u0633\u062a \u0646\u0627\u0645\u06a9 \u062f\u06cc\u06af\u0631\u06cc \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f . "],"1512":["\u0646\u0627\u0645\u06a9 \u201c%s\u201d \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f \u0637\u0648\u0644\u0627\u0646\u06cc \u0627\u0633\u062a (\u062d\u062f\u0627\u06a9\u062b\u0631 28 \u062d\u0631\u0641). \u0622\u0646\u0631\u0627 \u06a9\u0648\u062a\u0627\u0647 \u06a9\u0646\u06cc\u062f \u0644\u0637\u0641\u0627"],"1513":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a API \u0634\u0628\u06a9\u0647 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"1514":["\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"1515":["\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc"],"1516":["\u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u0634\u0645\u0627 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u0641\u0632\u0627\u06cc\u0634 \u0633\u0637\u062d \u0627\u0639\u062a\u0645\u0627\u062f \u0633\u0627\u0632\u06cc \u06cc\u0627\u0631\u06cc \u0645\u06cc \u06a9\u0646\u0646\u062f. \u0628\u0647 \u0641\u06a9\u0631 \u0627\u0636\u0627\u0641\u0647 \u0646\u0645\u0648\u062f\u0646 \u0644\u06cc\u0646\u06a9 \u0628\u0647 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062e\u0648\u062f \u0628\u0631\u0627\u06cc \u062a\u0639\u0627\u0645\u0644 \u0628\u0647\u062a\u0631 \u0628\u0627 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0628\u0627\u0634\u06cc\u062f."],"1517":["\u0641\u0631\u0648\u062e\u062a\u0647 \u0634\u062f\u0647 \u0628\u0647 \u0635\u0648\u0631\u062a \u062c\u062f\u0627\u06af\u0627\u0646\u0647"],"1518":["\u0641\u0631\u0648\u0634 \u0628\u0647 \u0635\u0648\u0631\u062a \u062a\u06a9\u06cc \u061f "],"1519":["\u0645\u0634\u06a9\u0644\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f."],"1520":["\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a \u0648 \u0633\u0641\u0627\u0631\u0634 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u067e\u0631\u062f\u0627\u0632\u0634 \u06a9\u0631\u062f!"],"1521":["\u0627\u0634\u062a\u0628\u0627\u0647\u06cc \u0631\u062e \u062f\u0627\u062f\u0647 \u0627\u0633\u062a!"],"1522":["\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a! \u0644\u0637\u0641\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f"],"1523":["\u06cc\u0686\u06cc\u0632\u06cc \u0627\u0634\u062a\u0628\u0627\u0647 \u0634\u062f\u0647\u060c \u0644\u0637\u0641\u0627 \u0645\u062c\u062f\u062f\u0627 \u062a\u0644\u0627\u0634 \u06a9\u0646\u06cc\u062f"],"1524":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634 \u0627\u0634\u062a\u0631\u0627\u06a9 \u0634\u0645\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u0628\u0633\u062a\u0647 \u0634\u0645\u0627\u0633\u062a \u0644\u0637\u0641\u0627 \u067e\u06a9\u06cc\u062c  \u0627\u0634\u062a\u0631\u0627\u06a9 \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f"],"1525":["\u0645\u062a\u0627\u0633\u0641\u06cc\u0645! \u0634\u0645\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u06cc\u0686 \u0645\u062d\u0635\u0648\u0644\u06cc \u0627\u0636\u0627\u0641\u0647 \u06cc\u0627 \u0645\u0646\u062a\u0634\u0631 \u06a9\u0646\u06cc\u062f. \u0644\u0637\u0641\u0627 \u003Ca href=\"%s\"\u003E\u067e\u06a9\u06cc\u062c \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u06a9\u0646\u06cc\u062f\u003C/a\u003E."],"1526":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0645\u0634\u06a9\u0644\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f\u0647 \u0627\u0633\u062a \u0648 \u0627\u0645\u06a9\u0627\u0646 \u0627\u06cc\u062c\u0627\u062f \u062a\u06cc\u06a9\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"1527":["\u0645\u062a\u0623\u0633\u0641\u06cc\u0645\u060c \u0627\u0634\u062a\u0628\u0627\u0647\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f\u0647!"],"1528":["\u0645\u062a\u0627\u0633\u0641\u0627\u0646\u0647 \u0645\u0634\u06a9\u0644\u06cc \u067e\u06cc\u0634 \u0622\u0645\u062f\u0647 \u0627\u0633\u062a."],"1529":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0646\u062f\u0627\u0631\u06cc\u062f \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0631\u0627 \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f. \u0627\u0632 \u0622\u0646\u062c\u0627 \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u0634\u0645\u0627 \u0646\u06cc\u0633\u062a."],"1530":["\u0628\u0627 \u0639\u0631\u0636 \u067e\u0648\u0632\u0634\u060c \u062d\u0633\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u06cc \u0634\u0645\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a."],"1531":["\u0647\u0631\u0632\u0646\u0627\u0645\u0647"],"1532":["\u0647\u0631\u0632\u0646\u0627\u0645\u0647 \u0647\u0627 ("],"1533":["\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc"],"1534":["\u0642\u06cc\u0645\u062a \u0648\u06cc\u0698\u0647"],"1535":["\u06a9\u0627\u0631\u0645\u0646\u062f"],"1536":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u062d\u0630\u0641 \u0634\u062f."],"1537":["\u0627\u0633\u062a\u0627\u0646\u062f\u0627\u0631\u062f"],"1538":["\u062a\u0627\u0631\u064a\u062e \u0634\u0631\u0648\u0639"],"1539":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639:"],"1540":["\u0634\u0631\u0648\u0639 \u0642\u06cc\u0645\u062a"],"1541":["\u062a\u0623\u06cc\u06cc\u062f \u0631\u0627 \u0634\u0631\u0648\u0639 \u06a9\u0646\u06cc\u062f"],"1542":["\u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639:"],"1543":["\u0628\u0631\u0627\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a \u0633\u0637\u062d \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u0628\u0646\u0631 \u0634\u0631\u0648\u0639 \u06a9\u0646\u06cc\u062f"],"1544":["\u0627\u0633\u062a\u0627\u0646"],"1545":["\u0646\u0627\u0645 \u06a9\u0634\u0648\u0631"],"1546":["\u0628\u06cc\u0627\u0646\u06cc\u0647"],"1547":["\u0648\u0636\u0639\u06cc\u062a"],"1548":["\u0648\u0636\u0639\u06cc\u062a \u0628\u0631\u0627\u06cc \u0647\u062f\u0641 - \u0634\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647."],"1549":["\u067e\u0627\u0631\u0627\u0645\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u0628\u0627\u06cc\u062f \u0641\u0639\u0627\u0644 \u06cc\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0628\u0627\u0634\u062f"],"1550":["\u0645\u0648\u062c\u0648\u062f\u06cc"],"1551":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u062c\u0648\u062f\u06cc"],"1552":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u062c\u0648\u062f\u06cc:"],"1553":["\u0648\u0636\u0639\u06cc\u062a \u0627\u0646\u0628\u0627\u0631"],"1554":["\u062a\u0639\u062f\u0627\u062f \u0645\u0648\u062c\u0648\u062f\u06cc"],"1555":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0648\u062c\u0648\u062f\u06cc"],"1556":["\u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1557":["\u0627\u0631\u062a\u0641\u0627\u0639  \u0628\u0646\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1558":["\u0639\u0631\u0636 \u0628\u0646\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1559":["\u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1560":["\u0644\u06cc\u0633\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1561":["\u0645\u06a9\u0627\u0646 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1562":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1563":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647:"],"1564":["\u0646\u0638\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 "],"1565":["\u0646\u0638\u0631\u0627\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647 "],"1566":["\u0646\u0638\u0631\u0627\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc "],"1567":["\u0633\u0626\u0648 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1568":["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1569":["\u0628\u0627\u0632\u062f\u06cc\u062f \u06a9\u0646\u0646\u062f\u06af\u0627\u0646 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1570":["\u0644\u06cc\u0633\u062a \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0647\u0627"],"1571":["\u062a\u0633\u0648\u06cc\u0647 \u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e"],"1572":["\u0645\u062d\u0644\u06cc \u0628\u0631\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a \u062e\u0637"],"1573":["\u0627\u062a\u0635\u0627\u0644 \u0627\u0633\u062a\u0631\u06cc\u067e"],"1574":["\u062e\u0637\u0627\u06cc \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a\u0631\u06cc\u067e: %s"],"1575":["\u062e\u0637\u0627 Stripe : \u0644\u0637\u0641\u0627 \u06a9\u0644\u06cc\u062f \u0642\u0627\u0628\u0644 \u0627\u0646\u062a\u0634\u0627\u0631 \u062e\u0648\u062f \u0631\u0627  \u003Ca href=\"%s\"\u003E\u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"1576":["\u062e\u0637\u0627 Stripe : \u0644\u0637\u0641\u0627 \u06a9\u0644\u06cc\u062f \u0645\u062e\u0641\u06cc \u062e\u0648\u062f \u0631\u0627  \u003Ca href=\"%s\"\u003E\u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0648\u0627\u0631\u062f \u06a9\u0646\u06cc\u062f."],"1577":["\u062e\u0637\u0627 \u0627\u0633\u062a\u0631\u06cc\u067e: \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u0645\u062e\u0641\u06cc \u0648 \u0642\u0627\u0628\u0644 \u0627\u0646\u062a\u0634\u0627\u0631 \u0634\u0645\u0627 \u0645\u0637\u0627\u0628\u0642\u062a \u062f\u0627\u0631\u0646\u062f. \u0644\u0637\u0641\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f"],"1578":["\u062f\u0631\u0648\u0627\u0632\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0646\u0634\u062f\u0647 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631 \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"1579":["\u0646\u0648\u0627\u0631 \u062e\u0637 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0627\u0645\u0627 \u003Ca href=\"%s\"\"\u003E \u06af\u0632\u06cc\u0646\u0647 SSL \u003C/a\u003E \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0627\u0633\u062a. \u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0645\u0627 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0627\u0645\u0646 \u0646\u0628\u0627\u0634\u062f! \u0644\u0637\u0641\u0627 SSL \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u0648 \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062d\u0627\u0635\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0633\u0631\u0648\u0631 \u0634\u0645\u0627 \u06cc\u06a9 \u06af\u0648\u0627\u0647\u06cc\u0646\u0627\u0645\u0647 SSL \u0645\u0639\u062a\u0628\u0631 \u062f\u0627\u0631\u062f - \u0627\u0633\u062a\u0631\u06cc\u067e \u062a\u0646\u0647\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0633\u062a \u06a9\u0627\u0631 \u0645\u06cc \u06a9\u0646\u062f."],"1580":["\u0627\u06a9\u0646\u0648\u0646 Stripe \u0627\u0632 stripe.js \u0628\u0631\u0627\u06cc \u0627\u0645\u0646\u06cc\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc \u06a9\u0646\u062f \u0648 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f WooCommerce 1.5.8 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627 WooCommerce \u0631\u0627 \u0628\u0631\u0627\u06cc \u0627\u062f\u0627\u0645\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 Stripe \u0628\u0647 \u0631\u0648\u0632 \u06a9\u0646\u06cc\u062f. "],"1581":["\u0627\u0633\u062a\u0631\u06cc\u067e  \u0628\u0627 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062f\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0628\u0627 \u0627\u0631\u0633\u0627\u0644 \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0628\u0631\u0627\u06cc \u062a\u0627\u06cc\u06cc\u062f \u06a9\u0627\u0631 \u0645\u06cc \u06a9\u0646\u062f."],"1582":["\u0632\u06cc\u0631 \u0633\u0641\u0627\u0631\u0634 \u0627\u0632"],"1583":["\u0645\u0648\u0636\u0648\u0639"],"1584":["\u0645\u0648\u0636\u0648\u0639:"],"1585":["\u0645\u0648\u0636\u0648\u0639 \u0627\u06cc\u0645\u06cc\u0644."],"1586":["\u0627\u0631\u0633\u0627\u0644"],"1587":["\u0627\u0631\u0633\u0627\u0644 "],"1588":["\u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a %s"],"1589":["\u0627\u0631\u0633\u0627\u0644 \u062f\u06cc\u062f\u06af\u0627\u0647"],"1590":["\u062b\u0628\u062a \u0634\u062f\u0647 \u062f\u0631 "],"1591":["\u0639\u0636\u0648 \u0634\u062f\u0647"],"1592":["\u0627\u0639\u0636\u0627"],"1593":["\u0627\u0634\u062a\u0631\u0627\u06a9 %s \u062f\u0631 %s"],"1594":["\u0627\u06cc\u0645\u06cc\u0644 \u0627\u0634\u062a\u0631\u0627\u06a9"],"1595":["\u067e\u06a9 \u0627\u0634\u062a\u0631\u0627\u06a9"],"1596":["\u0627\u0639\u0644\u0627\u0646 \u0644\u063a\u0648 \u067e\u06a9\u06cc\u062c \u0627\u0634\u062a\u0631\u0627\u06a9"],"1597":["\u0644\u06cc\u0633\u062a \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0631\u0641\u062a\u0647"],"1598":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0628\u0627 \u067e\u06cc \u067e\u0627\u0644 \u0644\u063a\u0648 \u0634\u062f"],"1599":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u200c\u0647\u0627"],"1600":["\u0645\u0648\u0641\u0642\u06cc\u062a \u0622\u0645\u06cc\u0632!"],"1601":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0644\u063a\u0648 \u0634\u062f"],"1602":["\u062e\u0644\u0627\u0635\u0647 \u0627\u06cc \u0627\u0632 \u0645\u062d\u0635\u0648\u0644:"],"1603":["\u06cc\u06a9\u0634\u0646\u0628\u0647"],"1604":["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"1605":["\u0645\u062a\u0646 \u062f\u06a9\u0645\u0647 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"1606":["\u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"1607":["\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u067e\u0633\u062a \u0647\u0627 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc"],"1608":["\u0633\u0648\u0626\u062f"],"1609":["\u062d\u0627\u0644\u062a \u062a\u0633\u062a \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a. \u062f\u0631 \u062d\u0627\u0644\u062a \u062a\u0633\u062a\u060c \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0632 \u0634\u0645\u0627\u0631\u0647 \u06a9\u0627\u0631\u062a 4242424242424242 \u0628\u0627 \u0647\u0631 CVC \u0648 \u062a\u0627\u0631\u06cc\u062e \u0627\u0646\u0642\u0636\u0627 \u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f."],"1610":["\u0628\u0631\u0686\u0633\u0628\u200c\u0647\u0627"],"1611":["\u0645\u0627\u0644\u06cc\u0627\u062a"],"1612":["\u0631\u062f\u0647 \u0645\u0627\u0644\u06cc\u0627\u062a"],"1613":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0644\u06cc\u0627\u062a"],"1614":["\u062c\u0645\u0639 \u0645\u0627\u0644\u06cc\u0627\u062a"],"1615":["\u06a9\u0644\u0627\u0633 \u0645\u0627\u0644\u06cc\u0627\u062a\u06cc"],"1616":["\u06af\u0631\u0648\u0647 \u0645\u0627\u0644\u06cc\u0627\u062a:"],"1617":["\u0646\u0631\u062e\u200c\u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u062a\u0639\u0631\u06cc\u0641 \u062f\u0631 \u0646\u0638\u0645 \u062e\u0627\u0635\u06cc \u0647\u0633\u062a\u0646\u062f (10 \u0633\u062a\u0648\u0646).  \u003Ca href=\"%s\"\u003E \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0646\u0645\u0648\u0646\u0647 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f\u003C/a\u003E. "],"1618":["\u0648\u0636\u0639\u06cc\u062a \u0645\u0627\u0644\u06cc\u0627\u062a "],"1619":["\u0647\u06cc\u0686"],"1620":["\u0645\u0634\u0645\u0648\u0644 \u0645\u0627\u0644\u06cc\u0627\u062a"],"1621":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0634\u062a\u0631\u06cc \u062a\u0633\u062a"],"1622":["\u0622\u0632\u0645\u0648\u0646 \u0627\u0646\u062a\u0634\u0627\u0631 \u06a9\u0644\u06cc\u062f"],"1623":["\u062a\u0633\u062a \u06a9\u0644\u06cc\u062f \u0631\u0627\u0632"],"1624":["\u0627\u0639\u062a\u0628\u0627\u0631 \u062a\u0633\u062a"],"1625":["\u062d\u0627\u0644\u062a \u062a\u0633\u062a"],"1626":["\u0628\u0627 \u062a\u0634\u06a9\u0631. \u062a\u06cc\u06a9\u062a \u0634\u0645\u0627 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0634\u062f!"],"1627":["\u0627\u0632 \u0627\u0631\u0627\u0626\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647 \u0634\u0645\u0627 \u0645\u062a\u0634\u06a9\u0631\u06cc\u0645! "],"1628":["%s \u0642\u0627\u0628\u0644 \u062d\u0630\u0641 \u0646\u06cc\u0633\u062a."],"1629":["\u0641\u0627\u06cc\u0644 CSV \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a."],"1630":["\u0645\u0648\u062c\u0648\u062f\u06cc \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f."],"1631":["\u0645\u0642\u062f\u0627\u0631 \u062a\u062e\u0641\u06cc\u0641 \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u06cc\u062f \u0639\u062f\u062f\u06cc \u0628\u0627\u0634\u062f\u060c \u062d\u062a\u06cc \u0627\u06af\u0631 \u06cc\u06a9 \u062f\u0631\u0635\u062f \u062a\u0646\u0638\u06cc\u0645 \u0634\u0648\u062f."],"1632":["\u0645\u0628\u0644\u063a \u062f\u0631\u062e\u0648\u0627\u0633\u062a\u06cc \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u06cc\u062f \u0639\u062f\u062f\u06cc \u0628\u0627\u0634\u062f"],"1633":["\u0627\u0637\u0644\u0627\u0639\u06cc\u0647 \u0642\u0627\u0628\u0644 \u062d\u0630\u0641 \u0646\u06cc\u0633\u062a."],"1634":["\u0645\u062d\u062a\u0648\u0627\u06cc \u062f\u06cc\u062f\u06af\u0627\u0647."],"1635":["\u0647\u0632\u06cc\u0646\u0647 \u0628\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062f\u0631 \u0638\u0627\u0647\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f. \u062e\u0627\u0644\u06cc \u0628\u06af\u0630\u0627\u0631\u06cc\u062f \u062a\u0627 \u0628\u0631\u0627\u06cc \u0634\u0645\u0627 \u0645\u062d\u0627\u0633\u0628\u0647 \u0634\u0648\u062f. \u0627\u06af\u0631 \u0631\u0632\u0631\u0648 \u062f\u0627\u0631\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0645\u062a\u0646\u0648\u0639 \u0628\u0627\u0634\u062f\u060c \u0628\u0627 \u06a9\u0644\u0645\u0647 \"\u0627\u0632:\" \u067e\u06cc\u0634\u0648\u0646\u062f \u062e\u0648\u0627\u0647\u062f \u0634\u062f."],"1636":["\u06a9\u0634\u0648\u0631\u06cc \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0627\u0646\u062c\u0627 \u062d\u0645\u0644 \u0645\u06cc \u0634\u0648\u062f"],"1637":["\u06a9\u062f \u06a9\u0648\u067e\u0646 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f"],"1638":["\u06a9\u062f \u06a9\u0648\u067e\u0646 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u062e\u0627\u0644\u06cc \u0628\u0627\u0634\u062f."],"1639":["\u062a\u0627\u0631\u06cc\u062e \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0627\u0633\u062a."],"1640":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0645\u0646\u0642\u0636\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 GMT."],"1641":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0645\u0646\u0642\u0636\u06cc \u0634\u062f\u0647 \u0627\u0633\u062a\u060c \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a."],"1642":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 GMT."],"1643":["\u062a\u0627\u0631\u06cc\u062e \u06a9\u0648\u067e\u0646 \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u0627\u0633\u062a."],"1644":["\u062a\u0627\u0631\u06cc\u062e \u0622\u062e\u0631\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 GMT \u062a\u063a\u06cc\u06cc\u0631 \u06a9\u0631\u062f."],"1645":["\u062a\u0627\u0631\u06cc\u062e \u0622\u062e\u0631\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u062a\u063a\u06cc\u06cc\u0631 \u06a9\u0631\u062f\u0647 \u0627\u0633\u062a."],"1646":["\u062a\u0627\u0631\u06cc\u062e \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc\u060c \u0647\u0645\u0627\u0646\u0646\u062f GMT."],"1647":["\u062a\u0627\u0631\u06cc\u062e \u0628\u0631\u0631\u0633\u06cc \u062f\u0631 \u0645\u0646\u0637\u0642\u0647 \u0632\u0645\u0627\u0646\u06cc \u0633\u0627\u06cc\u062a \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0627\u0633\u062a."],"1648":["\u0641\u0627\u06cc\u0644 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f\u060c \u0644\u0637\u0641\u0627 \u062f\u0648\u0628\u0627\u0631\u0647 \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"1649":["\u0641\u0627\u06cc\u0644 \u062e\u0627\u0644\u06cc \u0627\u0633\u062a\u060c \u0644\u0637\u0641\u0627\u064b \u062f\u0648\u0628\u0627\u0631\u0647 \u0628\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u062c\u062f\u06cc\u062f \u0627\u0645\u062a\u062d\u0627\u0646 \u06a9\u0646\u06cc\u062f."],"1650":["\u0631\u0632\u0631\u0648 \u0630\u06cc\u0644 \u0628\u0647 \u0648\u0633\u06cc\u0644\u0647 \u0645\u0634\u062a\u0631\u06cc \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a.  \u062c\u0632\u0626\u06cc\u0627\u062a \u0644\u063a\u0648 \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648\u060c \u062f\u0631 \u0632\u06cc\u0631 \u0622\u0645\u062f\u0647 \u0627\u0633\u062a."],"1651":["\u0628\u0631\u0686\u0633\u0628 \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u062f\u0631 \u0642\u0633\u0645\u062a \u0638\u0627\u0647\u0631\u06cc \u0627\u06af\u0631 \u0645\u0646\u0627\u0628\u0639 \u0645\u0634\u062a\u0631\u06cc \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u0628\u0627\u0634\u062f."],"1652":[" \u062a\u0639\u062f\u0627\u062f \u0627\u0648\u0644\u0648\u06cc\u062a \u067e\u0627\u06cc\u06cc\u0646 \u062a\u0631\u060c \u0632\u0648\u062f\u062a\u0631 \u0627\u06cc\u0646 \u0642\u0627\u0646\u0648\u0646 \u0627\u0639\u0645\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f. \u0628\u0647 \u0637\u0648\u0631 \u067e\u06cc\u0634 \u0641\u0631\u0636\u060c \u0642\u0648\u0627\u0646\u06cc\u0646 \u062c\u0647\u0627\u0646\u06cc \u0631\u0627 \u0645\u0642\u062f\u0645 \u0628\u0631 \u0642\u0648\u0627\u0646\u06cc\u0646 \u06a9\u0627\u0644\u0627 \u0631\u0627 \u06a9\u0647 \u0645\u0642\u062f\u0645 \u0628\u0631 \u0627\u062d\u06a9\u0627\u0645 \u0645\u0646\u0627\u0628\u0639. \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u0639\u062f\u0627\u062f \u0627\u0648\u0644\u0648\u06cc\u062a \u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0642\u0648\u0627\u0646\u06cc\u0646 \u062f\u0631 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0645\u062e\u062a\u0644\u0641 \u0631\u0627 \u0627\u062c\u0631\u0627 \u06a9\u0646\u062f."],"1653":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u062a\u0639\u062f\u0627\u062f \u0634\u062e\u0635 \u062f\u0631 \u0647\u0631 \u0631\u0632\u0631\u0648"],"1654":["\u062a\u0648\u0636\u06cc\u062d \u0645\u062a\u0627 \u0627\u063a\u0644\u0628 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646 \u0633\u06cc\u0627\u0647 \u0648 \u0633\u0641\u06cc\u062f \u062a\u062d\u062a \u0639\u0646\u0648\u0627\u0646 \u0645\u0637\u0644\u0628 \u062f\u0631 \u0646\u062a\u06cc\u062c\u0647 \u062c\u0633\u062a\u062c\u0648 \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f. \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0631 \u06a9\u0627\u0641\u06cc\u0633\u062a \u0645\u062a\u0646\u06cc \u06a9\u0647 \u0634\u0627\u0645\u0644 \u06a9\u0644\u0645\u0647 \u06a9\u0644\u06cc\u062f\u06cc \u0627\u0633\u062a \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u06a9\u0627\u062f\u0631 \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f \u0648 \u0647\u0645\u0686\u0646\u06cc\u0646 \u0628\u0627\u06cc\u062f \u06a9\u0645\u062a\u0631 \u0627\u0632 156 \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631 \u0628\u0627\u0634\u062f."],"1655":["\u062d\u062f\u0627\u0642\u0644 \u062a\u0639\u062f\u0627\u062f \u0634\u062e\u0635 \u062f\u0631 \u0647\u0631 \u0631\u0632\u0631\u0648"],"1656":["\u0627\u06cc\u0646 \u0645\u0627\u0698\u0648\u0644 \u0646\u0627\u0645\u0639\u062a\u0628\u0631 \u0627\u0633\u062a"],"1657":["\u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0627\u0632 \u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f. \u0628\u0631\u0627\u06cc \u062d\u0630\u0641 \u0628\u0647 '%s' \u062a\u0646\u0638\u06cc\u0645 \u06a9\u0646\u06cc\u062f."],"1658":["\u0627\u06cc\u0646 \u0646\u0648\u0634\u062a\u0647 \u0642\u0628\u0644\u0627\u064b \u062d\u0630\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a."],"1659":["\u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f."],"1660":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a."],"1661":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644\u062a \"\u062f\u0631 \u062d\u0627\u0644 \u0627\u0646\u062a\u0638\u0627\u0631\" \u0627\u0633\u062a."],"1662":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u0648\u0636\u0639\u06cc\u062a \"\u062f\u0631 \u062d\u0627\u0644 \u0627\u0646\u062a\u0638\u0627\u0631\" \u0627\u0633\u062a."],"1663":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644\u062a \"\u0627\u0646\u062a\u0634\u0627\u0631\" \u0627\u0633\u062a. \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0647\u0631 \u06a9\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u062f."],"1664":["\u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u0648\u0636\u0639\u06cc\u062a \"\u0627\u0646\u062a\u0634\u0627\u0631\" \u0627\u0633\u062a. \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646\u060c \u0647\u0631 \u06a9\u0633 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u062f."],"1665":["\u062a\u0646\u0647\u0627 \u06cc\u06a9 \u0645\u06a9\u0627\u0646 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f"],"1666":["\u0627\u0633\u062a\u0627\u0646\u06cc \u06a9\u0647 \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0627\u0646\u062c\u0627 \u062d\u0645\u0644 \u0645\u06cc \u0634\u0648\u062f"],"1667":["\u0632\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0628\u0631\u0627\u06cc \u062a\u062d\u0648\u06cc\u0644 \u0642\u0628\u0644 \u0627\u0632 \u0627\u0631\u0633\u0627\u0644 \u06a9\u0627\u0644\u0627"],"1668":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647\u200c\u0627\u0646\u062f."],"1669":["\u0645\u0634\u06a9\u0644\u06cc \u062f\u0631 \u0627\u0631\u062a\u0628\u0627\u0637 \u0628\u0627 \u062f\u0631\u0648\u0627\u0632\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0648\u062c\u0648\u062f \u062f\u0627\u0634\u062a."],"1670":["\u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u0641\u0627\u06cc\u0644 WXR   \u062e\u0637\u0627\u06cc\u06cc \u0631\u062e  \u062f\u0627\u062f"],"1671":["\u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0628\u0647 \u0635\u0648\u0631\u062a \u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0628\u0631 \u0627\u0633\u0627\u0633 \u06a9\u0644\u0627\u0633 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0645\u062d\u0635\u0648\u0644 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc \u06af\u0631\u062f\u062f"],"1672":["\u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627 \u0628\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647(\u0647\u0627) \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f \u06a9\u0647 \u062f\u0631 \u06cc\u06a9 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0627\u0633\u062a "],"1673":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a\u060c \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627 \u0628\u0647 \u06af\u06cc\u0631\u0646\u062f\u0647 \u0647\u0627\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f"],"1674":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u067e\u0631\u062f\u0627\u0632\u0634 \u0645\u06cc \u0634\u0648\u062f\u060c \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0627 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0641\u0631\u0633\u062a\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f"],"1675":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062f\u0631 \u0645\u0648\u0642\u06cc\u062a \u0645\u06a9\u0627\u0646\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u0646\u06cc\u0633\u062a\u0646\u062f: %s"],"1676":["\u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0627\u06cc\u06cc\u062f \u0634\u0645\u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b \u0622\u0646 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u0648 \u0627\u06af\u0631 \u062a\u0627\u0631\u06cc\u062e \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0627\u0633\u062a \u06cc\u0627 \u0646\u0647\u060c \u0627\u0637\u0644\u0627\u0639 \u062f\u0647\u06cc\u062f."],"1677":["\u0627\u06cc\u0646 \u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0631\u0627 \u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u0628\u06cc\u0646\u062f \u06a9\u0646\u062a\u0631\u0644 \u0645\u06cc \u06a9\u0646\u062f."],"1678":["\u0627\u06cc\u0646 \u06a9\u0646\u062a\u0631\u0644 \u0639\u0646\u0648\u0627\u0646\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f \u06a9\u0647 \u0645\u0634\u062a\u0631\u06cc \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u067e\u0631\u062f\u0627\u062e\u062a \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0622\u0646 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u062f"],"1679":["\u0645\u0634\u06a9\u0644\u06cc \u0631\u062e \u062f\u0627\u062f"],"1680":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u062d\u0631\u0627\u062c \u062c\u062f\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc \u0634\u0648\u062f\u060c \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0645\u062f\u06cc\u0631 \u0648 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f"],"1681":["\u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0631\u0632\u0631\u0648 \u062a\u0648\u0633\u0637 \u0645\u0634\u062a\u0631\u06cc \u0644\u063a\u0648 \u0645\u06cc\u200c\u0634\u0648\u062f \u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0645\u062f\u06cc\u0631 \u0648 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0631\u0633\u0627\u0644 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"1682":["\u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0627\u0632 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u062f\u06cc\u0631\u06cc\u062a \u0641\u0639\u0627\u0644 \u0645\u06cc \u0634\u0648\u062f\u060c \u0628\u0647 \u06cc\u06a9 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0638\u06cc\u0645 \u0645\u06cc \u0634\u0648\u062f"],"1683":["\u0627\u06cc\u0646 \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u062d\u0633\u0627\u0628 \u0627\u0648 \u062a\u0648\u0633\u0637 \u0645\u062f\u06cc\u0631 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a \u062a\u0646\u0638\u06cc\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1684":["\u0627\u06cc\u0646 \u0644\u06cc\u0633\u062a\u06cc \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u0645\u0639\u0644\u0642 \u0627\u0633\u062a \u06a9\u0647 \u062f\u0631 \u0628\u0627\u0632\u0627\u0631 \u062b\u0628\u062a \u0646\u0627\u0645 \u06a9\u0631\u062f\u0647 \u0627\u0646\u062f \u0627\u0645\u0627 \u0647\u0646\u0648\u0632 \u0641\u0639\u0627\u0644 \u0646\u0634\u062f\u0647 \u0627\u0646\u062f. \u0622\u0646\u0647\u0627 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f \u062a\u0627 \u0641\u0631\u0648\u0634 \u0631\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0646\u06cc\u062f."],"1685":["\u0627\u06cc\u0646 \u06cc\u06a9 \u067e\u0644\u0627\u06af\u06cc\u0646 \u0645\u0639\u062a\u0628\u0631 \u0646\u06cc\u0633\u062a"],"1686":["\u0627\u06cc\u0646 \u0645\u0627\u0644 \u0634\u0645\u0627 \u0646\u06cc\u0633\u062a\u060c \u0633\u0648\u06af\u0646\u062f \u0645\u06cc\u200c\u062e\u0648\u0631\u0645!"],"1687":["\u0627\u06cc\u0646 \u0622\u062f\u0631\u0633 \u0648 \u06cc\u0627 \u0645\u0633\u06cc\u0631 \u0641\u0627\u06cc\u0644\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f \u06a9\u0647 \u0645\u0634\u062a\u0631\u06cc \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u0628\u0647 \u0627\u0646 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u06cc \u06cc\u0627\u0628\u062f."],"1688":["\u0627\u06cc\u0646 \u0622\u062f\u0631\u0633 \u06cc\u0627 \u0645\u0633\u06cc\u0631 \u0642\u0637\u0639\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0634\u062a\u0631\u06cc \u0628\u0647 \u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0633\u062a. \u0622\u062f\u0631\u0633 \u0648\u0627\u0631\u062f \u0634\u062f\u0647 \u0628\u0627\u06cc\u062f \u0631\u0645\u0632\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0627\u0634\u062f."],"1689":["\u0627\u06cc\u0646 \u0642\u06cc\u0645\u062a \u067e\u0627\u06cc\u0647 \u0627\u0633\u062a \u0648 \u0647\u0632\u06cc\u0646\u0647 \u0634\u0631\u0648\u0639 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0647\u0631 \u0645\u062d\u0635\u0648\u0644\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f."],"1690":["\u0627\u06cc\u0646 \u0646\u0648\u0639 \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u0628\u0631\u0627\u06cc \u0647\u0632\u06cc\u0646\u0647 \u0645\u062f\u06cc\u0631 \u0627\u0633\u062a"],"1691":["\u0627\u06cc\u0646 \u0647\u0632\u06cc\u0646\u0647 \u062f\u0631 \u0647\u0631 \u0628\u0644\u0648\u06a9 \u0631\u0632\u0631\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a. \u062a\u0645\u0627\u0645 \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 (\u0628\u0631\u0627\u06cc \u0645\u0646\u0627\u0628\u0639 \u0648 \u0627\u0641\u0631\u0627\u062f) \u0628\u0647 \u0627\u06cc\u0646 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc \u0634\u0648\u062f."],"1692":["\u0627\u06cc\u0646 \u067e\u06cc\u0627\u0645 \u062e\u0637\u0627 \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u062e\u0631\u06cc\u062f\u0627\u0631 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f \u06a9\u0647 \u062f\u0631 \u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f \u0628\u0633\u06cc\u0627\u0631\u06cc \u0627\u0632 \u0627\u0642\u0644\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0628\u0647 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0628\u0647 \u0639\u0644\u062a \u0645\u062d\u062f\u0648\u062f\u06cc\u062a PayPal \u0627\u0633\u062a. "],"1693":["\u0627\u06cc\u0646 \u0646\u0627\u0645 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0645\u06cc \u0628\u0627\u0634\u062f \u06a9\u0647 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc \u0646\u0634\u0627\u0646 \u062f\u0627\u062f\u0647 \u0645\u06cc \u0634\u0648\u062f."],"1694":["\u06a9\u0644 \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0633\u0641\u0627\u0631\u0634"],"1695":["\u0627\u06cc\u0646 \u062a\u062e\u0641\u06cc\u0641 \u06a9\u0644 \u0627\u0633\u062a. \u062a\u062e\u0641\u06cc\u0641 \u062f\u0631 \u0647\u0631 \u0645\u0648\u0631\u062f \u062f\u0631 \u06cc\u06a9 \u062e\u0637 \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u0627\u0633\u062a."],"1696":["\u0627\u06cc\u0646 \u0628\u0647 \u0634\u0645\u0627 \u0627\u06cc\u0646 \u0627\u0645\u06a9\u0627\u0646 \u0631\u0627 \u0645\u06cc \u062f\u0647\u062f \u06a9\u0647 \u06a9\u062f\u0627\u0645 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0628\u062e\u0634\u06cc \u0627\u0632 \u0627\u06cc\u0646 \u06af\u0631\u0648\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f."],"1697":["\u0641\u0631\u0648\u0634 \u0627\u06cc\u0646 \u0645\u0627\u0647"],"1698":["\u0627\u06cc\u0646 \u0646\u06a9\u062a\u0647 \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646\u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u06a9\u0631\u062f \u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u0628\u0648\u062f \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"1699":["\u0627\u06cc\u0646 \u0646\u06a9\u062a\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u06a9\u0627\u0631\u0628\u0631 \u062a\u0644\u0627\u0634 \u0645\u06cc\u200c\u06a9\u0646\u062f \u0648\u0627\u0631\u062f \u0633\u0627\u06cc\u062a \u0634\u0648\u062f \u0628\u062f\u0648\u0646 \u062a\u0627\u06cc\u06cc\u062f \u0627\u06cc\u0645\u06cc\u0644 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f."],"1700":["\u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0631\u0627 \u062a\u062d\u062a \u062a\u0627\u062b\u06cc\u0631 \u0686\u06af\u0648\u0646\u0647 \u0631\u0632\u0631\u0648 \u0628\u0631\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0628\u0648\u062f\u0646 \u0628\u0631\u0631\u0633\u06cc \u0645\u06cc \u0634\u0648\u062f."],"1701":["\u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0628\u0631 \u0646\u062d\u0648\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0642\u0648\u0627\u0646\u06cc\u0646 \u0632\u06cc\u0631 \u062a\u0627\u062b\u06cc\u0631 \u0645\u06cc\u200c\u06af\u0630\u0627\u0631\u062f."],"1702":["\u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0634\u0627\u0645\u0644 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0631 \u0633\u0631\u0627\u0633\u0631 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627\u060c \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627 \u0648 \u0633\u06cc\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a."],"1703":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u062f\u0631 \u0645\u0648\u0642\u06cc\u062a \u0645\u06a9\u0627\u0646\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u0646\u06cc\u0633\u062a: %s"],"1704":["\u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u062f\u0627\u0631\u062f"],"1705":["\u0627\u06cc\u0646 \u0628\u0627\u0632 \u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0642\u0631\u0627\u0631 \u0646\u062f\u0627\u0631\u062f. \u0641\u0642\u0637 \u062f\u0631\u062e\u0648\u0627\u0633\u062a\u200c \u0628\u0627 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062a\u063a\u06cc\u06cc\u0631 \u06a9\u0646\u062f"],"1706":["\u0627\u06cc\u0646 \u062a\u06cc\u06a9\u062a \u0628\u0633\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a. \u0627\u06af\u0631 \u0633\u0648\u0627\u0644 \u062f\u06cc\u06af\u0631\u06cc \u062f\u0627\u0631\u06cc\u062f\u060c \u062a\u06cc\u06a9\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062c\u062f\u06cc\u062f\u06cc \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u06cc\u062f."],"1707":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u0628\u0647 \u0634\u0645\u0627 \u0627\u0645\u06a9\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f \u062a\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 CSV \u062d\u0627\u0648\u06cc \u0644\u06cc\u0633\u062a\u06cc \u0627\u0632 \u0647\u0645\u0647 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u062a\u0648\u0644\u06cc\u062f \u0648 \u062f\u0627\u0646\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f."],"1708":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u0628\u0647 \u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc (\u06cc\u0627 \u0627\u062f\u063a\u0627\u0645) \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0645\u062d\u0635\u0648\u0644 \u0628\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647 CSV \u0631\u0627 \u0645\u06cc \u062f\u0647\u062f. "],"1709":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u062a\u06a9\u0631\u0627\u0631\u06cc \u0627\u0632 \u062c\u062f\u0648\u0644 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u062f\u06a9\u0627\u0646 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u0645\u06cc \u06a9\u0646\u062f."],"1710":["\u0627\u06cc\u0646 \u0627\u0628\u0632\u0627\u0631 \u062a\u0645\u0627\u0645 \u0633\u0641\u0627\u0631\u0634\u0627\u062a \u0627\u0632 \u062c\u062f\u0648\u0644 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u062f\u06a9\u0627\u0646 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0631\u062f\u0647 \u0648 \u0622\u0646 \u0631\u0627 \u0628\u0627\u0632 \u0633\u0627\u0632\u06cc \u0645\u06cc \u06a9\u0646\u062f."],"1711":["\u0627\u06cc\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u0631\u0648\u0627\u0632\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0633\u062a\u0631\u06cc\u067e \u062e\u0648\u062f \u0631\u0627 \u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc \u0646\u06a9\u0631\u062f\u0647 \u0648 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f! "],"1712":["\u067e\u0646\u062c\u0634\u0646\u0628\u0647"],"1713":["\u062a\u06cc\u06a9\u062a \u0628\u0633\u062a\u0647 \u0634\u062f"],"1714":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u0645\u0627\u0646\u06cc"],"1715":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u0645\u0627\u0646\u06cc (\u062a\u0645\u0627\u0645 \u0647\u0641\u062a\u0647)"],"1716":["\u0645\u062d\u062f\u0648\u062f\u0647 \u0632\u0645\u0627\u0646\u06cc"],"1717":["\u0639\u0646\u0648\u0627\u0646"],"1718":["\u0639\u0646\u0648\u0627\u0646 :"],"1719":["\u0639\u0646\u0648\u0627\u0646:"],"1720":["\u0639\u0646\u0648\u0627\u0646 : "],"1721":["\u062a\u0627"],"1722":["\u0628\u0631\u0627\u06cc \u0644\u063a\u0648 \u0639\u0636\u0648\u06cc\u062a \u062e\u0648\u062f \u0627\u06cc\u0646\u062c\u0627 \u0631\u0627 \u06a9\u0644\u06cc\u06a9 \u06a9\u0646\u06cc\u062f &rarr;"],"1723":["\u062a\u0627:"],"1724":["\u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a"],"1725":["\u0627\u0628\u0632\u0627\u0631 \u0647\u0627"],"1726":["\u067e\u0631 \u0627\u0645\u062a\u06cc\u0627\u0632\u062a\u0631\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1727":["\u062f\u0631\u0622\u0645\u062f \u0628\u0627\u0644\u0627"],"1728":["\u067e\u0631\u0641\u0631\u0648\u0634 \u062a\u0631\u06cc\u0646"],"1729":["\u062a\u0627\u067e\u06cc\u06a9"],"1730":["\u062a\u06cc\u06a9\u062a \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1731":["\u0645\u0648\u0636\u0648\u0639\u0627\u062a"],"1732":["\u062c\u0645\u0639 \u06a9\u0644"],"1733":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062c\u0627\u0645\u0639"],"1734":["\u0645\u062c\u0645\u0648\u0639 \u062f\u0631\u0622\u0645\u062f"],"1735":["\u0645\u062c\u0645\u0648\u0639 \u062f\u0631\u0622\u0645\u062f \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"1736":["\u062c\u0645\u0639 \u06a9\u0644 \u0645\u062d\u0635\u0648\u0644\u0627\u062a"],"1737":["\u06a9\u0644 \u0645\u0648\u062c\u0648\u062f\u06cc \u0642\u0627\u0628\u0644 \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a"],"1738":["\u0632\u0628\u0627\u0644\u0647 \u0647\u0627"],"1739":["\u0632\u0628\u0627\u0644\u0647 \u0647\u0627 ("],"1740":["\u0632\u0628\u0627\u0644\u0647\u200c\u062f\u0627\u0646\u003Cspan class='count'\u003E(%s)\u003C/span\u003E"],"1741":["\u0633\u0647 \u0634\u0646\u0628\u0647"],"1742":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0646\u0631\u0645 \u0627\u0641\u0632\u0627\u0631 \u062a\u0648\u06cc\u0644\u06cc\u0648"],"1743":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u0648\u06cc\u06cc\u062a\u0631"],"1744":["\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u062a\u0648\u06cc\u06cc\u062a\u0631:"],"1745":["\u062a\u0635\u0648\u06cc\u0631 \u062a\u0648\u06cc\u06cc\u062a\u0631:"],"1746":["\u0639\u0646\u0648\u0627\u0646 \u062a\u0648\u06cc\u06cc\u062a\u0631:"],"1747":["\u0646\u0648\u0639"],"1748":["\u0627\u0645\u06a9\u0627\u0646 \u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f \u0628\u0627 \u0645\u062f\u06cc\u0631 \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f"],"1749":["\u0642\u0627\u062f\u0631 \u0628\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062a\u0635\u0648\u06cc\u0631 \"%s\" \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f."],"1750":["\u0644\u063a\u0648 \u062a\u0623\u06cc\u06cc\u062f"],"1751":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0647 \u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0634\u06cc."],"1752":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0647 \u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0645\u0646\u0628\u0639."],"1753":["\u0634\u0646\u0627\u0633\u0647 \u06cc \u0645\u0646\u062d\u0635\u0631 \u0628\u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644 \u0645\u062a\u063a\u06cc\u0631."],"1754":["\u0634\u0646\u0627\u0633\u0647 \u0645\u0646\u062d\u0635\u0631 \u0628\u0641\u0631\u062f \u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631."],"1755":["\u0646\u0627 \u0645\u062d\u062f\u0648\u062f"],"1756":["\u0645\u0646\u062a\u0634\u0631 \u0646\u0634\u062f\u0647"],"1757":["\u0639\u062f\u0645 \u0635\u062f\u0648\u0631 \u0645\u062c\u0648\u0632 \u0645\u0645\u0646\u0648\u0639 \u0627\u0633\u062a!"],"1758":["\u0622\u067e\u062f\u06cc\u062a"],"1759":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u062f \u062a\u062e\u0641\u06cc\u0641"],"1760":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0645\u062d\u0635\u0648\u0644"],"1761":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a"],"1762":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u067e\u0633\u062a"],"1763":["\u0627\u0631\u062a\u0642\u0627\u0621 \u0633\u0627\u0628 \u0628\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u06cc"],"1764":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062e\u062f\u0645\u0627\u062a \u067e\u06cc\u0634\u06cc\u0646 "],"1765":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u0627\u062c\u0627\u0632\u0647"],"1766":["\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0646\u0638\u0631 "],"1767":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f"],"1768":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062a\u062c\u0631\u0628\u0647 \u062e\u0648\u062f \u0631\u0627 \u0628\u0627 \u003Ca href='%s' target='_blank'\u003E%s\u003C/a\u003E"],"1769":["\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc"],"1770":["\u0622\u067e\u0644\u0648\u062f \u0641\u0627\u06cc\u0644 CSV "],"1771":["\u0622\u067e\u0644\u0648\u062f \u062a\u0635\u0648\u06cc\u0631"],"1772":["\u0622\u067e\u0644\u0648\u062f \u062a\u0635\u0648\u06cc\u0631 \u0645\u062d\u0635\u0648\u0644"],"1773":["\u062a\u0635\u0648\u06cc\u0631 \u06a9\u0627\u0648\u0631 \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0645\u0627\u0626\u06cc\u062f"],"1774":["\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u062a\u0635\u0648\u06cc\u0631"],"1775":["\u0628\u0627\u0631\u06af\u0632\u0627\u0631\u06cc \u0641\u0627\u06cc\u0644 \u0648 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc"],"1776":["\u0628\u0627\u0644\u0627 \u0631\u0641\u062a\u0646"],"1777":["Up-Sells \u0645\u062d\u0635\u0648\u0644\u0627\u062a\u06cc \u0647\u0633\u062a\u0646\u062f \u06a9\u0647 \u0634\u0645\u0627 \u0628\u0647 \u0645\u0634\u062a\u0631\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0645\u06cc\u200c\u062f\u0647\u06cc\u062f \u0628\u0647 \u062c\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u06cc \u06a9\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u06cc\u200c\u0628\u06cc\u0646\u0646\u062f \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0646\u0646\u062f \u06a9\u0647 \u0627\u0631\u0632\u0634\u0645\u0646\u062f\u062a\u0631 \u0648 \u0628\u0647\u062a\u0631 \u0648 \u06cc\u0627 \u06af\u0631\u0627\u0646\u200c\u062a\u0631 \u0647\u0633\u062a\u0646\u062f."],"1778":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 / \u062d\u062f\u0648\u062f"],"1779":["\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647"],"1780":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u0627\u0631\u062a \u0627\u0639\u062a\u0628\u0627\u0631\u06cc \u062c\u062f\u06cc\u062f"],"1781":["\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647"],"1782":["\u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0628\u0631\u0627\u06cc \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"1783":["\u0622\u062f\u0631\u0633 \u0627\u06cc\u0645\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631:"],"1784":["\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0645\u062a\u0635\u0644 \u0646\u06cc\u0633\u062a"],"1785":["\u0627\u0633\u0645 \u06a9\u0627\u0631\u0628\u0631"],"1786":["\u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc :"],"1787":["\u062a\u0639\u0637\u06cc\u0644\u0627\u062a (%d)"],"1788":["\u062a\u0639\u0637\u06cc\u0644\u0627\u062a\u003Cspan class=\"count\"\u003E(%s)\u003C/span\u003E"],"1789":["\u0627\u0639\u062a\u0628\u0627\u0631:"],"1790":["\u0645\u0642\u062f\u0627\u0631"],"1791":["\u0645\u062a\u063a\u06cc\u0631"],"1792":["\u0645\u062d\u0635\u0648\u0644 \u0645\u062a\u063a\u06cc\u0631"],"1793":["\u0645\u062a\u063a\u06cc\u0631"],"1794":["\u062a\u0646\u0648\u0639 #%s \u0627\u0632 %s"],"1795":["\u0634\u0646\u0627\u0633\u0647 \u0645\u062a\u063a\u06cc\u06cc\u0631:"],"1796":["\u0645\u062a\u063a\u06cc\u06cc\u0631 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f: \u0634\u0646\u0627\u0633\u0647 \u0627\u0635\u0644\u06cc \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f \u0648 \u0647\u0646\u0648\u0632 \u0646\u06cc\u0633\u062a."],"1797":["\u0634\u0631\u062d \u0645\u062a\u063a\u06cc\u0631"],"1798":["\u0642\u06cc\u0645\u062a \u0645\u062a\u063a\u06cc\u0631 (\u0636\u0631\u0648\u0631\u06cc) :"],"1799":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a"],"1800":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1801":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 :"],"1802":["\u067e\u06cc\u0634\u062e\u0648\u0627\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1803":["\u062f\u0631\u0627\u0645\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1804":["\u0634\u0646\u0627\u0633\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1805":["\u0644\u06cc\u0633\u062a \u06a9\u0631\u062f\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1806":["\u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1807":["\u0628\u0631\u0631\u0633\u06cc \u0645\u062d\u0635\u0648\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1808":["\u0641\u0631\u0645 \u062b\u0628\u062a \u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1809":["\u0646\u0638\u0631\u0627\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1810":["\u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1811":["\u06a9\u0627\u0631\u0645\u0646\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1812":["\u062a\u0627\u06cc\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647"],"1813":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u062c\u0627\u0632\u0647 \u0627\u0641\u0632\u0648\u062f\u0646 \u0633\u0641\u0627\u0631\u0634 \u0648 \u062a\u062e\u0641\u06cc\u0641 \u0631\u0627 \u062f\u0627\u0631\u062f"],"1814":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0645\u06cc\u062a\u0648\u0627\u0646\u062f \u0648\u0636\u0639\u06cc\u062a \u0628\u0631\u0631\u0633\u06cc \u0645\u062d\u0635\u0648\u0644 \u0631\u0627 \u0627\u0632 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u062f"],"1815":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0647\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0627\u06cc\u062c\u0627\u062f \u06a9\u0646\u062f"],"1816":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f"],"1817":["\u0641\u0631\u0648\u0634\u0646\u062f\u0647: "],"1818":["\u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646"],"1819":["\u062a\u0627\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a"],"1820":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0647\u0627\u06cc \u062a\u0627\u06cc\u06cc\u062f"],"1821":["\u062f\u0631\u0648\u0627\u0632\u0647 \u0647\u0627\u06cc \u062a\u0623\u06cc\u06cc\u062f \u067e\u06cc\u0627\u0645\u06a9\u06cc"],"1822":["\u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647 \u0647\u0627"],"1823":["\u062f\u06cc\u062f\u0646"],"1824":["\u0646\u0645\u0627\u06cc\u0634 \u0627\u0637\u0644\u0627\u0639\u06cc\u0647"],"1825":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062f\u06cc\u062f\u06af\u0627\u0647"],"1826":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062c\u0632\u0626\u06cc\u0627\u062a"],"1827":["\u0646\u0645\u0627\u06cc\u0634 \u0633\u0641\u0627\u0631\u0634"],"1828":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644"],"1829":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u062d\u0635\u0648\u0644&rarr;"],"1830":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1831":["\u0645\u0634\u0627\u0647\u062f\u0647 \u062a\u06cc\u06a9\u062a \u0647\u0627\u06cc \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"],"1832":["\u0645\u0634\u0627\u0647\u062f\u0647 \u067e\u0633\u062a"],"1833":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0631 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646"],"1834":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u062f\u0631 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 "],"1835":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u062d\u0631\u0627\u062c"],"1836":["\u0646\u0645\u0627\u06cc\u0634 \u0631\u0632\u0631\u0648 &rarr;"],"1837":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u0631\u0632\u0631\u0648"],"1838":["\u0645\u0634\u0627\u0647\u062f\u0647 \u06af\u0632\u0627\u0631\u0634 "],"1839":["\u062f\u06cc\u062f\u0646 \u0645\u062d\u0635\u0648\u0644\u0627\u062a "],"1840":["\u0645\u0634\u0627\u0647\u062f\u0647 \u0646\u0638\u0631"],"1841":["\u0646\u0631\u062e \u0647\u0627\u06cc \u0645\u0627\u0644\u06cc\u0627\u062a "],"1842":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631"],"1843":["\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648\u06cc \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u0623\u06cc\u06cc\u062f"],"1844":["\u0628\u0627\u0632\u062f\u06cc\u062f \u0647\u0627"],"1845":["\u0645\u062c\u0627\u0632\u06cc"],"1846":["\u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0645\u062c\u0627\u0632\u06cc"],"1847":["\u0648\u0627\u062d\u062f \u0627\u0642\u0627\u0645\u062a\u06cc \u0645\u062c\u0627\u0632\u06cc \u0642\u0627\u0628\u0644\u06cc\u062a \u0627\u0631\u0633\u0627\u0644 \u0646\u062f\u0627\u0631\u0646\u062f"],"1848":["\u0642\u0627\u0628\u0644 \u0631\u0648\u06cc\u062a"],"1849":["\u0642\u0627\u0628\u0644\u06cc\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u062f\u0631 \u0641\u0647\u0631\u0633\u062a "],"1850":["\u0642\u0627\u0628\u0644 \u0645\u0634\u0627\u0647\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0645\u062d\u0635\u0648\u0644"],"1851":["\u0628\u0627\u0632\u062f\u06cc\u062f \u0627\u0632 \u0641\u0631\u0648\u0634\u06af\u0627\u0647"],"1852":["\u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0627 \u0628\u0633\u062a\u0646 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0645\u0627 \u0628\u0647 \u0635\u0648\u0631\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0647 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a \u0628\u0631\u0648\u06cc\u062f"],"1853":["\u0645\u0627 \u0628\u0647 \u0634\u0645\u0627 \u062a\u0648\u0635\u06cc\u0647 \u0628\u0631\u0627\u06cc \u0648\u0631\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u0647 \u0637\u0648\u0631 \u0645\u0646\u0638\u0645 \u003Cstrong\u003E\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u067e\u0644\u0627\u06af\u06cc\u0646 \u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc\u003C/strong\u003E."],"1854":["\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647"],"1855":["\u0647\u0641\u062a\u0647 %s"],"1856":["\u0647\u0641\u062a\u0647"],"1857":["\u0648\u0632\u0646"],"1858":["\u0648\u0632\u0646 (%s) "],"1859":["\u0686\u0647 \u06af\u0632\u06cc\u0646\u0647 \u0627\u06cc \u0631\u0627 \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0645\u062d\u0635\u0648\u0644 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0631\u062c\u06cc\u062d \u0645\u06cc\u062f\u0647\u06cc\u062f \u061f"],"1860":["\u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u0646\u0633\u062e\u0647 \u062c\u062f\u06cc\u062f \u0627\u0641\u0632\u0648\u0646\u0647 \u062f\u06a9\u0627\u0646 \u0637\u0640\u0644\u0640\u0627 \u062a\u0640\u0640\u0640\u0640\u0645 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f !"],"1861":["\u0647\u0646\u06af\u0627\u0645 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a\u060c \u0627\u0642\u0644\u0627\u0645 \u0627\u0632 \u003Cstrong\u003E\u062a\u0646\u0647\u0627 \u06cc\u06a9\u003C/strong\u003E \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646 \u062f\u0631 \u06cc\u06a9 \u0633\u0641\u0627\u0631\u0634 \u062e\u0631\u06cc\u062f\u0627\u0631\u06cc \u06a9\u0631\u062f. \u0641\u0642\u0637 \u0628\u0627 \u003Cstrong\u003E\u067e\u0631\u062f\u0627\u062e\u062a \u0647\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0632\u0646\u062c\u06cc\u0631\u0647 \u0627\u06cc \u06a9\u0627\u0631 \u0645\u06cc\u003C/strong\u003E \u06a9\u0646\u062f \u0627\u06cc\u0646 \u06cc\u06a9 \u0631\u0627\u0647 \u062d\u0644 \u062e\u0648\u0628 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u0627\u0631 \u0627\u0633\u062a\u060c \u0632\u06cc\u0631\u0627 \u0627\u062e\u062a\u0644\u0627\u0641\u0627\u062a / \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a\u0647\u0627 \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0627\u0646\u062c\u0627\u0645 \u0645\u06cc \u0634\u0648\u062f\u060c \u0646\u0647 \u062a\u0648\u0633\u0637 \u0645\u062f\u06cc\u0631. \u003Cbr\u003E \u0647\u0634\u062f\u0627\u0631: \u0628\u0627 \u003Ci\u003E\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u003Cb\u003EChained Payment\u003C/b\u003E \u062f\u0631 \u062d\u0627\u0644\u06cc \u06a9\u0647 \u003Ca href=\"%s\" target=\"_blank\"\u003E\u06a9\u0645\u067e\u0646\u06cc \u0641\u0631\u0648\u0634\u0646\u062f\u0647\u003C/a\u003E 100 \u066a\u066a\u003C/i\u003E "],"1862":["\u06a9\u062f\u0627\u0645 \u0633\u062a\u0648\u0646 \u0628\u0627\u06cc\u062f \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f\u061f"],"1863":["\u06a9\u062f\u0627\u0645 \u0646\u0648\u0639 \u0645\u062d\u0635\u0648\u0644 \u0628\u0627\u06cc\u062f \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0634\u0648\u062f\u061f"],"1864":["\u0639\u0631\u0636 (%s) "],"1865":["\u0628\u0631\u062f\u0627\u0634\u062a"],"1866":["\u062d\u062f\u0627\u06a9\u062b\u0631 \u0628\u0631\u062f\u0627\u0634\u062a"],"1867":["\u0646\u0648\u0634\u062a\u0646 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u062f\u0633\u062a\u0648\u0631\u0627\u0644\u0639\u0645\u0644 \u062f\u0631 \u0645\u0648\u0631\u062f \u0627\u0633\u062a\u0631\u062f\u0627\u062f ( \u067e\u0633 \u062f\u0627\u062f\u0646) \u0634\u0645\u0627"],"1868":["\u0646\u0648\u0634\u062a\u0646 \u0634\u0631\u0627\u06cc\u0637 \u0648 \u062f\u0633\u062a\u0648\u0631\u0627\u0644\u0639\u0645\u0644 \u062f\u0631 \u0645\u0648\u0631\u062f \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0634\u0645\u0627"],"1869":["Y/m/d"],"1870":["Y/m/d g:i:s A"],"1871":["\u0633\u0627\u0644:"],"1872":["\u0628\u0644\u06cc"],"1873":["\u0628\u0644\u0647\u060c \u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0647\u0645\u0647 \u0645\u062a\u0627\u06cc \u062f\u0644\u062e\u0648\u0627\u0647"],"1874":["\u0634\u0645\u0627 \u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u003Ca href=\"%s\" target=\"_blank\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f \u003C/a\u003E "],"1875":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f  %d \u0645\u062d\u0635\u0648\u0644 \u062f\u06cc\u06af\u0631 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"1876":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u003Cspan\u003E%s\u003C/span\u003E \u0631\u0627 \u0628\u0631\u0627\u06cc \u003Cspan\u003E \u0631\u0648\u0632 \u0646\u0627\u0645\u062d\u062f\u0648\u062f\u003C/span\u003E \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"1877":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f  \u003Cspan\u003E%s\u003C/span\u003E \u0645\u062d\u0635\u0648\u0644 \u0628\u0631\u0627\u06cc  \u003Cspan\u003E%s\u003C/span\u003E  \u0631\u0648\u0632 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f."],"1878":["\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0627 \u06a9\u0644\u06cc\u06a9 \u0631\u0648\u06cc \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003Ca/\u003E \u0627\u06cc\u0646 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0631\u0627 \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f"],"1879":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0627\u0639\u0644\u0627\u0645\u06cc\u0647 \u0631\u0627 \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u062e\u0648\u062f \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f "],"1880":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0647 \u0641\u0639\u0627\u0644/ \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0628\u0631\u0627\u06cc \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062e\u0648\u062f \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f. \u0647\u0645\u0686\u0646\u06cc\u0646 \u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0632\u06cc\u0646\u0647 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644  \u0631\u0627 \u0628\u0631\u0627\u06cc \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f \u0648 \u06cc\u0627 \u0628\u0647 \u0627\u06cc\u062c\u0627\u062f \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0622\u0646 \u0628\u067e\u0631\u062f\u0627\u0632\u06cc\u062f."],"1881":["\u0634\u0645\u0627 \u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u06cc\u0634 \u0627\u0632 \u06cc\u06a9 \u0645\u062d\u0635\u0648\u0644 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u0631 \u0633\u0628\u062f \u062e\u0631\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f "],"1882":["\u0634\u0645\u0627 \u0642\u0627\u062f\u0631 \u0628\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0628\u0631\u0631\u0633\u06cc \u0646\u06cc\u0633\u062a\u06cc\u062f!"],"1883":["\u0634\u0645\u0627 \u0641\u0642\u0637 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0633\u062a\u0647 \u0647\u0627\u06cc \u063a\u06cc\u0631 \u062a\u06a9\u0631\u0627\u0631\u06cc \u0631\u0627 \u0627\u062e\u062a\u0635\u0627\u0635 \u062f\u0647\u06cc\u062f"],"1884":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0633\u062a\u0647 \u0647\u0627\u06cc \u0645\u062c\u0627\u0632 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0631\u0627 \u0644\u063a\u0648 \u06a9\u0646\u06cc\u062f. \u0627\u06af\u0631 \u062e\u0627\u0644\u06cc \u0628\u0627\u0634\u062f\u060c \u0637\u0628\u0642\u0647 \u0628\u0646\u062f\u06cc \u0627\u0632 \u067e\u06cc\u0634 \u062a\u0639\u0631\u06cc\u0641 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0628\u0633\u062a\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u062e\u0648\u0627\u0647\u062f \u0634\u062f "],"1885":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0627 \u0628\u0627 \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f"],"1886":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0631\u0627 \u0628\u0627 \u0631\u0641\u062a\u0646 \u0628\u0647 \u0627\u06cc\u0646\u062c\u0627 \u067e\u0631\u062f\u0627\u0632\u0634 \u06a9\u0646\u06cc\u062f: "],"1887":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u0628\u0627 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631\u06cc\u060c \u0646\u0627\u0645 \u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u06cc\u0627 \u0627\u06cc\u0645\u06cc\u0644 \u062c\u0633\u062a\u062c\u0648 \u06a9\u0646\u06cc\u062f."],"1888":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0647\u0645\u0647 \u0641\u0631\u0648\u0634\u0646\u062f\u06af\u0627\u0646 \u062b\u0628\u062a \u0634\u062f\u0647 \u062f\u0631 \u0628\u0627\u0632\u0627\u0631 \u062e\u0648\u062f \u0631\u0627 \u0628\u0627 \u062c\u0632\u0626\u06cc\u0627\u062a \u0648 \u0648\u0636\u0639\u06cc\u062a \u0622\u0646\u0647\u0627 \u0628\u0628\u06cc\u0646\u06cc\u062f."],"1889":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u0627 \u0631\u0641\u062a\u0646 \u0628\u0647 \u0627\u06cc\u0646\u062c\u0627 \u0628\u0628\u06cc\u0646\u06cc\u062f: "],"1890":["\u0634\u0645\u0627 \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u0648\u0636\u0639\u06cc\u062a \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u062f\u0647\u06cc\u062f \u0628\u0647 \u0633\u0627\u062f\u06af\u06cc \u0628\u0627 \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06cc\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u0622\u0646 \u0627\u0632 \u0627\u06cc\u0646\u062c\u0627."],"1891":["\u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0631\u0632\u0631\u0648 \u0631\u0627 \u062f\u0631 \u067e\u06cc\u0634\u062e\u0648\u0627\u0646 \u0645\u0634\u0627\u0647\u062f\u0647 \u0648 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0646\u06cc\u062f: %s"],"1892":["\u0628\u0627 \u06a9\u0644\u06cc\u06a9 \u0631\u0648\u06cc \u003Ca href=\"%s\"\u003E \u0627\u06cc\u0646\u062c\u0627 \u003C/a\u003E \u0645\u06cc \u062a\u0648\u0627\u0646\u06cc\u062f \u062c\u0632\u0626\u06cc\u0627\u062a \u0633\u0641\u0627\u0631\u0634 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f"],"1893":["\u0634\u0645\u0627 \u0646\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0628\u06cc\u0634\u062a\u0631 \u0627\u0632 \u0627\u06cc\u0646 \u0645\u062d\u0635\u0648\u0644 \u0628\u0641\u0631\u0648\u0634\u06cc\u062f \u06cc\u0627 \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f. \u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062e\u0648\u062f\u060c \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u0628\u0633\u0627\u06cc\u062a \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"1894":["\u0634\u0645\u0627 \u0646\u0645\u06cc\u062a\u0648\u0627\u0646\u06cc\u062f \u0645\u062d\u0635\u0648\u0644 \u0628\u0641\u0631\u0648\u0634\u06cc\u062f \u06cc\u0627 \u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u06cc\u062f. \u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644 \u06a9\u0631\u062f\u0646 \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062e\u0648\u062f\u060c \u0644\u0637\u0641\u0627 \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0648\u0628\u0633\u0627\u06cc\u062a \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."],"1895":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1896":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0648\u0636\u0639\u06cc\u062a \u0628\u0647 \u0635\u0648\u0631\u062a \u06af\u0631\u0648\u0647\u06cc \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1897":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0645\u0648\u062c\u0648\u062f\u06cc \u0646\u062f\u0627\u0631\u06cc\u062f."],"1898":["\u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0645\u062c\u0648\u0632 \u06a9\u0627\u0641\u06cc \u0646\u062f\u0627\u0631\u06cc\u062f"],"1899":["\u0634\u0645\u0627 \u06cc\u06a9 \u0628\u0633\u062a\u0647 \u0646\u0627\u0645\u062d\u062f\u0648\u062f \u062f\u0627\u0631\u06cc\u062f."],"1900":["\u0634\u0645\u0627 \u0642\u0628\u0644\u0627 \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062f\u0631 \u062d\u0627\u0644 \u067e\u0631\u062f\u0627\u0632\u0634 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u0633\u0641\u0627\u0631\u0634 \u062f\u0627\u0631\u06cc\u062f."],"1901":["\u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u0630\u062e\u06cc\u0631\u0647 \u06af\u0632\u06cc\u0646\u0647\u200c\u0647\u0627\u06cc \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1902":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0627\u0641\u0632\u0648\u062f\u0646 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1903":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0627\u0641\u0632\u0648\u062f\u0646 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1904":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1905":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0627\u06cc\u0646 \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1906":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u0646\u062f\u0627\u0631\u06cc\u062f"],"1907":["\u0634\u0645\u0627 \u0645\u062c\u0648\u0632 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0645\u0632\u0627\u06cc\u062f\u0647 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1908":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0631\u0632\u0631\u0648 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1909":["\u0634\u0645\u0627 \u062f\u0633\u062a\u0631\u0633\u06cc \u06a9\u0627\u0641\u06cc \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1910":["\u0634\u0645\u0627 \u0645\u062c\u0648\u0632 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u06af\u0632\u0627\u0631\u0634 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1911":["\u0634\u0645\u0627 \u0645\u062c\u0627\u0632 \u0628\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0627\u0628\u0632\u0627\u0631 \u0646\u06cc\u0633\u062a\u06cc\u062f"],"1912":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u0645\u0634\u0627\u0647\u062f\u0647 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u062a\u0623\u06cc\u06cc\u062f \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1913":["\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647 \u062d\u0630\u0641 \u0627\u06cc\u0646 \u06a9\u0648\u067e\u0646 \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f"],"1914":["\u0634\u0645\u0627 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u062e\u0648\u062f \u0631\u0627 \u0627\u0632 \u0686\u0646\u062f \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062f\u0627\u0631\u06cc\u062f. \u0644\u0637\u0641\u0627 \u0645\u062d\u0635\u0648\u0644\u0627\u062a \u0631\u0627 \u0641\u0642\u0637 \u0627\u0632 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u062a\u0646\u0647\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f "],"1915":["\u0634\u0645\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f \u0645\u0646\u062a\u0638\u0631 \u0645\u0627\u0646\u062f\u0647\u200c\u0627\u06cc\u062f. \u0644\u0637\u0641\u0627 \u0628\u0631\u06af\u0631\u062f\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f."],"1916":["\u0634\u0645\u0627 \u0641\u0642\u0637 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u0646\u0635\u0628 \u003Cstrong\u003E%s\u003C/strong\u003E \u062f\u0627\u0631\u06cc\u062f \u062a\u0627 \u0639\u0645\u0644\u06a9\u0631\u062f \u0628\u0647\u062a\u0631\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"1917":["\u0634\u0645\u0627 \u0641\u0642\u0637 \u0646\u06cc\u0627\u0632 \u0628\u0647 \u0646\u0635\u0628 %s \u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627\u06cc \u0647\u0633\u062a\u0647 %s \u062f\u0627\u0631\u06cc\u062f \u062a\u0627 \u0639\u0645\u0644\u06a9\u0631\u062f \u0628\u0647\u062a\u0631\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f."],"1918":["\u0634\u0645\u0627 \u0645\u06cc \u0628\u0627\u06cc\u0633\u062a \u003Ca href=\"%s\"\u003E\u0648\u0627\u0631\u062f \u0634\u0648\u06cc\u062f\u003C/a\u003E \u0628\u0631\u0627\u06cc \u0627\u0631\u0633\u0627\u0644 \u0646\u0638\u0631."],"1919":["\u067e\u0633 \u0627\u0632 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u06af\u0632\u06cc\u0646\u0647 \u0634\u0645\u0627 \u0628\u0627\u06cc\u062f \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0631\u0627  \u0628\u0647 \u0635\u0648\u0631\u062a \u062f\u0633\u062a\u06cc \u0648 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u062f\u0631\u06af\u0627\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0627\u0646\u062c\u0627\u0645 \u062f\u0647\u06cc\u062f."],"1920":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633 \u0634\u0645\u0627 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1921":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633 \u0648 \u0634\u0645\u0627\u0631\u0647 \u0634\u0628\u0627 \u0628\u0627\u0646\u06a9\u06cc \u0634\u0645\u0627%s"],"1922":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0622\u062f\u0631\u0633 \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0648 \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u062a\u0623\u06cc\u06cc\u062f  \u0627\u0633\u062a"],"1923":["\u0641\u0631\u0648\u0634\u06af\u0627\u0647 \u0634\u0645\u0627 \u062a\u0642\u0631\u06cc\u0628\u0627 \u0622\u0645\u0627\u062f\u0647 \u0627\u0633\u062a!"],"1924":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0634\u0646\u0627\u0633\u0647 \u0634\u0645\u0627 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1925":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0627\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a \u0648 \u0645\u062f\u0627\u0631\u06a9 \u0634\u0645\u0627%s"],"1926":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u062a\u0623\u06cc\u06cc\u062f \u0647\u0648\u06cc\u062a \u0634\u0645\u0627 \u0627\u0631\u0633\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a \u0648 %s \u062a\u0627\u06cc\u06cc\u062f \u0634\u062f\u0647 \u0627\u0633\u062a"],"1927":["\u0646\u0627\u0645 \u0634\u0645\u0627:"],"1928":["\u067e\u06a9\u06cc\u062c \u0634\u0645\u0627"],"1929":["\u0627\u0639\u062a\u0628\u0627\u0631 \u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u0686\u0646\u062f \u0631\u0648\u0632 \u062f\u06cc\u06af\u0631 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc \u0631\u0633\u062f \u0644\u0637\u0641\u0627 \u0622\u0646 \u0631\u0627 \u062a\u0627\u06cc\u06cc\u062f \u06a9\u0646\u06cc\u062f"],"1930":["\u0645\u062c\u0648\u0632 \u067e\u06cc \u067e\u0627\u0644 \u0634\u0645\u0627 \u06a9\u0627\u0645\u0644 \u0646\u06cc\u0633\u062a "],"1931":["\u0646\u0642\u062f \u0648 \u0628\u0631\u0631\u0633\u06cc \u0634\u0645\u0627"],"1932":["\u0646\u0642\u062f \u0648 \u0628\u0631\u0633\u06cc \u0634\u0645\u0627 :"],"1933":["\u062d\u0633\u0627\u0628 \u0627\u0633\u062a\u0631\u06cc\u067e \u0634\u0645\u0627 \u0647\u0646\u0648\u0632 \u0641\u0639\u0627\u0644 \u0646\u06cc\u0633\u062a \u0644\u0637\u0641\u0627 \u0627\u0628\u062a\u062f\u0627 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0648\u0635\u0644 \u0634\u0648\u06cc\u062f"],"1934":["\u0634\u0645\u0627\u0631\u0647 \u062a\u0644\u0641\u0646 \u062a\u0623\u06cc\u06cc\u062f \u0634\u062f\u0647 \u0634\u0645\u0627:"],"1935":["\u062d\u0633\u0627\u0628 \u0634\u0645\u0627 \u0628\u0627 \u0627\u0633\u062a\u0631\u06cc\u067e \u0645\u062a\u0635\u0644 \u0627\u0633\u062a"],"1936":["\u062d\u0633\u0627\u0628 \u0634\u0645\u0627 \u0647\u0646\u0648\u0632 \u0628\u0647 \u0627\u0633\u062a\u0631\u06cc\u067e \u0645\u062a\u0635\u0644 \u0646\u06cc\u0633\u062a \u0628\u0627 \u0627\u0633\u062a\u0631\u06cc\u067e \u0628\u0631\u0627\u06cc \u062f\u0631\u06cc\u0627\u0641\u062a \u06a9\u0645\u06cc\u0633\u06cc\u0648\u0646 \u062e\u0648\u062f \u0645\u062a\u0635\u0644 \u0634\u0648\u06cc\u062f."],"1937":["\u0634\u0645\u0627 \u062f\u0631\u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u067e\u06a9\u06cc\u062c \u003Cspan\u003E%s\u003C/span\u003E \u0647\u0633\u062a\u06cc\u062f.."],"1938":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"1939":["\u067e\u06a9\u06cc\u062c \u0634\u0645\u0627 \u062f\u0631 \u003Cspan\u003E%s\u003C/span\u003E \u0628\u0647 \u0627\u062a\u0645\u0627\u0645 \u062e\u0648\u0627\u0647\u062f \u0631\u0633\u06cc\u062f"],"1940":["\u062e\u062f\u0645\u0627\u062a \u0634\u0645\u0627 \u0634\u0631\u0648\u0639 \u0628\u0647 \u062f\u0631\u0648\u0646 \u0631\u06cc\u0632\u06cc \u06a9\u0631\u062f\u0646\u062f... "],"1941":["\u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0645\u0627 "],"1942":["\u0627\u0634\u062a\u0631\u0627\u06a9 \u0634\u0645\u0627 \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a!"],"1943":["\u062d\u0633\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0634\u0645\u0627 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1944":["\u062d\u0633\u0627\u0628 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 \u0634\u0645\u0627 \u063a\u06cc\u0631 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1945":["\u06a9\u062f \u062a\u0627\u06cc\u06cc\u062f\u06cc\u0647 \u0634\u0645\u0627 : %CODE%"],"1946":["\u0641\u0627\u06cc\u0644 \u0635\u0641\u0631 \u06a9\u06cc\u0644\u0648\u0628\u0627\u06cc\u062a\u06cc \u062f\u0627\u0646\u0644\u0648\u062f \u0634\u062f"],"1947":["\u0645\u06a9\u0627\u0646 \u0645\u0646\u0637\u0642\u0647"],"1948":["\u0646\u0627\u0645 \u0645\u0646\u0637\u0642\u0647"],"1949":["\u0645\u0646\u0637\u0642\u0647 \u06cc\u0627\u0641\u062a \u0646\u0634\u062f"],"1950":["\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0645\u0646\u0637\u0642\u0647 \u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f"],"1951":["[%d] \u062a\u06cc\u06a9\u062a \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u062c\u062f\u06cc\u062f"],"1952":["[%s][%d] \u067e\u0627\u0633\u062e \u062c\u062f\u06cc\u062f \u062f\u0631 \u062a\u06cc\u06a9\u062a \u0634\u0645\u0627"],"1953":["[{site_name}] \u06cc\u06a9 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 {seller_name} \u0633\u0627\u062e\u062a\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1954":["[{site_name}] \u06cc\u06a9 \u062d\u0631\u0627\u062c \u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f \u062a\u0648\u0633\u0637 ({seller_name}) - {product_title} \u0627\u0636\u0627\u0641\u0647 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1955":["[{site_name}] \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0634\u0645\u0627 \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1956":["[{site_name}] \u062d\u0633\u0627\u0628 \u0634\u0645\u0627 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1957":["[{site_name}] \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0628\u0627\u0632\u067e\u0631\u062f\u0627\u062e\u062a \u0634\u0645\u0627 {status} \u0628\u0648\u062f"],"1958":["[{site_title}] \u0628\u0647 \u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0645\u062d\u0635\u0648\u0644 \u0627\u0632 ({seller_name}) - {product_title} \u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0627\u0633\u062a"],"1959":["\u0628\u0635\u0648\u0631\u062a \u067e\u06cc\u0634\u0641\u0631\u0636 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0647\u0633\u062a\u0646\u062f"],"1960":["\u0642\u0628\u0644 \u0627\u0632 \u062a\u0627\u0631\u06cc\u062e \u0634\u0631\u0648\u0639"],"1961":["\u0628\u0631\u0627\u0633\u0627\u0633"],"1962":["\u0644\u063a\u0648 \u0634\u062f"],"1963":["\u0628\u0633\u062a\u0646 \u062a\u06cc\u06a9\u062a"],"1964":["\u0628\u0633\u062a\u0647 \u0634\u062f\u0647"],"1965":["l"],"1966":["%s \u0631\u0648\u0632"],"1967":["\u0631\u0648\u0632"],"1968":["\u062d\u0630\u0641 \u06a9\u0631\u062f\u0646"],"1969":["\u062a\u0639\u0637\u06cc\u0644\u0627\u062a"],"1970":["\u0648\u06cc\u0631\u0627\u06cc\u0634"],"1971":["\u0627\u0632"],"1972":["\u062a\u0645\u0627\u0645 \u0634\u062f\u0647 \u0627\u0633\u062a %s ago"],"1973":["\u0627\u0631\u062a\u0641\u0627\u0639"],"1974":["\u0627\u0631\u062a\u0641\u0627\u0639 (%s)"],"1975":["\u062f\u0631 \u0627\u06cc\u0646\u062c\u0627"],"1976":["http://"],"1977":["https://woocommerce.ir/"],"1978":["\u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1979":["\u0628\u0627 \u0645\u0648\u0641\u0642\u06cc\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0634\u062f\u0647 \u0627\u0633\u062a"],"1980":["\u0637\u0648\u0644"],"1981":["\u0637\u0648\u0644 (%s)"],"1982":["\u062f\u0642\u06cc\u0642\u0647"],"1983":["\u0645\u0627\u0647"],"1984":["%s \u0645\u0627\u0647"],"1985":["\u0645\u062d\u0635\u0648\u0644 \u062c\u062f\u06cc\u062f"],"1986":["\u0628\u0635\u0648\u0631\u062a \u067e\u06cc\u0634\u0641\u0631\u0636 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0646\u06cc\u0633\u062a\u0646\u062f"],"1987":["\u0628\u0627\u0632"],"1988":["\u0633\u0641\u0627\u0631\u0634\u062a\u0627\u062a \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0647 \u0634\u062f\u0647 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0648\u0631\u0647"],"1989":["\u062e\u0627\u0631\u062c \u0627\u0632 5"],"1990":["\u0627\u0632&hellip;"],"1991":["\u0627\u0632&hellip; YYYY-MM-DD"],"1992":["\u0628\u0647&hellip;"],"1993":["\u0628\u0647&hellip; YYYY-MM-DD"],"1994":["\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u0645\u062c\u062f\u062f \u062a\u06cc\u06a9\u062a"],"1995":["\u062f\u0648\u0628\u0627\u0631\u0647 \u0641\u0639\u0627\u0644 \u0634\u062f"],"1996":["\u0641\u0631\u0648\u0634"],"1997":["\u0647\u0632\u06cc\u0646\u0647 \u0646\u0648\u0639 \u062d\u0645\u0644 \u0648 \u0646\u0642\u0644"],"1998":["\u0645\u0633\u062f\u0648\u062f \u0634\u062f\u0647"],"1999":["\u062a\u0627"],"2000":["\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0636\u0627\u0641\u0647 \u0634\u062f"],"2001":["\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u0636\u0627\u0641\u0647 \u0634\u062f"],"2002":["\u0644\u0637\u0641\u0627 \u0635\u0628\u0631 \u06a9\u0646\u06cc\u062f "],"2003":["\u0647\u0641\u062a\u0647"],"2004":["%s \u0647\u0641\u062a\u0647"],"2005":["\u0648\u0632\u0646 (%s)"],"2006":["\u0639\u0631\u0636:"],"2007":["\u0639\u0631\u0636 (%s)"],"2008":["\u062f\u0631 \u0627\u0633 \u0627\u0645 \u0627\u0633 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u062f \u0634\u062f. \u003Cstrong\u003E%CODE% \u003C/strong\u003E \u0628\u0627 \u06a9\u062f \u062a\u0623\u06cc\u06cc\u062f \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062e\u0648\u0627\u0647\u062f \u0634\u062f"],"2009":["\u0645\u0646\u0642\u0636\u06cc \u0645\u06cc\u0634\u0648\u062f \u062f\u0631 %s"],"2010":["%s \u0633\u0627\u0644"],"2011":["\u0633\u0627\u0644"],"2012":["{product_title} - \u0644\u063a\u0648 \u0634\u062f\u0647 \u0627\u0633\u062a"],"2013":["{product_title} \u062a\u0648\u0633\u0637 \u0641\u0631\u0648\u0634\u0646\u062f\u0647 {seller_name} \u0628\u0647 \u0631\u0648\u0632 \u0634\u062f"],"2014":["\u0648\u0648\u06a9\u0627\u0645\u0631\u0633 \u0641\u0627\u0631\u0633\u06cc"],"2015":["\u2190 \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u0644\u06cc\u0633\u062a \u0645\u0646\u0637\u0642\u0647"]}}}},"product_vendors_can_create_tags":"on","product_inline_edit_nonce":"eb27af75b3","is_vendor_enabled":"","not_enable_message":"Error! Your account is not enabled for selling, please contact the admin","all_categories":"All Categories","rest":{"root":"https://parsguitar.com/wp-json/","nonce":"c23085fcea","version":"dokan/v1"},"api":null,"libs":[],"routeComponents":{"default":null},"routes":[],"urls":{"assetsUrl":"https://parsguitar.com/wp-content/plugins/dokan-lite/assets","dashboardUrl":"https://parsguitar.com/dashboard/","storeUrl":"","ordersUrl":"https://parsguitar.com/dashboard/orders/","legacyOrdersUrl":"https://parsguitar.com/dashboard/orders/"},"nonces":{"viewOrder":"485fa4f579","orderExport":"22439ccf4d"},"orderStatuses":[{"value":"all","label":"All"},{"value":"wc-pending","label":"\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u067e\u0631\u062f\u0627\u062e\u062a"},{"value":"wc-novin-cart","label":"\u06a9\u0627\u0631\u062a \u0628\u0647 \u06a9\u0627\u0631\u062a"},{"value":"wc-novin-receid","label":"\u0631\u0633\u06cc\u062f \u067e\u0631\u062f\u0627\u062e\u062a"},{"value":"wc-processing","label":"\u062f\u0631 \u062d\u0627\u0644 \u0627\u0646\u062c\u0627\u0645"},{"value":"wc-on-hold","label":"\u062f\u0631 \u0627\u0646\u062a\u0638\u0627\u0631 \u0628\u0631\u0631\u0633\u06cc"},{"value":"wc-completed","label":"\u062a\u06a9\u0645\u06cc\u0644 \u0634\u062f\u0647"},{"value":"wc-cancelled","label":"\u0644\u063a\u0648 \u0634\u062f\u0647"},{"value":"wc-refunded","label":"\u0645\u0633\u062a\u0631\u062f \u0634\u062f\u0647"},{"value":"wc-failed","label":"\u0646\u0627\u0645\u0648\u0641\u0642"}],"mark_received":{"nonce":"bc018b9e4a","status_label":"Received","confirmation_msg":"Do you want to mark this order as received?","complete_status_label":"Complete"}};
//# sourceURL=dokan-util-helper-js-extra
</script>
<script id="dokan-util-helper-js" src="https://parsguitar.com/wp-content/plugins/dokan-lite/assets/js/helper.js?ver=1784914676"></script>
<script id="advanced-speed-optimizer-js" src="https://parsguitar.com/wp-content/plugins/advanced-speed-optimizer/public/js/advanced-speed-optimizer-public.js?ver=1.1.5"></script>
<script id="swiper-js-js" src="https://parsguitar.com/wp-content/plugins/studiare-core/assets/js/swiper.min.js?ver=1"></script>
<script data-wp-strategy="defer" defer id="wc-jquery-blockui-js" src="https://parsguitar.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=5.0.10"></script>
<script data-wp-strategy="defer" defer id="wc-js-cookie-js" src="https://parsguitar.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.9.4"></script>
<script id="woocommerce-js-extra">
var woocommerce_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_password_show":"\u0646\u0645\u0627\u06cc\u0634 \u0631\u0645\u0632\u0639\u0628\u0648\u0631","i18n_password_hide":"Hide password"};
//# sourceURL=woocommerce-js-extra
</script>
<script data-wp-strategy="defer" defer id="woocommerce-js" src="https://parsguitar.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=10.9.4"></script>
<script id="wd-scrollbar-js" src="https://parsguitar.com/wp-content/themes/studiare/js/scripts/global/scrollBar.min.js?ver=11.2"></script>
<link rel="stylesheet" href="https://parsguitar.com/wp-content/themes/studiare-child/rtl.css" media="screen" /><meta name="theme-color" content="rgb(206,22,64)">					<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
										<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
	<meta name="generator" content="Elementor 4.2.0; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto">
<style type="text/css" id="filter-everything-inline-css">.wpc-orderby-select{width:100%}.wpc-filters-open-button-container{display:none}.wpc-debug-message{padding:16px;font-size:14px;border:1px dashed #ccc;margin-bottom:20px}.wpc-debug-title{visibility:hidden}.wpc-button-inner,.wpc-chip-content{display:flex;align-items:center}.wpc-icon-html-wrapper{position:relative;margin-right:10px;top:2px}.wpc-icon-html-wrapper span{display:block;height:1px;width:18px;border-radius:3px;background:#2c2d33;margin-bottom:4px;position:relative}span.wpc-icon-line-1:after,span.wpc-icon-line-2:after,span.wpc-icon-line-3:after{content:"";display:block;width:3px;height:3px;border:1px solid #2c2d33;background-color:#fff;position:absolute;top:-2px;box-sizing:content-box}span.wpc-icon-line-3:after{border-radius:50%;left:2px}span.wpc-icon-line-1:after{border-radius:50%;left:5px}span.wpc-icon-line-2:after{border-radius:50%;left:12px}body .wpc-filters-open-button-container a.wpc-filters-open-widget,body .wpc-filters-open-button-container a.wpc-open-close-filters-button{display:inline-block;text-align:left;border:1px solid #2c2d33;border-radius:2px;line-height:1.5;padding:7px 12px;background-color:transparent;color:#2c2d33;box-sizing:border-box;text-decoration:none!important;font-weight:400;transition:none;position:relative}@media screen and (max-width:768px){.wpc_show_bottom_widget .wpc-filters-open-button-container,.wpc_show_open_close_button .wpc-filters-open-button-container{display:block}.wpc_show_bottom_widget .wpc-filters-open-button-container{margin-top:1em;margin-bottom:1em}}</style>
			<style>
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
			</style>
			        <style type="text/css">
            .digits_secure_modal_box, .digits_ui,
            .digits_secure_modal_box *, .digits_ui *,
            .digits_font, .dig_ma-box, .dig_ma-box input, .dig_ma-box input::placeholder, .dig_ma-box ::placeholder, .dig_ma-box label, .dig_ma-box button, .dig_ma-box select, .dig_ma-box * {
                font-family: 'Yekan', sans-serif;
            }
        </style>
        <link rel="icon" href="https://parsguitar.com/wp-content/uploads/2026/08/parsguitar-fav-150x150.png" sizes="32x32" />
<link rel="icon" href="https://parsguitar.com/wp-content/uploads/2026/08/parsguitar-fav-300x300.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://parsguitar.com/wp-content/uploads/2026/08/parsguitar-fav-300x300.png" />
<meta name="msapplication-TileImage" content="https://parsguitar.com/wp-content/uploads/2026/08/parsguitar-fav-300x300.png" />
<style id="wp-custom-css">

			html {
    overflow: inherit !important;
}
h1, h2, h3, h4, h5, p, a, .elementor span, .elementor-counter-title {
	font-family:dana !important;
}

p.elementor-icon-box-description {
    text-align: justify;
} 

.copyright-cell {
    margin: auto;
    display: table;
}
.footer__mainmenu {
    padding: 30px 0 16px 0;
    position: relative;
}
.footer__mainmenu-list:first-of-type {
    text-align: right;
    float: right;
}
.footer__mainmenu-list:last-of-type {
    text-align: left;
    float: left;
}
.footer__mainmenu-list {
    width: 45%;
    padding: 20px 0;
}
.footer__mainmenu-list ul {
    list-style: none;
    margin: 0;
}
.footer__mainmenu-list:first-of-type li {
    color: gray;
    display: inline-block;
    padding-left: 33px;
}
.footer__mainmenu-list li {
    opacity: .5;
    font-weight: 300;
    transform: translate(0,10px);
    -webkit-transition: all .25s ease;
}

.site-footer.footer-color-light a {
    color: #fff;
}

.footer__mainmenu:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    opacity: .32;
    background-color: rgba(255,255,255,.21);
    -webkit-box-shadow: 0 -1px 0 0 rgb(0 0 0 / 36%);
    box-shadow: 0 -1px 0 0 rgb(0 0 0 / 36%);
}

.footer__mainmenu-list:last-of-type li {
    color: gray;
    display: inline-block;
    padding-right: 33px;
}
.footer__mainmenu img {
    max-width: 100px;
    max-width: fit-content;
    margin: auto;
    width: 8%;
    margin-right: 13px;
}
.footer__mainmenu-list li:hover {
    opacity: 1;
    font-weight: 300;
}
.site-footer.footer-color-light a:hover {
    color: #fff;
}

.copyright-cell {
    margin: auto;
    color: rgba(255,255,255,.5);
    text-align: center;
    font-weight: 300;
}
.studiare-social-links.light li a {
    color: rgba(255,255,255,.5);
}
.footer-widgets .textwidget {
    color: gray;
    line-height:200%;
    font-size:14px;
}

figure.wp-block-image.size-full.is-resized.is-style-default.shoar img {
    border-radius: 30px;
    box-shadow: 0px 0px 50px -12px #000;
	opacity: 80%;
}






#shadow {
	animation: shadow 4s infinite linear;
	transform-origin: 50% 50%;
}

#guitar_2_ {
	animation: hover 4s infinite linear;
	&:hover {
		cursor: pointer;
	}
}

@keyframes hover {
	from, to {
		transition-timing-function: ease-in-out;
		transform: translate3d(0,0,0);
	}
	50% {
		transition-timing-function: ease-in-out;
		transform: translate3d(0,1.5%,0);
	}
}

@keyframes shadow {
	from, to {
		transition-timing-function: ease-in-out;
		transform: scale(0.95,1);
	}
	50% {
		transition-timing-function: ease-in-out;
		transform: scale(1.05,1);
	}
}


pre.pars-chord {
    border: none;
    font-family: 'IRANSans';
    font-size: 14px;
    color: #232323;
	direction: ltr;
}

pre.pars-chord b.c {
    color: #c70030;
}

.dig_ma-box, .dig_ma-box input, .dig_ma-box input::placeholder, .dig_ma-box ::placeholder, .dig_ma-box label, .dig_ma-box button, .dig_ma-box select, .dig_ma-box * {
    font-family: 'IRANSans' !important;
}
.digits_login_form .dig_ma-box .bgdark {
    background-color: #9c2c33 !important;
}
.xlwcty_thankyou-template-default .page-title {
    display: none;
}

#wpdcom .wpd-second-button, #wpdcom .wpd-prim-button, .ql-container {
    font-family: 'IRANSans' !important;
    letter-spacing: 0;
}
.theme-twentyfourteen .widget-area input.wpc-label-input+label:hover span.wpc-filter-label-wrapper, .widget-area input.wpc-label-input+label:hover span.wpc-filter-label-wrapper, .wpc-filters-widget-main-wrapper input.wpc-label-input+label:hover span.wpc-filter-label-wrapper, .wpc-filters-widget-main-wrapper input.wpc-label-input:checked+label span.wpc-filter-label-wrapper  {
    color: #f5f5f5;
    background-color: #9c2c33;
}
.wpc-filters-widget-main-wrapper input.wpc-label-input+label:hover {
    border-color: #9c2c33;
}


ul.bdt-list-grid.bdt-grid-2.bdt-post-list-item.list-part li {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

ul.bdt-list-grid.bdt-grid-2.bdt-post-list-item.list-part li:hover {
    border: 1px solid #9c2c3340;
    background: #f8f9fae3;
}

.wpc-filter-title {
    display: inherit;
}
ul.wpc-filters-ul-list.wpc-filters-labels.wpc-filters-list-46746 {
    display: grid;
}
a.dokan-btn.dokan-btn-theme.vendor-dashboard {
    display: block;
}

textarea#input_6_4 {
    height: 600px;
    text-align: right !important;
    padding: 15px;
		font-family: iransans;
	direction: ltr !important;
}

div#gform_wrapper_6 {
    margin-top: 60px;
    margin-bottom: 60px;
}
.page-title.chord {
    display: none;
}

.woocommerce-variation.single_variation {
    padding: 0px 5px 13px;
}
.woocommerce-variation-price span.price {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

table.variations label {
    font-size: 14px;
    padding-left: 8px;
}

.woocommerce-checkout-side {
    z-index: 99999;
    margin-bottom: 15%;
}
th.product-total, td.product-total, small.includes_tax, strong.product-quantity, th.product-quantity, td.product-quantity, th.product-price, td.product-price {
    display: none !important;
}
.wp-video {
    margin: auto;
    border-radius: 4px;
    box-shadow: 0px 0px 36px -20px;
    overflow: hidden;
}
article#post-44693 {
    display: contents;
}
article#post-44693 .blog-share-btn, article#post-44693 .post-author-box, article#post-44693 .blog-single-social-box, article#post-44693 .product-reviews, article#post-44693 .entry-header, .postid-44693 .rating  {
display:none !important;
}

.postid-44693 .blog-loop-inner.post-single {
    display: contents;
}
.gv-table-view tr:hover {
    background: #f2f2f2 !important;
}
.button {
    color: #fff !important;
}
.autoscroll {    
	  z-index: 999;
    position: fixed;
    bottom: 302px;
    left: -277px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scale(0.75) rotate(-90deg);
    -ms-transform: scale(0.75) rotate(-90deg);
    transform: scale(0.75) rotate(-90deg);
    opacity: 0.98;
}

.autoscroll:hover {
    opacity:1;
}
.autoscroll .btn-scroll {
    cursor: pointer;
    width: 60px !important;
    padding: 0 10px;
    color: #000;
    background-color: #f9f9f9;
    border: 1px solid #dc3545;
    vertical-align: middle;
    text-align: center;
    border-radius: 2px;
    font-size: 14px;
    height: 32px;
    margin: 6px 5px;
    line-height: 225%;
}

.autoscroll input[type="button"]:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(178 34 34 / 18%);
            box-shadow: 0 0 0 0.2rem rgb(178 34 34 / 18%);
    border-color: #230000;
}

.rhythm {
    display: table;
    margin: auto !important;
}

i.btn.btn-scroll.icon-c.lhDesc img {
    height: 21px;
}

i.btn.btn-scroll.icon-c.lhAsc img {
    height: 21px;
}
.woocommerce-product-gallery {
    opacity: 1 !important;
}

.blockUI.blockOverlay {
    display: none !important;
}

.select2-hidden-accessible {display: none !important;}
.sale-perc-badge {
    display: none;
}

form.checkout.woocommerce-checkout.row {
    margin-bottom: 150px;
}
.p-alphabet-collapse {
    max-height: 38px;
    -webkit-transition: max-height .3s linear;
    transition: max-height .3s linear;
}
.p-alphabet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.p-rotate-icon i.fa, .p-rotate-icon img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.p-alphabet a {
    width: 35px;
    height: 35px;
    line-height: 30px;
    font-size: 14px;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 700;
    background: #505050;
    margin: 1px;
    text-align: center;
}

.p-alphabet a:hover {
    background: #af002a;
    color: #fff;
}
button.p-alphabet-collapse-btn {
    margin: auto;
    display: block;
    margin-top: 8px;
    border-radius: 32%;
    border: solid 2px #6c757d;
}
.bdt-search-text {
    display: none;
}
.enamad img {
    margin: auto;
    display: block;
    background: #ffffffa1;
    border-radius: 10px;
    padding: 4px 5px;
    transition: all 0.3s;
}

.enamad img:hover {
    background: #ffffffd6;
}
h1.h2 {
    color: #fff;
}
.gv-button-delete {
    display: none;
}
.post-tags a, .tagged_as a {margin: 2px;font-size: 8pt;background: #dbdbdb;padding: 2px 10px;border-radius: 2px;}
.fsrs-min-width-star-hover-text, .fsrs-star-hover-txt {
    font-family: 'IRANSans' !important;
}

ul.sub-menu li:hover a {
    color: #f9f9f9 !important;
}
.fa-chevron-down:before {
    content: "\F078";
}
img.aligncenter.size-medium.wp-image-23381 {
    border-radius: 50%;
    box-shadow: 0px 0px 20px -9px #000;
    margin-top: 25px;
}
a.submit {
    border: 1px solid #919191;
    padding: 7px 10px;
    margin: auto;
    display: table;
    text-align: center;
}
.category-chords .p-alphabet a {
    line-height: 11px;
}
img.radius {
    border-radius: 50%;
    box-shadow: 0px 0px 20px -9px #000;
}
.site-header {
    min-height: auto !important;
}

form.checkout_coupon.woocommerce-form-coupon p {
    padding: 5px 10px 0;
    font-size: 9pt;
}

p#billing_first_name_field {
    flex: 0 0 100%;
    max-width: 100%;
}
.studiare-navigation .menu>ul>li ul li>a, .studiare-navigation ul.menu>li ul li>a {
    padding: 0px 20px;
    line-height: 270%;
	  font-weight: 200;
    font-size: 12px;
}
.bdt-post-grid .bdt-post-grid-item .bdt-post-grid-title a {
    line-height: 170%;
    font-size: 18px;
}
@media (max-width: 991.98px){
	a.digits-login-modal.login-button.btn.btn-filled {
    background-color: #ebebeb;
    color: #353a40;
}
	.site-header .site-logo .studiare-logo-wrap img {
	max-width:140px !important;
}
.footer__mainmenu-list {
    display: none;
}
.footer__mainmenu img {
    position: static;
    width: 25%;
    display: block;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    margin: 0 auto;
}
	.post-meta.author, .post-meta.category {
		display:none !important;
	}
	
	.elementor-16 .elementor-element.elementor-element-58b0a60 .bdt-list-grid {
    grid-template-columns: none;
}
	a.digits-login-modal.login-button.btn.btn-filled {
    font-size: 0;
    padding: 10px 12px 9px 7px;
}
	h1.entry-title {
    font-size: 15px;
}

	.transpose-keys a {
    width: 2.4em !important;
    padding: 0.32em 0.2em !important;
    margin: 2px !important;

}
	.product-single-meta-inside {
    display: block !important;
}
	}
</style>
<style>
		
		</style>    <div class="video_popup_wrrapper">
		<div class="video_popup_overlay"></div>
		<div class="video_popup_inner"></div>
	</div>
    </head>

<body class="rtl archive paged tax-vocalist term-155 paged-2 wp-theme-studiare wp-child-theme-studiare-child theme-studiare woocommerce-no-js wrapper-custom  categories-accordion-on woodmart-ajax-shop-on sticky-toolbar-on hide-larger-price wpc_show_bottom_widget elementor-default elementor-kit-46908 dokan-theme-studiare">
			<script type="text/javascript" id="wd-flicker-fix">// Flicker fix.</script>		<div class="wd-skip-links">
								<a href="#menu-main-2" class="wd-skip-navigation btn">
						رد کردن به ناوبری					</a>
								<a href="#main-content" class="wd-skip-content btn">
				رد کردن به محتوای اصلی			</a>
		</div>
			
	
	<div class="wd-page-wrapper website-wrapper">
									<header class="whb-header whb-default_header whb-sticky-shadow whb-scroll-stick whb-sticky-real">
								<link rel="stylesheet" id="wd-header-base-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/header-base-rtl.min.css?ver=Version" type="text/css" media="all" /> 						<link rel="stylesheet" id="wd-mod-tools-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/mod-tools.min.css?ver=Version" type="text/css" media="all" /> 			<div class="whb-main-header">
	
<div class="whb-row whb-top-bar whb-not-sticky-row whb-with-bg whb-without-border whb-color-dark whb-hidden-desktop whb-hidden-mobile whb-flex-flex-middle">
	<div class="container">
		<div class="whb-flex-row whb-top-bar-inner">
			<div class="whb-column whb-col-left whb-column5 whb-visible-lg">
				<link rel="stylesheet" id="wd-header-elements-base-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/header-el-base-rtl.min.css?ver=Version" type="text/css" media="all" /> 			
<div class="wd-header-text reset-last-child whb-6l5y1eay522jehk73pi2"><strong style="color: #ffffff;">برای طراحی سربرگ به بخش سربرگ ساز بروید...</strong></div>
</div>
<div class="whb-column whb-col-center whb-column6 whb-visible-lg whb-empty-column">
	</div>
<div class="whb-column whb-col-right whb-column7 whb-visible-lg">
				<link rel="stylesheet" id="wd-social-icons-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/el-social-icons.min.css?ver=Version" type="text/css" media="all" /> 						<div
						class=" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle  whb-61qbocnh2ezx7e7al7jd color-scheme-light text-center">
				
				
									<a rel="noopener noreferrer nofollow" href="https://www.facebook.com/sharer/sharer.php?u=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-facebook" aria-label="Facebook link">
						<span class="wd-icon"></span>
											</a>
				
									<a rel="noopener noreferrer nofollow" href="https://x.com/share?url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-twitter" aria-label="لینک شبکه X">
						<span class="wd-icon"></span>
											</a>
				
				
				
				
				
				
									<a rel="noopener noreferrer nofollow" href="https://pinterest.com/pin/create/button/?url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/&media=https://parsguitar.com/wp-content/uploads/2022/08/delbar-1.jpg&description=%D8%A7%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%AF%D9%84%D8%A8%D8%B1+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C" target="_blank" class=" wd-social-icon social-pinterest" aria-label="لینک Pinterest">
						<span class="wd-icon"></span>
											</a>
				
				
									<a rel="noopener noreferrer nofollow" href="https://www.linkedin.com/shareArticle?mini=true&url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-linkedin" aria-label="Linkedin link">
						<span class="wd-icon"></span>
											</a>
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
									<a rel="noopener noreferrer nofollow" href="https://telegram.me/share/url?url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-tg" aria-label="لینک تلگرام">
						<span class="wd-icon"></span>
											</a>
				
				
			</div>

		</div>
<div class="whb-column whb-col-mobile whb-column_mobile1 whb-hidden-lg">
				<div
						class=" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle  whb-nugd58vqvv5sdr3bc5dd color-scheme-light text-center">
				
				
									<a rel="noopener noreferrer nofollow" href="https://www.facebook.com/sharer/sharer.php?u=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-facebook" aria-label="Facebook link">
						<span class="wd-icon"></span>
											</a>
				
									<a rel="noopener noreferrer nofollow" href="https://x.com/share?url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-twitter" aria-label="لینک شبکه X">
						<span class="wd-icon"></span>
											</a>
				
				
				
				
				
				
									<a rel="noopener noreferrer nofollow" href="https://pinterest.com/pin/create/button/?url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/&media=https://parsguitar.com/wp-content/uploads/2022/08/delbar-1.jpg&description=%D8%A7%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%AF%D9%84%D8%A8%D8%B1+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C" target="_blank" class=" wd-social-icon social-pinterest" aria-label="لینک Pinterest">
						<span class="wd-icon"></span>
											</a>
				
				
									<a rel="noopener noreferrer nofollow" href="https://www.linkedin.com/shareArticle?mini=true&url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-linkedin" aria-label="Linkedin link">
						<span class="wd-icon"></span>
											</a>
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
									<a rel="noopener noreferrer nofollow" href="https://telegram.me/share/url?url=https://parsguitar.com/vocalist/%d8%a7/%d8%a7%d8%a8%db%8c/" target="_blank" class=" wd-social-icon social-tg" aria-label="لینک تلگرام">
						<span class="wd-icon"></span>
											</a>
				
				
			</div>

		</div>
		</div>
	</div>
</div>

<div class="whb-row whb-general-header whb-not-sticky-row whb-without-bg whb-border-fullwidth whb-color-dark whb-flex-flex-middle">
	<div class="container">
		<div class="whb-flex-row whb-general-header-inner">
			<div class="whb-column whb-col-left whb-column8 whb-visible-lg">
	<div class="site-logo whb-250rtwdwz5p8e5b7tpw0">
	<a href="https://parsguitar.com/" class="wd-logo wd-main-logo" rel="home" aria-label="لوگوی وب سایت">
		<img width="350" height="101" src="https://parsguitar.com/wp-content/uploads/2022/01/logo-site2.png" class="attachment-full size-full" alt="" style="max-width:170px;" decoding="async" srcset="https://parsguitar.com/wp-content/uploads/2022/01/logo-site2.png 350w, https://parsguitar.com/wp-content/uploads/2022/01/logo-site2-150x43.png 150w, https://parsguitar.com/wp-content/uploads/2022/01/logo-site2-300x87.png 300w" sizes="(max-width: 350px) 100vw, 350px" />	</a>
	</div>
</div>
<div class="whb-column whb-col-center whb-column9 whb-visible-lg">
	<nav class="wd-header-nav wd-header-main-nav text-center wd-design-1 wd-with-overlay whb-tiueim5f5uazw1f1dm8r" role="navigation" aria-label="منوی اصلی">
	<ul id="menu-main-2" class="menu wd-nav wd-nav-header wd-nav-main wd-style-separated wd-gap-s"><li id="menu-item-46968" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-46968 item-level-0 menu-simple-dropdown wd-event-hover" ><a href="https://parsguitar.com/" class="woodmart-nav-link"><span class="nav-link-text">صفحه اصلی</span></a></li>
<li id="menu-item-52689" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-52689 item-level-0 menu-simple-dropdown wd-event-hover" ><a title="آکورد گیتار" href="https://parsguitar.com/category/pop-guitar/chords/" class="woodmart-nav-link"><span class="nav-link-text">آکورد گیتار</span></a></li>
<li id="menu-item-50150" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-50150 item-level-0 menu-simple-dropdown wd-event-hover" ><a href="https://parsguitar.com/product-category/note-tablature-guitar-pro/" class="woodmart-nav-link"><span class="nav-link-text">نت و تبلچر</span></a><div class="color-scheme-dark wd-design-default wd-dropdown-menu wd-dropdown"><div class="container wd-entry-content">
<ul class="wd-sub-menu color-scheme-dark">
	<li id="menu-item-50151" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-50151 item-level-1 wd-event-hover" ><a href="https://parsguitar.com/product-category/note-tablature-guitar-pro/harmonize/" class="woodmart-nav-link">قطعات تنظیم شده</a></li>
	<li id="menu-item-50152" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-50152 item-level-1 wd-event-hover" ><a href="https://parsguitar.com/product-category/note-tablature-guitar-pro/solo/" class="woodmart-nav-link">قطعات سولو</a></li>
</ul>
</div>
</div>
</li>
<li id="menu-item-5672" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-5672 item-level-0 menu-simple-dropdown wd-event-hover" ><a href="https://parsguitar.com/category/education-resource/" class="woodmart-nav-link"><span class="nav-link-text">منابع آموزشی</span></a><div class="color-scheme-dark wd-design-default wd-dropdown-menu wd-dropdown"><div class="container wd-entry-content">
<ul class="wd-sub-menu color-scheme-dark">
	<li id="menu-item-7206" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-7206 item-level-1 wd-event-hover" ><a href="https://parsguitar.com/category/education-resource/babak-amini/" class="woodmart-nav-link">آموزش گیتار بابک امینی</a></li>
	<li id="menu-item-13051" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13051 item-level-1 wd-event-hover" ><a title="آموزش تئوری موسیقی" href="https://parsguitar.com/category/education-resource/music-theory/" class="woodmart-nav-link">تئوری موسیقی</a></li>
	<li id="menu-item-10814" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10814 item-level-1 wd-event-hover" ><a href="https://parsguitar.com/category/education-resource/electronic-book/" class="woodmart-nav-link">کتاب الکترونیک</a></li>
	<li id="menu-item-7205" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-7205 item-level-1 wd-event-hover" ><a title="معرفی ریتم های گیتار" href="https://parsguitar.com/category/education-resource/pop-guitar-education-resource/collection-of-applied-rhythms/" class="woodmart-nav-link">مجموعه ریتم های کاربردی</a></li>
	<li id="menu-item-9185" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-9185 item-level-1 wd-event-hover" ><a title="آموزش گام نوازی در گیتار" href="https://parsguitar.com/category/education-resource/guitar-scales/" class="woodmart-nav-link">آموزش گام نوازی گیتار</a></li>
	<li id="menu-item-11079" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11079 item-level-1 wd-event-hover" ><a title="آموزش آرپژ" href="https://parsguitar.com/category/education-resource/arpeggio-types/" class="woodmart-nav-link">آموزش آرپژ گیتار</a></li>
	<li id="menu-item-2744" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2744 item-level-1 wd-event-hover" ><a title="ویدئو گیتار پاپ" href="https://parsguitar.com/category/pop-guitar/video-pop-guitar/" class="woodmart-nav-link">ویدئو آموزشی آهنگ</a></li>
</ul>
</div>
</div>
</li>
<li id="menu-item-65083" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-65083 item-level-0 menu-simple-dropdown wd-event-hover" ><a href="https://parsguitar.com/rules/" class="woodmart-nav-link"><span class="nav-link-text">قوانین</span></a></li>
<li id="menu-item-52683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-52683 item-level-0 menu-simple-dropdown wd-event-hover" ><a href="https://parsguitar.com/contact/" class="woodmart-nav-link"><span class="nav-link-text">تماس با ما</span></a></li>
<li id="menu-item-71539" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-71539 item-level-0 menu-simple-dropdown wd-event-hover" ><a href="https://parsguitar.com/my-account/my-downloads/" class="woodmart-nav-link"><span class="nav-link-text">دانلود ها</span></a></li>
</ul></nav>
</div>
<div class="whb-column whb-col-right whb-column10 whb-visible-lg">
				<link rel="stylesheet" id="wd-woo-mod-login-form-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/woo-mod-login-form.min.css?ver=Version" type="text/css" media="all" /> 						<link rel="stylesheet" id="wd-header-my-account-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/header-el-my-account-rtl.min.css?ver=Version" type="text/css" media="all" /> 			<div class="wd-header-my-account wd-tools-element wd-event-hover wd-with-username wd-design-7 wd-account-style-icon wd-with-wrap whb-2b8mjqhbtvxz16jtxdrd">
			<a href="https://parsguitar.com/my-account/" title="حساب کاربری من">
							<span class="wd-tools-inner">
			
				<span class="wd-tools-icon">
									</span>
				<span class="wd-tools-text">
				ورود / ثبت نام			</span>

							</span>
					</a>

			</div>
			<link rel="stylesheet" id="wd-header-cart-side-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/header-el-cart-side.min.css?ver=Version" type="text/css" media="all" /> 						<link rel="stylesheet" id="wd-header-cart-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/header-el-cart-rtl.min.css?ver=Version" type="text/css" media="all" /> 						<link rel="stylesheet" id="wd-widget-shopping-cart-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/woo-widget-shopping-cart.min.css?ver=Version" type="text/css" media="all" /> 						<link rel="stylesheet" id="wd-widget-product-list-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/woo-widget-product-list.min.css?ver=Version" type="text/css" media="all" /> 			
<div class="wd-header-cart wd-tools-element wd-design-7 cart-widget-opener whb-5u866sftq6yga790jxf3">
	<a href="https://parsguitar.com/cart/" title="سبد خرید">
		
			<span class="wd-tools-icon wd-icon-alt">
															<span class="wd-cart-number wd-tools-count">0 <span>محصول</span></span>
									</span>
			<span class="wd-tools-text">
				
										<span class="wd-cart-subtotal"><span class="woocommerce-Price-amount amount"><bdi>0<span class="woocommerce-Price-currencySymbol" translate="no">تومان</span></bdi></span></span>
					</span>

			</a>
	</div>
</div>
<div class="whb-column whb-mobile-left whb-column_mobile2 whb-hidden-lg">
				<link rel="stylesheet" id="wd-header-mobile-nav-dropdown-css" href="https://parsguitar.com/wp-content/themes/studiare/css/parts/header-el-mobile-nav-dropdown.min.css?ver=Version" type="text/css" media="all" /> 			<div class="wd-tools-element wd-header-mobile-nav wd-style-text wd-design-1 whb-wn5z894j1g5n0yp3eeuz">
	<a href="#" rel="nofollow" aria-label="باز کردن منوی موبایل">
		
		<span class="wd-tools-icon">
					</span>

		<span class="wd-tools-text">منو</span>

			</a>
</div></div>
<div class="whb-column whb-mobile-center whb-column_mobile3 whb-hidden-lg">
	<div class="site-logo whb-g5z57bkgtznbk6v9pll5">
	<a href="https://parsguitar.com/" class="wd-logo wd-main-logo" rel="home" aria-label="لوگوی وب سایت">
		<img width="350" height="101" src="https://parsguitar.com/wp-content/uploads/2022/01/logo-site2.png" class="attachment-full size-full" alt="" style="max-width:140px;" decoding="async" srcset="https://parsguitar.com/wp-content/uploads/2022/01/logo-site2.png 350w, https://parsguitar.com/wp-content/uploads/2022/01/logo-site2-150x43.png 150w, https://parsguitar.com/wp-content/uploads/2022/01/logo-site2-300x87.png 300w" sizes="(max-width: 350px) 100vw, 350px" />	</a>
	</div>
</div>
<div class="whb-column whb-mobile-right whb-column_mobile4 whb-hidden-lg">
	
<div class="wd-header-cart wd-tools-element wd-design-5 cart-widget-opener whb-u6cx6mzhiof1qeysah9h">
	<a href="https://parsguitar.com/cart/" title="سبد خرید">
		
			<span class="wd-tools-icon wd-icon-alt">
															<span class="wd-cart-number wd-tools-count">0 <span>محصول</span></span>
									</span>
			<span class="wd-tools-text">
				
										<span class="wd-cart-subtotal"><span class="woocommerce-Price-amount amount"><bdi>0<span class="woocommerce-Price-currencySymbol" translate="no">تومان</span></bdi></span></span>
					</span>

			</a>
	</div>
</div>
		</div>
	</div>
</div>
</div>
				</header>
			
					
		
		<main id="main-content" class="wd-content-layout content-layout-wrapper container" role="main">
				
<div class="main-page-content default-margin" id="content">
	<div class="site-content-inner container" role="main">
		<div class="blog-archive has-sidebar sidebar-right">

			<div class="blog-main-loop">
				<div class="taxonomy-description"><h1 style="text-align: center"><strong>آکورد آهنگ های ابی</strong></h1>
<p>ابراهیم حامدی (زادهٔ ۲۹ خرداد ۱۳۲۸ در تهران) با نام هنری ابی خوانندهٔ موسیقی پاپ ایرانی است. او از دسته خوانندگان تنور ایران است. وی در سبک‌های مختلف موسیقی صاحب اثر است: راک، بالاد، موسیقی فولکلور، پاپ، دنس، هاوس و ترنس.</p>
<p>برخی او را با تام جونز خوانندهٔ سرشناس بریتانیایی مقایسه کرده‌اند، با این تفاوت که ابی را بر خلاف تام جونز دارای تمایلات سیاسی می‌دانند. بسیاری از طرفدارانش او را «آقای صدا» در حوزهٔ موسیقی پاپ فارسی می‌دانند.</p>
<p>در این صفحه شما آکورد های ابی رو می توانید مشاهده کنید.</p>
<p><a href="https://fa.wikipedia.org/wiki/%D8%A7%D8%A8%DB%8C" target="_blank" rel="noopener noreferrer">توضیجات بیشتر</a></p>
</div>
				
			
				

					
				

			
		{"items":"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<link rel=\"stylesheet\" id=\"wd-post-types-mod-categories-style-bg-css\" href=\"https:\/\/parsguitar.com\/wp-content\/themes\/studiare\/css\/parts\/post-types-mod-categories-style-bg.min.css?ver=Version\" type=\"text\/css\" media=\"all\" \/> \t\t\t\n<article id=\"post-52630\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-52630 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 vocalist-155 arrangement-434 lyrics-227 composer-265 structure-chord rhythm-6-8\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" decoding=\"async\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1.jpg 550w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1-100x100.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/delbar-guitar-chord-ebi\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0627\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u062f\u0644\u0628\u0631 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<link rel=\"stylesheet\" id=\"wd-post-types-mod-date-style-bg-css\" href=\"https:\/\/parsguitar.com\/wp-content\/themes\/studiare\/css\/parts\/post-types-mod-date-style-bg.min.css?ver=Version\" type=\"text\/css\" media=\"all\" \/> \t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t17\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0645\u0631\u062f\u0627\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/delbar-guitar-chord-ebi\/\" rel=\"bookmark\">\u0627\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u062f\u0644\u0628\u0631 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<link rel=\"stylesheet\" id=\"wd-blog-mod-author-css\" href=\"https:\/\/parsguitar.com\/wp-content\/themes\/studiare\/css\/parts\/blog-mod-author.min.css?ver=Version\" type=\"text\/css\" media=\"all\" \/> \t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-05-17T20:22:23+04:30\">\n\t\t\t17 \u0645\u0631\u062f\u0627\u062f 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/delbar-1.jpg&description=%D8%A7%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%AF%D9%84%D8%A8%D8%B1+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<link rel=\"stylesheet\" id=\"wd-blog-mod-comments-button-css\" href=\"https:\/\/parsguitar.com\/wp-content\/themes\/studiare\/css\/parts\/blog-mod-comments-button.min.css?ver=Version\" type=\"text\/css\" media=\"all\" \/> \t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/delbar-guitar-chord-ebi\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/delbar-guitar-chord-ebi\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-52616\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-52616 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 tag-6846 tag-6847 vocalist-155 arrangement-6817 lyrics-246 composer-247 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u0647\u0646\u06af \u0633\u062a\u0627\u0631\u0647 \u0647\u0627\u06cc \u0633\u0631\u0628\u06cc\" decoding=\"async\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi.jpg 500w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/setarehaye-sorbi-chord-ebi\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0633\u062a\u0627\u0631\u0647 \u0647\u0627\u06cc \u0633\u0631\u0628\u06cc \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t17\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0645\u0631\u062f\u0627\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/setarehaye-sorbi-chord-ebi\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0633\u062a\u0627\u0631\u0647 \u0647\u0627\u06cc \u0633\u0631\u0628\u06cc \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-11-18T23:21:43+03:30\">\n\t\t\t18 \u0628\u0647\u0645\u0646 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/setarerhaye-sorbi.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%B3%D8%AA%D8%A7%D8%B1%D9%87+%D9%87%D8%A7%DB%8C+%D8%B3%D8%B1%D8%A8%DB%8C+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/setarehaye-sorbi-chord-ebi\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/setarehaye-sorbi-chord-ebi\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-52636\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-52636 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 vocalist-155 arrangement-6817 lyrics-246 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi.jpg 480w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/shab-gerye-chord-ebi\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0627\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0634\u0628 \u06af\u0631\u06cc\u0647 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t17\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0645\u0631\u062f\u0627\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/shab-gerye-chord-ebi\/\" rel=\"bookmark\">\u0627\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0634\u0628 \u06af\u0631\u06cc\u0647 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-05-17T19:32:04+04:30\">\n\t\t\t17 \u0645\u0631\u062f\u0627\u062f 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/ebi.jpg&description=%D8%A7%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%B4%D8%A8+%DA%AF%D8%B1%DB%8C%D9%87+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/shab-gerye-chord-ebi\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/shab-gerye-chord-ebi\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-52653\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-52653 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 vocalist-155 arrangement-262 lyrics-420 composer-265 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500.jpg 500w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/atre-to-chord-ebi\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0627\u06a9\u0648\u0631\u062f \u0627\u0647\u0646\u06af \u0639\u0637\u0631 \u062a\u0648 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t17\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0645\u0631\u062f\u0627\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/atre-to-chord-ebi\/\" rel=\"bookmark\">\u0627\u06a9\u0648\u0631\u062f \u0627\u0647\u0646\u06af \u0639\u0637\u0631 \u062a\u0648 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-05-17T18:49:07+04:30\">\n\t\t\t17 \u0645\u0631\u062f\u0627\u062f 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/08\/artworks-000142862994-jg5wk1-t500x500.jpg&description=%D8%A7%DA%A9%D9%88%D8%B1%D8%AF+%D8%A7%D9%87%D9%86%DA%AF+%D8%B9%D8%B7%D8%B1+%D8%AA%D9%88+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/atre-to-chord-ebi\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/atre-to-chord-ebi\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-51633\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-51633 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 vocalist-155 vocalist-780 arrangement-4800 lyrics-3580 composer-6588 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0648\u0627\u06cc \u0628\u0647 \u062d\u0627\u0644\u0634 \u0627\u0632 \u0647\u0627\u06cc\u062f\u0647\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1.jpg 399w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/googoosh-nostalgia-giutar-cord\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0646\u0648\u0633\u062a\u0627\u0644\u0698\u06cc \u0627\u0632 \u0627\u0628\u06cc \u0648 \u06af\u0648\u06af\u0648\u0634\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t13\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u062a\u06cc\u0631\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/googoosh-nostalgia-giutar-cord\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0646\u0648\u0633\u062a\u0627\u0644\u0698\u06cc \u0627\u0632 \u0627\u0628\u06cc \u0648 \u06af\u0648\u06af\u0648\u0634<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-04-16T19:15:04+04:30\">\n\t\t\t16 \u062a\u06cc\u0631 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/07\/daryayi-1.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D9%86%D9%88%D8%B3%D8%AA%D8%A7%D9%84%DA%98%DB%8C+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C+%D9%88+%DA%AF%D9%88%DA%AF%D9%88%D8%B4\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/googoosh-nostalgia-giutar-cord\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/googoosh-nostalgia-giutar-cord\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-51149\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-51149 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 tag-6996 vocalist-155 vocalist-184 arrangement-199 lyrics-420 composer-265 structure-chord rhythm-2-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d.jpg 500w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/darioush-noon-panir-sabzi-chord\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0646\u0648\u0646 \u0648 \u067e\u0646\u06cc\u0631 \u0648 \u0633\u0628\u0632\u06cc \u0627\u0632 \u062f\u0627\u0631\u06cc\u0648\u0634\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t17\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u062e\u0631\u062f\u0627\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/darioush-noon-panir-sabzi-chord\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0646\u0648\u0646 \u0648 \u067e\u0646\u06cc\u0631 \u0648 \u0633\u0628\u0632\u06cc \u0627\u0632 \u062f\u0627\u0631\u06cc\u0648\u0634<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1402-04-16T01:51:39+03:30\">\n\t\t\t16 \u062a\u06cc\u0631 1402\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-va-d.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D9%86%D9%88%D9%86+%D9%88+%D9%BE%D9%86%DB%8C%D8%B1+%D9%88+%D8%B3%D8%A8%D8%B2%DB%8C+%D8%A7%D8%B2+%D8%AF%D8%A7%D8%B1%DB%8C%D9%88%D8%B4\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/darioush-noon-panir-sabzi-chord\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/darioush-noon-panir-sabzi-chord\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-50882\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-50882 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-774 vocalist-155 arrangement-199 lyrics-227 composer-265 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-600x600.jpg 600w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-768x768.jpg 768w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi.jpg 1000w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/ebi-hezaroyekshab-guitar-cord\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0647\u0632\u0627\u0631\u0648 \u06cc\u06a9 \u0634\u0628 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t17\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u062e\u0631\u062f\u0627\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/%d8%b9%d8%af%d9%85-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1-%d8%b5%d9%81%d8%ad%d9%87-%d8%a7%d9%88%d9%84\/\" rel=\"category tag\">\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0627\u0648\u0644<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-hezaroyekshab-guitar-cord\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0647\u0632\u0627\u0631\u0648 \u06cc\u06a9 \u0634\u0628 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-03-29T15:15:37+04:30\">\n\t\t\t29 \u062e\u0631\u062f\u0627\u062f 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/06\/ebi.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D9%87%D8%B2%D8%A7%D8%B1%D9%88+%DB%8C%DA%A9+%D8%B4%D8%A8+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-hezaroyekshab-guitar-cord\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/ebi-hezaroyekshab-guitar-cord\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-50387\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-50387 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-pop-guitar vocalist-123 vocalist-155 structure-chord rhythm-6-8\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u0642\u0628\u0644\u0647 \u0627\u0632 \u0627\u0628\u06cc\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble.jpg 460w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%da%af%db%8c%d8%aa%d8%a7%d8%b1-%d8%a2%d9%87%d9%86%da%af-%d9%82%d8%a8%d9%84%d9%87-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u0642\u0628\u0644\u0647 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t18\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/\" rel=\"category tag\">\u06af\u06cc\u062a\u0627\u0631 \u067e\u0627\u067e<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%da%af%db%8c%d8%aa%d8%a7%d8%b1-%d8%a2%d9%87%d9%86%da%af-%d9%82%d8%a8%d9%84%d9%87-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u0642\u0628\u0644\u0647 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/116d684703be0363e4e1c9eaf6fb173f35819d5360f28ef488a711ca5b8961c1?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/arefix\/\" class=\"author\" rel=\"author\">\u0639\u0627\u0631\u0641 \u0639\u0644\u06cc\u0632\u0627\u062f\u0647<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1401-02-18T16:05:28+04:30\">\n\t\t\t18 \u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a 1401\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/05\/ebi-gheble.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%DA%AF%DB%8C%D8%AA%D8%A7%D8%B1+%D8%A2%D9%87%D9%86%DA%AF+%D9%82%D8%A8%D9%84%D9%87+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%da%af%db%8c%d8%aa%d8%a7%d8%b1-%d8%a2%d9%87%d9%86%da%af-%d9%82%d8%a8%d9%84%d9%87-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%da%af%db%8c%d8%aa%d8%a7%d8%b1-%d8%a2%d9%87%d9%86%da%af-%d9%82%d8%a8%d9%84%d9%87-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-47938\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-47938 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-pop-guitar vocalist-123 vocalist-155 structure-chord rhythm-6-8\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u062a\u0647\u0631\u0627\u0646 \u0645\u0646 \u0627\u0632 \u0627\u0628\u06cc\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img-400x400.jpg 400w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img-120x120.jpg 120w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img.jpg 500w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%d8%aa%d9%87%d8%b1%d8%a7%d9%86-%d9%85%d9%86-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u062a\u0647\u0631\u0627\u0646 \u0645\u0646 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t01\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0627\u0633\u0641\u0646\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/\" rel=\"category tag\">\u06af\u06cc\u062a\u0627\u0631 \u067e\u0627\u067e<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%d8%aa%d9%87%d8%b1%d8%a7%d9%86-%d9%85%d9%86-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u062a\u0647\u0631\u0627\u0646 \u0645\u0646 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/0580ca90f561f5daa1a66f2217b3ebeb60eb785ce02118babac188ad04b1a388?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/0580ca90f561f5daa1a66f2217b3ebeb60eb785ce02118babac188ad04b1a388?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/golnaz-zahraei\/\" class=\"author\" rel=\"author\">\u06af\u0644\u0646\u0627\u0632 \u0632\u0647\u0631\u0627\u06cc\u06cc<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1400-12-01T15:01:08+03:30\">\n\t\t\t1 \u0627\u0633\u0641\u0646\u062f 1400\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2022\/02\/Ebi-Tehrane-Man-img.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%DA%AF%DB%8C%D8%AA%D8%A7%D8%B1+%D8%A2%D9%87%D9%86%DA%AF+%D8%AA%D9%87%D8%B1%D8%A7%D9%86+%D9%85%D9%86+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%d8%aa%d9%87%d8%b1%d8%a7%d9%86-%d9%85%d9%86-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/%d8%a2%da%a9%d9%88%d8%b1%d8%af-%d8%aa%d9%87%d8%b1%d8%a7%d9%86-%d9%85%d9%86-%d8%a7%d8%b2-%d8%a7%d8%a8%db%8c\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-32845\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-32845 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-pop-guitar tag-4081 tag-4079 tag-4080 vocalist-123 vocalist-155 lyrics-566 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u0632\u062e\u0645 \u0646\u0627\u0645\u0631\u0626\u06cc \u0627\u0632 \u0627\u0628\u06cc\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree-450x450.jpg 450w, https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree-36x36.jpg 36w, https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree.jpg 600w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/ebi-zakhme-namaree-chord\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u0632\u062e\u0645 \u0646\u0627\u0645\u0631\u0626\u06cc \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t12\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0627\u0633\u0641\u0646\u062f\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/\" rel=\"category tag\">\u06af\u06cc\u062a\u0627\u0631 \u067e\u0627\u067e<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-zakhme-namaree-chord\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631 \u0622\u0647\u0646\u06af \u0632\u062e\u0645 \u0646\u0627\u0645\u0631\u0626\u06cc \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/0580ca90f561f5daa1a66f2217b3ebeb60eb785ce02118babac188ad04b1a388?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/0580ca90f561f5daa1a66f2217b3ebeb60eb785ce02118babac188ad04b1a388?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/golnaz-zahraei\/\" class=\"author\" rel=\"author\">\u06af\u0644\u0646\u0627\u0632 \u0632\u0647\u0631\u0627\u06cc\u06cc<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1398-12-12T09:51:03+03:30\">\n\t\t\t12 \u0627\u0633\u0641\u0646\u062f 1398\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2020\/03\/ebi-zakhme-namaree.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%DA%AF%DB%8C%D8%AA%D8%A7%D8%B1+%D8%A2%D9%87%D9%86%DA%AF+%D8%B2%D8%AE%D9%85+%D9%86%D8%A7%D9%85%D8%B1%D8%A6%DB%8C+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-zakhme-namaree-chord\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/ebi-zakhme-namaree-chord\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-29234\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-29234 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-pop-guitar tag-3483 tag-3485 tag-3484 vocalist-123 vocalist-155 structure-chord rhythm-2-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0622\u0628\u06cc \u0627\u0632 \u0627\u0628\u06cc\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi-450x450.jpg 450w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi-36x36.jpg 36w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi.jpg 480w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/ebi-abi-chord\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0622\u0628\u06cc \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t03\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0645\u0647\u0631\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/\" rel=\"category tag\">\u06af\u06cc\u062a\u0627\u0631 \u067e\u0627\u067e<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-abi-chord\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u0622\u0628\u06cc \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/9af2e5c4115e9605de1e716b09da82b96b81945556be76cc116e4ec57403af22?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/9af2e5c4115e9605de1e716b09da82b96b81945556be76cc116e4ec57403af22?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/shaahin-pariz\/\" class=\"author\" rel=\"author\">\u0634\u0627\u0647\u06cc\u0646 \u067e\u0631\u06cc\u0632<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1398-07-03T22:07:36+03:30\">\n\t\t\t3 \u0645\u0647\u0631 1398\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/ebi-abi.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%A2%D8%A8%DB%8C+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-abi-chord\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/ebi-abi-chord\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\t\t\t\t\t\t\n<article id=\"post-28877\" class=\"wd-post blog-design-masonry blog-post-loop blog-style-bg wd-add-shadow wd-col post-28877 post type-post status-publish format-standard has-post-thumbnail hentry category-chords category-pop-guitar tag-3388 tag-3387 tag-3389 vocalist-123 vocalist-155 structure-chord rhythm-4-4\">\n\t<div class=\"wd-post-inner article-inner\">\n\t\t\t\t\t<div class=\"wd-post-thumb entry-header\">\n\t\t\t\t\t\t\t\t\t<div class=\"wd-post-img post-img-wrapp\">\n\t\t\t\t\t\t<img width=\"150\" height=\"150\" src=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo-150x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u062c\u0633\u062a\u062c\u0648 \u0627\u0632 \u0627\u0628\u06cc\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo-150x150.jpg 150w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo-300x300.jpg 300w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo-450x450.jpg 450w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo-36x36.jpg 36w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo-100x100.jpg 100w, https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo.jpg 500w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<a class=\"wd-fill\" tabindex=\"-1\" href=\"https:\/\/parsguitar.com\/ebi-jostejoo-chord\/\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062f\u0631 \u0646\u0648\u0634\u062a\u0647 \u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u062c\u0633\u062a\u062c\u0648 \u0627\u0632 \u0627\u0628\u06cc\"><\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-date wd-style-with-bg\">\n\t\t\t\t<span class=\"post-date-day\">\n\t\t\t\t\t27\t\t\t\t<\/span>\n\t\t\t\t<span class=\"post-date-month\">\n\t\t\t\t\t\u0634\u0647\u0631\u06cc\u0648\u0631\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\n\t\t<div class=\"wd-post-content article-body-container\">\n\t\t\t\t\t\t\t<div class=\"wd-post-cat wd-style-with-bg meta-post-categories\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/chords\/\" rel=\"category tag\">\u0622\u06a9\u0648\u0631\u062f \u06af\u06cc\u062a\u0627\u0631<\/a>, <a href=\"https:\/\/parsguitar.com\/category\/pop-guitar\/\" rel=\"category tag\">\u06af\u06cc\u062a\u0627\u0631 \u067e\u0627\u067e<\/a>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t<h3 class=\"wd-post-title wd-entities-title title post-title\">\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-jostejoo-chord\/\" rel=\"bookmark\">\u0622\u06a9\u0648\u0631\u062f \u0622\u0647\u0646\u06af \u062c\u0633\u062a\u062c\u0648 \u0627\u0632 \u0627\u0628\u06cc<\/a>\n\t\t\t\t<\/h3>\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wd-post-meta\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-author\">\n\t\t\t\t\t\t\t\t\t\t\t<span>\u0627\u0631\u0633\u0627\u0644 \u062a\u0648\u0633\u0637<\/span>\n\t\t\n\t\t\t\t\t<img alt='author-avatar' src='https:\/\/secure.gravatar.com\/avatar\/9af2e5c4115e9605de1e716b09da82b96b81945556be76cc116e4ec57403af22?s=18&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/9af2e5c4115e9605de1e716b09da82b96b81945556be76cc116e4ec57403af22?s=36&#038;r=g 2x' class='avatar avatar-18 photo' height='18' width='18' loading='lazy' decoding='async'\/>\t\t\n\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/author\/shaahin-pariz\/\" class=\"author\" rel=\"author\">\u0634\u0627\u0647\u06cc\u0646 \u067e\u0631\u06cc\u0632<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"wd-modified-date\">\n\t\t\t\t\t\t\t\t<time class=\"updated\" datetime=\"1398-06-27T16:42:53+04:30\">\n\t\t\t27 \u0634\u0647\u0631\u06cc\u0648\u0631 1398\t\t<\/time>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<div tabindex=\"0\" class=\"wd-post-share wd-tltp\">\n\t\t\t\t\t\t\t<div class=\"tooltip top\">\n\t\t\t\t\t\t\t\t<div class=\"tooltip-inner\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\tclass=\" wd-social-icons wd-style-default wd-size-small social-share wd-shape-circle color-scheme-light text-center\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-facebook\" aria-label=\"Facebook link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/x.com\/share?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-twitter\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u0634\u0628\u06a9\u0647 X\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/pinterest.com\/pin\/create\/button\/?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/&media=https:\/\/parsguitar.com\/wp-content\/uploads\/2019\/09\/Ebi-jostejoo.jpg&description=%D8%A2%DA%A9%D9%88%D8%B1%D8%AF+%D8%A2%D9%87%D9%86%DA%AF+%D8%AC%D8%B3%D8%AA%D8%AC%D9%88+%D8%A7%D8%B2+%D8%A7%D8%A8%DB%8C\" target=\"_blank\" class=\" wd-social-icon social-pinterest\" aria-label=\"\u0644\u06cc\u0646\u06a9 Pinterest\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-linkedin\" aria-label=\"Linkedin link\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a rel=\"noopener noreferrer nofollow\" href=\"https:\/\/telegram.me\/share\/url?url=https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/\" target=\"_blank\" class=\" wd-social-icon social-tg\" aria-label=\"\u0644\u06cc\u0646\u06a9 \u062a\u0644\u06af\u0631\u0627\u0645\">\n\t\t\t\t\t\t<span class=\"wd-icon\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tooltip-arrow\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-reply wd-style-1\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/parsguitar.com\/ebi-jostejoo-chord\/#respond\"><span class=\"wd-replies-count\">0<\/span><\/a>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"wd-post-read-more wd-style-link read-more-section\">\n\t\t\t\t\t\t<a class=\"\" href=\"https:\/\/parsguitar.com\/ebi-jostejoo-chord\/\">\u0627\u062f\u0627\u0645\u0647 \u0645\u0637\u0644\u0628<\/a>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/article>\n\n\t\t\t\t\t\n\t\t\t\t\t","status":"have-posts","nextPage":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/3\/?woo_ajax=1","currentPage":"https:\/\/parsguitar.com\/vocalist\/%d8%a7\/%d8%a7%d8%a8%db%8c\/page\/2"}