From e5e485dfc71caf31f72923a4bc3e200208fb40e7 Mon Sep 17 00:00:00 2001 From: cryptoapi Date: Thu, 12 Oct 2017 23:28:54 +0300 Subject: [PATCH] ver 1.4.1 --- gourl.php | 110 +++- gourl_wordpress.php | 4 +- languages/gourl-default.po | 1236 ++++++++++++++++++----------------- languages/gourl-ru_RU.mo | Bin 127848 -> 128896 bytes languages/gourl-ru_RU.po | 1254 +++++++++++++++++++----------------- readme.md | 4 +- readme.txt | 6 +- 7 files changed, 1372 insertions(+), 1242 deletions(-) diff --git a/gourl.php b/gourl.php index 528d679..b3898f8 100644 --- a/gourl.php +++ b/gourl.php @@ -7,6 +7,7 @@ final class gourlclass { private $options = array(); // global setting values + private $hash_url = ""; // security; save your gourl public/private keys sha1 hash in file (db and file) private $errors = array(); // global setting errors private $payments = array(); // global activated payments (bitcoin, litecoin, etc) @@ -52,7 +53,8 @@ final class gourlclass */ public function __construct() { - + $this->hash_url = GOURL_DIR."files/gourl.hash"; // you can change path + $this->coin_names = self::coin_names(); $this->coin_chain = self::coin_chain(); $this->coin_www = self::coin_www(); @@ -755,6 +757,35 @@ private function get_settings() if (!$this->options[$k."url"]) $this->options[$k] = 0; } + + + // Additional Security - compare gourl public/private keys sha1 hash with hash stored in file $this->hash_url + // ------------------ + $txt = (is_readable($this->hash_url)) ? file_get_contents($this->hash_url) : ""; + $arr = json_decode($txt, true); + + if (isset($arr["nonce"]) && $arr["nonce"] != sha1(md5(NONCE_KEY))) + { + $this->save_cryptokeys_hash(); // admin changed NONCE_KEY + $txt = (is_readable($this->hash_url)) ? file_get_contents($this->hash_url) : ""; + $arr = json_decode($txt, true); + } + + foreach($this->coin_names as $k => $v) + { + $pub = $v."public_key"; + $prv = $v."private_key"; + if (($this->options[$pub] || $this->options[$prv]) && + (!isset($arr[$pub]) || !isset($arr[$prv]) || + $arr[$pub] != sha1($this->options[$pub].NONCE_KEY.$this->options[$pub]) || + $arr[$prv] != sha1($this->options[$prv].NONCE_KEY.$this->options[$prv]))) + { + $this->options[$pub] = $this->options[$prv] = ""; + update_option(GOURL.$pub, ""); + update_option(GOURL.$prv, ""); + } + } + return true; } @@ -838,6 +869,9 @@ private function check_settings() if (!function_exists( 'mysqli_connect' )) $this->errors[] = sprintf(__("Error. Please enable MySQLi extension in PHP. Read here »", GOURL), "http://php.net/manual/en/book.mysqli.php", "http://crybit.com/how-to-enable-mysqli-extension-on-web-server/"); if (version_compare(phpversion(), '5.4.0', '<')) $this->errors[] = sprintf(__("Error. You need PHP 5.4.0 (or greater). Current php version: %s", GOURL), phpversion()); + // writable directory + if (!file_exists($this->hash_url) && !is_writable(dirname($this->hash_url))) $this->errors[] = sprintf(__("Error. Cannot write file %s - please make directory %s writable.", GOURL), $this->hash_url, dirname($this->hash_url)); + return true; } @@ -849,16 +883,56 @@ private function check_settings() */ private function save_settings() { + $arr = array(); foreach ($this->options as $key => $value) { - update_option(GOURL.$key, $value); + $boxkey = (strpos($key, "public_key") || strpos($key, "private_key")) ? true : false; + if (!(file_exists($this->hash_url) && !is_writable($this->hash_url) && $boxkey)) + { + if ($boxkey && get_option(GOURL.$key) != $value) $arr[$key] = array("old_key" => get_option(GOURL.$key), "new_key" => $value); + update_option(GOURL.$key, $value); + } } - + + if ($arr) + { + wp_mail(get_bloginfo('admin_email'), 'Notification - GoUrl Bitcoin Payment Gateway Plugin - Cryptobox Keys Changed', + date("r")."\n\nGoUrl Bitcoin Payment Gateway for Wordpress plugin\n\nFollowing crypto payment box/es keys was changed on your website -\n\n".print_r($arr, true)); + } + + $this->save_cryptokeys_hash(); + return true; } + /* + * 12b. Additional Security + * Save gourl public/private keys sha1 hash in file $this->hash_url + */ + private function save_cryptokeys_hash() + { + if (!file_exists($this->hash_url) || is_writable($this->hash_url)) + { + $arr = array("nonce" => sha1(md5(NONCE_KEY))); + foreach($this->coin_names as $k => $v) + { + $pub = $v."public_key"; + $prv = $v."private_key"; + if ($this->options[$pub] && $this->options[$prv]) + { + $arr[$pub] = sha1($this->options[$pub].NONCE_KEY.$this->options[$pub]); + $arr[$prv] = sha1($this->options[$prv].NONCE_KEY.$this->options[$prv]); + } + } + + file_put_contents($this->hash_url, json_encode($arr)); + } + + return true; + } + /* @@ -866,7 +940,8 @@ private function save_settings() */ public function page_settings() { - + $readonly = (file_exists($this->hash_url) && !is_writable($this->hash_url)) ? 'readonly' : ''; + if ($this->errors) $message = "
".__('Please fix errors below:', GOURL)."
"; elseif ($this->updated) $message = '

'.__('Settings have been updated successfully', GOURL).'

'; else $message = ""; @@ -895,8 +970,9 @@ public function page_settings() $tmp .= ''; $tmp .= '

'.sprintf(__( "If you use multiple websites online, please create separate GoUrl Payment Box records (with unique payment box public/private keys) for each of your websites. Do not use the same GoUrl Payment Box with the same public/private keys on your different websites.", GOURL ), "https://gourl.io/editrecord/coin_boxes/0") . '

'; - $tmp .= '

'.sprintf(__( "If you want to use plugin in a language other than English, see the page Languages and Translations.   This enables you to easily customize the texts of all the labels visible to your users.", GOURL ), "https://gourl.io/languages.html", "https://gourl.io/languages.html") . '



'; - + $tmp .= '

'.sprintf(__( "If you want to use plugin in a language other than English, see the page Languages and Translations.   This enables you to easily customize the texts of all the labels visible to your users.", GOURL ), "https://gourl.io/languages.html", "https://gourl.io/languages.html") . '

'; + if (!$readonly) $tmp .= '

'.sprintf(__( "Additional Security - You can make file %s - readonly. GoUrl Public/Private keys on page below will be not editable anymore (readonly mode).", GOURL ), $this->hash_url, "".basename($this->hash_url)."", "https://www.cyberciti.biz/faq/linux-write-protecting-a-file/") . '

'; + $tmp .= '

'; $tmp .= '
'; $tmp .= ''; $tmp .= ''; @@ -918,10 +994,11 @@ public function page_settings() $tmp .= ''.$v2.' '.__('Payments', GOURL).':
'; $tmp .= ''; - $tmp .= '
GoUrl '.$v2.' '.sprintf(__('Box (%s) Public Key', GOURL), $k).' -
'; - $tmp .= '
GoUrl '.$v2.' '.sprintf(__('Box (%s) Private Key', GOURL), $k).' -
'; - if ($this->options[$v.'public_key'] && $this->options[$v.'private_key'] && !$this->errors) $tmp .= ''.sprintf(__("%s (%s) payments are active!", GOURL), $v2, $k).''; - else $tmp .= ''.sprintf(__("That is not a %s wallet private key!   GoUrl %s Box Private/Public Keys are used for communicating between your website and GoUrl.io Payment Gateway server (similar like paypal id/keys).
If you want to start accepting payments in %s (%s), please create a %s Payment Box on GoUrl.io and then enter the received free GoUrl %s Box Public/Private Keys. Leave field blank if you do not accept payments in %s", GOURL), $v2, $v2, $this->coin_www[$v], $v2, $k, "https://gourl.io/editrecord/coin_boxes/0/", $v2, $v2, $v2).'
'; + $tmp .= '
GoUrl '.$v2.' '.sprintf(__('Box (%s) Public Key', GOURL), $k).' -
'; + $tmp .= '
GoUrl '.$v2.' '.sprintf(__('Box (%s) Private Key', GOURL), $k).' -
'; + if ($this->options[$v.'public_key'] && $this->options[$v.'private_key'] && !$this->errors) $tmp .= ''.sprintf(__("%s (%s) payments are active!", GOURL), $v2, $k).''; + elseif (!$readonly) $tmp .= ''.sprintf(__("That is not a %s wallet private key!   GoUrl %s Box Private/Public Keys are used for communicating between your website and GoUrl.io Payment Gateway server (similar like paypal id/keys).
If you want to start accepting payments in %s (%s), please create a %s Payment Box on GoUrl.io and then enter the received free GoUrl %s Box Public/Private Keys. Leave field blank if you do not accept payments in %s", GOURL), $v2, $v2, $this->coin_www[$v], $v2, $k, "https://gourl.io/editrecord/coin_boxes/0/", $v2, $v2, $v2).'
'; + if ($readonly) $tmp .= ''.sprintf(__("You cannot modify this values because security hash file %s is readonly!", GOURL), $this->hash_url, basename($this->hash_url)).''; $tmp .= ''; } @@ -5824,13 +5901,14 @@ private function upgrade () $wpdb->query("ALTER TABLE `crypto_products` CHANGE `priceCoin` `priceCoin` DOUBLE(17,5) NOT NULL DEFAULT '0.00000'"); } - - // current version - update_option(GOURL.'version', GOURL_VERSION); - // upload dir gourl_retest_dir(); + if (!file_exists($this->hash_url)) file_put_contents($this->hash_url, '{"nonce":"1"}'); + + // current version + update_option(GOURL.'version', GOURL_VERSION); + ob_flush(); return true; @@ -7676,7 +7754,3 @@ function gourl_altcoin_btc_price ($altcoin, $interval = 1) return 0; } - - - - diff --git a/gourl_wordpress.php b/gourl_wordpress.php index 5b5f522..9ab3591 100644 --- a/gourl_wordpress.php +++ b/gourl_wordpress.php @@ -3,7 +3,7 @@ Plugin Name: GoUrl Bitcoin Payment Gateway & Paid Downloads & Membership Plugin URI: https://gourl.io/bitcoin-wordpress-plugin.html Description: Official GoUrl.io Bitcoin Payment Gateway Plugin for Wordpress. Provides Pay-Per-Product, Pay-Per-Download, Pay-Per-Membership, Pay-Per-View and bitcoin/altcoin payment gateways for - WooCommerce, WP eCommerce, Jigoshop, MarketPress, AppThemes, Paid Memberships Pro, bbPress, Give Donations, etc. Accept Bitcoin, BitcoinCash, Litecoin, Dash, Dogecoin, Speedcoin, Reddcoin, Potcoin, Feathercoin, Vertcoin, Peercoin, MonetaryUnit payments online. No Chargebacks, Global, Secure. All in automatic mode. -Version: 1.4.0 +Version: 1.4.1 Author: GoUrl.io Author URI: https://gourl.io License: GPLv2 @@ -31,7 +31,7 @@ DEFINE('GOURL', "gourl"); DEFINE('GOURL_PREVIEW', "gourladmin"); -DEFINE('GOURL_VERSION', "1.4.0"); +DEFINE('GOURL_VERSION', "1.4.1"); DEFINE('GOURL_ADMIN', admin_url("admin.php?page=")); DEFINE('GOURL_DIR', $dir_arr["basedir"]."/".GOURL.'/'); DEFINE('GOURL_DIR2', $dir_arr["baseurl"]."/".GOURL.'/'); diff --git a/languages/gourl-default.po b/languages/gourl-default.po index d52bbcc..02a6ad4 100644 --- a/languages/gourl-default.po +++ b/languages/gourl-default.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: GoUrl Bitcoin Payment Gateway & Paid Downloads & " "Membership\n" -"POT-Creation-Date: 2017-10-09 12:53+0300\n" -"PO-Revision-Date: 2017-10-09 12:53+0300\n" +"POT-Creation-Date: 2017-10-12 12:36+0300\n" +"PO-Revision-Date: 2017-10-12 12:36+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" @@ -20,45 +20,45 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" -#: gourl.php:291 gourl.php:427 gourl.php:7438 +#: gourl.php:293 gourl.php:429 gourl.php:7516 msgid "Summary" msgstr "" -#: gourl.php:291 +#: gourl.php:293 msgid "version" msgstr "" -#: gourl.php:309 +#: gourl.php:311 msgid "Latest Payment to Pay-Per-Product" msgstr "" -#: gourl.php:311 gourl.php:372 gourl.php:416 gourl.php:4600 +#: gourl.php:313 gourl.php:374 gourl.php:418 gourl.php:4677 msgid "Latest Payment" msgstr "" -#: gourl.php:325 +#: gourl.php:327 msgid "Latest Payment to Pay-Per-Download" msgstr "" -#: gourl.php:342 +#: gourl.php:344 msgid "Latest Payment to Pay-Per-Membership" msgstr "" -#: gourl.php:356 +#: gourl.php:358 msgid "Latest Payment to Pay-Per-View" msgstr "" -#: gourl.php:388 +#: gourl.php:390 msgid "Latest Payment to Other Plugins" msgstr "" -#: gourl.php:402 +#: gourl.php:404 msgid "Unrecognised Latest Payment" msgstr "" -#: gourl.php:413 gourl.php:416 gourl.php:1357 gourl.php:1837 gourl.php:2088 -#: gourl.php:2898 gourl.php:3990 gourl.php:4599 gourl.php:6549 gourl.php:6797 -#: gourl.php:7069 +#: gourl.php:415 gourl.php:418 gourl.php:1434 gourl.php:1914 gourl.php:2165 +#: gourl.php:2975 gourl.php:4067 gourl.php:4676 gourl.php:6627 gourl.php:6875 +#: gourl.php:7147 msgid "USD" msgstr "" @@ -67,56 +67,56 @@ msgstr "" # -------------- # English: %s paid products # French: %s produits payés -#: gourl.php:436 +#: gourl.php:438 #, php-format msgid "%s paid products" msgstr "" -#: gourl.php:437 gourl.php:440 gourl.php:443 gourl.php:446 gourl.php:464 -#: gourl.php:469 gourl.php:472 gourl.php:4596 gourl.php:4597 gourl.php:4598 +#: gourl.php:439 gourl.php:442 gourl.php:445 gourl.php:448 gourl.php:466 +#: gourl.php:471 gourl.php:474 gourl.php:4673 gourl.php:4674 gourl.php:4675 msgid "payments" msgstr "" -#: gourl.php:439 +#: gourl.php:441 #, php-format msgid "%s paid files" msgstr "" -#: gourl.php:442 +#: gourl.php:444 #, php-format msgid "%s premium users" msgstr "" -#: gourl.php:468 +#: gourl.php:470 msgid "Other Plugins with GoUrl" msgstr "" -#: gourl.php:471 +#: gourl.php:473 msgid "Unrecognised Payments" msgstr "" -#: gourl.php:474 gourl.php:4596 +#: gourl.php:476 gourl.php:4673 msgid "Total Received" msgstr "" -#: gourl.php:474 +#: gourl.php:476 #, php-format msgid "%s payments" msgstr "" -#: gourl.php:475 +#: gourl.php:477 msgid "Recent Payment" msgstr "" -#: gourl.php:493 +#: gourl.php:495 msgid "GoUrl Live Currency Rates" msgstr "" -#: gourl.php:504 +#: gourl.php:506 msgid "What Makes Us Unique" msgstr "" -#: gourl.php:508 +#: gourl.php:510 msgid "Example" msgstr "" @@ -126,53 +126,53 @@ msgstr "" # English - 100%% Free Open Source on Github.com # --- # French - 100%% libre et open source sur Github -#: gourl.php:510 +#: gourl.php:512 #, php-format msgid "100%% Free Open Source on Github.com" msgstr "" -#: gourl.php:511 +#: gourl.php:513 #, php-format msgid "" "No Monthly Fee, Transaction Fee from 0%%. Set your own prices in USD, EUR, GBP, RUB, AUD (100 currencies)" msgstr "" -#: gourl.php:512 +#: gourl.php:514 msgid "" "No ID Required, No Bank Account Needed. Global, Anonymous, Secure, No " "Chargebacks, Zero Risk" msgstr "" -#: gourl.php:513 +#: gourl.php:515 #, php-format msgid "" "Get payments straight to your bitcoin/altcoin wallets and convert to USD/EUR/etc later. All in automatic mode" msgstr "" -#: gourl.php:514 +#: gourl.php:516 #, php-format msgid "" "Pay-Per-Download - simple solution for your " "unregistered visitors: make money on file downloads" msgstr "" -#: gourl.php:515 +#: gourl.php:517 #, php-format msgid "" "Pay-Per-View/Page - for your unregistered visitors: " "offer paid access to your premium content/videos" msgstr "" -#: gourl.php:516 +#: gourl.php:518 #, php-format msgid "" "Pay-Per-Membership - for your registered users: " "offer paid access to your premium content, custom actions" msgstr "" -#: gourl.php:517 +#: gourl.php:519 #, php-format msgid "" "Pay-Per-Product - advanced solution for your registered " @@ -180,19 +180,19 @@ msgid "" "email, etc" msgstr "" -#: gourl.php:518 +#: gourl.php:520 msgid "" "Working with third-party plugins - good support for " "third party plugins (WoCommerce, Jigoshop, bbPress, AppThemes, etc)" msgstr "" -#: gourl.php:519 +#: gourl.php:521 msgid "" "Support payments in Bitcoin, Bitcoin Cash, Litecoin, Dash, Dogecoin, " "Speedcoin, Reddcoin, Potcoin, Feathercoin, Vertcoin, Peercoin, MonetaryUnit" msgstr "" -#: gourl.php:520 +#: gourl.php:522 msgid "" "Auto Synchronization - between payments data stored on your GoUrl.io " "account and your Website. If GoUrl attempts to deliver a payment " @@ -201,86 +201,86 @@ msgid "" "it becomes available (re-check connection with your website every hour)" msgstr "" -#: gourl.php:521 +#: gourl.php:523 #, php-format msgid "" "Free Plugin Support and Free Add-ons " "for You" msgstr "" -#: gourl.php:529 +#: gourl.php:531 msgid "Free Bitcoin Gateway Add-ons" msgstr "" -#: gourl.php:530 +#: gourl.php:532 msgid "The following Add-ons extend the functionality of GoUrl -" msgstr "" -#: gourl.php:531 +#: gourl.php:533 msgid "All Add-ons on Wordpress.prg" msgstr "" -#: gourl.php:532 +#: gourl.php:534 msgid "View on 'Add Plugins' Page" msgstr "" -#: gourl.php:536 +#: gourl.php:538 msgid "Bitcoin/Altcoin Gateway" msgstr "" -#: gourl.php:536 +#: gourl.php:538 msgid "Description" msgstr "" -#: gourl.php:536 +#: gourl.php:538 msgid "Homepage" msgstr "" -#: gourl.php:536 +#: gourl.php:538 msgid "Wordpress.org" msgstr "" -#: gourl.php:536 +#: gourl.php:538 msgid "Installation pages" msgstr "" -#: gourl.php:537 +#: gourl.php:539 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for wordpress E-Commerce - " "WooCommerce 2.1+" msgstr "" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:551 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:553 msgid "Plugin Homepage" msgstr "" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 msgid "Screenshots" msgstr "" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:552 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:554 msgid "Wordpress Page" msgstr "" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:553 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:555 msgid "Open Source" msgstr "" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:554 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:556 msgid "Install Now" msgstr "" -#: gourl.php:537 +#: gourl.php:539 msgid "WooCommerce" msgstr "" -#: gourl.php:538 +#: gourl.php:540 #, php-format msgid "" "Bitcoin/Altcoin & Paypal Donations in Wordpress. Provides a GoUrl Bitcoin/" @@ -289,11 +289,11 @@ msgid "" "paypal, authorize.net, stripe, paymill donations directly onto your website." msgstr "" -#: gourl.php:538 +#: gourl.php:540 msgid "Give" msgstr "" -#: gourl.php:539 +#: gourl.php:541 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for " msgstr "" -#: gourl.php:540 +#: gourl.php:542 msgid "PaidMembPro" msgstr "" -#: gourl.php:541 +#: gourl.php:543 #, php-format msgid "" "This addon will add Premium Membership and Bitcoin payment gateway to Jigoshop 1.12+" msgstr "" -#: gourl.php:543 +#: gourl.php:545 msgid "Jigoshop" msgstr "" -#: gourl.php:544 +#: gourl.php:546 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for WP eCommerce 3.8.10+" msgstr "" -#: gourl.php:544 +#: gourl.php:546 msgid "WP eCommerce" msgstr "" -#: gourl.php:545 +#: gourl.php:547 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for MarketPress 2.9+" msgstr "" -#: gourl.php:545 +#: gourl.php:547 msgid "MarketPress" msgstr "" -#: gourl.php:545 +#: gourl.php:547 msgid "Important Notes" msgstr "" -#: gourl.php:546 +#: gourl.php:548 msgid "Supports Bitcoin/Altcoin Payments in Any Other Wordpress Plugins" msgstr "" -#: gourl.php:547 +#: gourl.php:549 #, php-format msgid "" "Other wordpress plugin developers can easily integrate Bitcoin payments to " @@ -400,11 +400,11 @@ msgid "" "dogecoin/etc payments will be automatically used in their plugins. It's easy!" msgstr "" -#: gourl.php:549 +#: gourl.php:551 msgid "Webmaster Spelling Notifications Plugin" msgstr "" -#: gourl.php:549 +#: gourl.php:551 #, php-format msgid "" "Plugin allows site visitors to send reports to the webmaster/owner about any " @@ -412,32 +412,32 @@ msgid "" "href='%s'>Live Demo" msgstr "" -#: gourl.php:563 +#: gourl.php:565 msgid "GoUrl Instruction" msgstr "" -#: gourl.php:566 +#: gourl.php:568 #, php-format msgid "" "Free Register or Login on GoUrl.io - Global Bitcoin Payment Gateway" msgstr "" -#: gourl.php:567 +#: gourl.php:569 #, php-format msgid "" "Create Payment Box Records for all coin " "types you will accept on your website" msgstr "" -#: gourl.php:568 +#: gourl.php:570 #, php-format msgid "" "You will need to place Callback URL on Gourl.io, please " "use: %s" msgstr "" -#: gourl.php:569 +#: gourl.php:571 #, php-format msgid "" "You will get Free GoUrl Public/Private keys from new " @@ -445,30 +445,30 @@ msgid "" "href='%s'>Settings Page" msgstr "" -#: gourl.php:572 +#: gourl.php:574 msgid "THAT'S IT! YOUR WEBSITE IS READY TO ACCEPT BITCOINS ONLINE!" msgstr "" -#: gourl.php:574 +#: gourl.php:576 #, php-format msgid "" -"Testing environment: You can use 110 " +"Testing environment: You can use 500 " "free Speedcoins or Dogecoins for testing" msgstr "" -#: gourl.php:582 +#: gourl.php:584 msgid "Differences between Pay-Per-View and Pay-Per-Membership" msgstr "" -#: gourl.php:585 +#: gourl.php:587 msgid "Click to see full size image" msgstr "" -#: gourl.php:585 +#: gourl.php:587 msgid "Add GoUrl Shortcodes to pages. Example" msgstr "" -#: gourl.php:590 +#: gourl.php:592 #, php-format msgid "" "Pay-Per-View - shortcode [%s] - you can use it for " @@ -479,7 +479,7 @@ msgid "" "lose their membership and a new payment box will be displayed." msgstr "" -#: gourl.php:591 +#: gourl.php:593 #, php-format msgid "" "Pay-Per-Membership - shortcode [%s] - similar to pay-" @@ -489,19 +489,19 @@ msgid "" "href='%s'>registration enabled." msgstr "" -#: gourl.php:592 +#: gourl.php:594 msgid "" "You can use custom actions with Pay-Per-Membership on your website " "(premium and free webpages).
For example, hide ads for premium users, php " "code below -" msgstr "" -#: gourl.php:595 +#: gourl.php:597 msgid "" "You can use custom actions with Pay-Per-View on your website too -" msgstr "" -#: gourl.php:598 +#: gourl.php:600 #, php-format msgid "" "Pay-Per-Membership integrated with bbPress Forum/" @@ -510,7 +510,7 @@ msgid "" "it with Bitcoins/altcoins." msgstr "" -#: gourl.php:599 +#: gourl.php:601 #, php-format msgid "" "Both solutions - Pay-Per-Membership and Pay-Per-View hide content on " @@ -519,7 +519,7 @@ msgid "" "bbPress also." msgstr "" -#: gourl.php:600 +#: gourl.php:602 msgid "" "If a visitor goes to a premium page and have not logged in -
Pay-Per-View " "will show a payment box and accept payments from the unregistered visitor." @@ -528,7 +528,7 @@ msgid "" "users only." msgstr "" -#: gourl.php:604 +#: gourl.php:606 #, php-format msgid "" "For example, you might offer paid unlimited access to your 50 website " @@ -545,7 +545,7 @@ msgid "" "your free webpages, etc." msgstr "" -#: gourl.php:606 +#: gourl.php:608 #, php-format msgid "" "Notes:
- Do not use [%s] and [%s] together on the same page.
- " @@ -553,17 +553,17 @@ msgid "" "and see original page content" msgstr "" -#: gourl.php:613 +#: gourl.php:615 msgid "Adding Custom Actions after Payment has been received" msgstr "" -#: gourl.php:614 +#: gourl.php:616 msgid "" "Using for Pay-Per-Product, Pay-Per-Download, Pay-Per-View, Pay-Per-" "Membership only" msgstr "" -#: gourl.php:615 +#: gourl.php:617 #, php-format msgid "" "Optional - You can use additional actions after a payment has been received " @@ -573,7 +573,7 @@ msgid "" "%s
." msgstr "" -#: gourl.php:616 +#: gourl.php:618 msgid "" "This function will appear every time when a new payment from any user is " "received successfully. Function gets user_ID - user who made payment, " @@ -581,11 +581,11 @@ msgid "" "Per-Product, Pay-Per-Download, etc.) and payment details as array." msgstr "" -#: gourl.php:618 gourl.php:631 +#: gourl.php:620 gourl.php:633 msgid "Example of PHP code" msgstr "" -#: gourl.php:619 +#: gourl.php:621 #, php-format msgid "" "P.S. If you use additional plugins/add-ons with gourl " @@ -595,11 +595,11 @@ msgid "" "gourl_successful_payment(), see screenshot above." msgstr "" -#: gourl.php:626 +#: gourl.php:628 msgid "Bitcoin Payments with Any Other Wordpress Plugins" msgstr "" -#: gourl.php:627 +#: gourl.php:629 #, php-format msgid "" "Other wordpress plugin developers can easily integrate Bitcoin payments " @@ -618,7 +618,7 @@ msgid "" "any wordpress plugin that payment is received (i.e. very fast)." msgstr "" -#: gourl.php:628 +#: gourl.php:630 #, php-format msgid "" "Beneficial for You and other users. Simply use this GoUrl Bitcoin/" @@ -632,29 +632,29 @@ msgid "" "'All Payments' table." msgstr "" -#: gourl.php:630 +#: gourl.php:632 msgid "" "Example of php code with GoUrl Bitcoin Payment Gateway for other wordpress " "plugins -" msgstr "" -#: gourl.php:633 +#: gourl.php:635 #, php-format msgid "" "And add custom actions after payment has been received. Integration Instruction »" msgstr "" -#: gourl.php:640 +#: gourl.php:642 msgid "GoUrl Contacts" msgstr "" -#: gourl.php:655 +#: gourl.php:657 #, php-format msgid "Please contact us with any questions - %s" msgstr "" -#: gourl.php:657 +#: gourl.php:659 #, php-format msgid "" "A great way to get involved in open source is to contribute to the existing " @@ -665,99 +665,104 @@ msgid "" "here" msgstr "" -#: gourl.php:661 +#: gourl.php:663 msgid "Buttons For Your Website -" msgstr "" -#: gourl.php:672 +#: gourl.php:674 msgid "Our Project Donation Addresses -" msgstr "" -#: gourl.php:726 +#: gourl.php:728 msgid "It is a Paid Download ! Please pay below" msgstr "" -#: gourl.php:793 +#: gourl.php:824 msgid "Box Invalid Public Key" msgstr "" -#: gourl.php:796 +#: gourl.php:827 msgid "Box Invalid Private Key" msgstr "" -#: gourl.php:798 +#: gourl.php:829 msgid "Box Private Key - cannot be empty" msgstr "" -#: gourl.php:799 +#: gourl.php:830 msgid "Box Public Key - cannot be empty" msgstr "" -#: gourl.php:806 +#: gourl.php:837 #, php-format msgid "" "You must choose at least one payment method. Please enter your GoUrl Public/" "Private Keys. Instruction here »" msgstr "" -#: gourl.php:808 +#: gourl.php:839 msgid "Invalid Payment Box Width. Allowed 480..700px" msgstr "" -#: gourl.php:809 +#: gourl.php:840 msgid "Invalid Payment Box Height. Allowed 200..400px" msgstr "" -#: gourl.php:811 +#: gourl.php:842 msgid "Invalid Records Per Page value. Allowed 5..200" msgstr "" -#: gourl.php:813 +#: gourl.php:844 msgid "" "Invalid Popup Message text size. Allowed 15 - 400 characters text length" msgstr "" -#: gourl.php:815 +#: gourl.php:846 msgid "Invalid Payment Box Style" msgstr "" -#: gourl.php:816 +#: gourl.php:847 msgid "Invalid Payment Messages Style" msgstr "" -#: gourl.php:837 gourl.php:5931 +#: gourl.php:868 gourl.php:6009 #, php-format msgid "" "Error. Please enable CURL extension in PHP. " "Read here »" msgstr "" -#: gourl.php:838 gourl.php:5932 +#: gourl.php:869 gourl.php:6010 #, php-format msgid "" "Error. Please enable MySQLi extension in " "PHP. Read here »" msgstr "" -#: gourl.php:839 gourl.php:5933 +#: gourl.php:870 gourl.php:6011 #, php-format msgid "Error. You need PHP 5.4.0 (or greater). Current php version: %s" msgstr "" -#: gourl.php:870 gourl.php:1254 gourl.php:1987 gourl.php:2779 gourl.php:3569 -#: gourl.php:3875 +#: gourl.php:873 +#, php-format +msgid "Error. Cannot write file %s - please make directory %s writable." +msgstr "" + +#: gourl.php:945 gourl.php:1331 gourl.php:2064 gourl.php:2856 gourl.php:3646 +#: gourl.php:3952 msgid "Please fix errors below:" msgstr "" -#: gourl.php:871 +#: gourl.php:946 msgid "Settings have been updated successfully" msgstr "" -#: gourl.php:877 gourl.php:1995 gourl.php:2787 gourl.php:5172 gourl.php:5173 +#: gourl.php:952 gourl.php:2072 gourl.php:2864 gourl.php:5249 gourl.php:5250 msgid "Settings" msgstr "" -#: gourl.php:883 +#: gourl.php:958 #, php-format msgid "" "Simple register on GoUrl.io and get your " @@ -765,11 +770,11 @@ msgid "" "a>" msgstr "" -#: gourl.php:892 +#: gourl.php:967 msgid "General Settings" msgstr "" -#: gourl.php:897 +#: gourl.php:972 #, php-format msgid "" "If you use multiple websites online, please create separate %s - readonly. GoUrl Public/Private keys on page " +"below will be not editable anymore (readonly mode)." +msgstr "" + +#: gourl.php:978 gourl.php:1375 gourl.php:3673 gourl.php:4033 msgid "Please wait..." msgstr "" -#: gourl.php:902 gourl.php:2077 gourl.php:2886 +#: gourl.php:978 gourl.php:2154 gourl.php:2963 msgid "Save Settings" msgstr "" -#: gourl.php:903 gourl.php:1300 gourl.php:2081 gourl.php:2891 gourl.php:3960 +#: gourl.php:979 gourl.php:1377 gourl.php:2158 gourl.php:2968 gourl.php:4037 msgid "Instruction" msgstr "" -#: gourl.php:904 gourl.php:1287 gourl.php:2068 gourl.php:2876 gourl.php:3585 -#: gourl.php:3945 +#: gourl.php:980 gourl.php:1364 gourl.php:2145 gourl.php:2953 gourl.php:3662 +#: gourl.php:4022 msgid "Reload Page" msgstr "" -#: gourl.php:909 +#: gourl.php:985 msgid "Your Callback Url" msgstr "" -#: gourl.php:910 +#: gourl.php:986 #, php-format msgid "" "IMPORTANT - Please place this url in field Callback URL for " "all your Payment Boxes on gourl.io. See screenshot" msgstr "" -#: gourl.php:919 +#: gourl.php:995 msgid "Payments" msgstr "" -#: gourl.php:921 +#: gourl.php:997 #, php-format msgid "Box (%s) Public Key" msgstr "" -#: gourl.php:922 +#: gourl.php:998 #, php-format msgid "Box (%s) Private Key" msgstr "" -#: gourl.php:923 +#: gourl.php:999 #, php-format msgid "%s (%s) payments are active!" msgstr "" -#: gourl.php:924 +#: gourl.php:1000 #, php-format msgid "" "That is not a %s wallet private key!   GoUrl %s Box Private/" @@ -846,54 +859,61 @@ msgid "" "blank if you do not accept payments in %s" msgstr "" -#: gourl.php:928 +#: gourl.php:1001 +#, php-format +msgid "" +"You cannot modify this values because security hash file %s " +"is readonly!" +msgstr "" + +#: gourl.php:1005 msgid "Payment Box" msgstr "" -#: gourl.php:931 +#: gourl.php:1008 msgid "Payment Box Width" msgstr "" -#: gourl.php:932 gourl.php:936 gourl.php:1456 gourl.php:6587 +#: gourl.php:1009 gourl.php:1013 gourl.php:1533 gourl.php:6665 msgid "px" msgstr "" -#: gourl.php:932 +#: gourl.php:1009 #, php-format msgid "" "Cryptocoin Payment Box Width, default 540px. See screenshot " "»" msgstr "" -#: gourl.php:935 +#: gourl.php:1012 msgid "Payment Box Height" msgstr "" -#: gourl.php:936 +#: gourl.php:1013 msgid "Cryptocoin Payment Box Height, default 230px" msgstr "" -#: gourl.php:939 +#: gourl.php:1016 msgid "Payment Box Style" msgstr "" -#: gourl.php:941 +#: gourl.php:1018 msgid "Box with Default Shadow" msgstr "" -#: gourl.php:942 +#: gourl.php:1019 msgid "Box with light Border" msgstr "" -#: gourl.php:943 +#: gourl.php:1020 msgid "Box without Border" msgstr "" -#: gourl.php:945 gourl.php:955 +#: gourl.php:1022 gourl.php:1032 msgid "Custom Style" msgstr "" -#: gourl.php:946 +#: gourl.php:1023 #, php-format msgid "" "Payment Box Visual CSS Style. See screenshot »Pay-" "Per-Product items" msgstr "" -#: gourl.php:974 +#: gourl.php:1051 msgid "Default " msgstr "" -#: gourl.php:976 +#: gourl.php:1053 msgid "Custom Image" msgstr "" -#: gourl.php:979 +#: gourl.php:1056 msgid "" "This image will be displayed if your site requires registration for " "unregistered buyer before paying for a product/service." msgstr "" -#: gourl.php:980 +#: gourl.php:1057 msgid "" "This image will be displayed if only registered users can buy/download your " "paid files." msgstr "" -#: gourl.php:982 +#: gourl.php:1059 msgid "Allowed images: JPG, GIF, PNG." msgstr "" -#: gourl.php:987 +#: gourl.php:1064 msgid "Other" msgstr "" -#: gourl.php:990 +#: gourl.php:1067 msgid "Records Per Page" msgstr "" -#: gourl.php:991 gourl.php:3533 +#: gourl.php:1068 gourl.php:3610 msgid "records" msgstr "" -#: gourl.php:991 +#: gourl.php:1068 msgid "Set number of records per page in tables 'All Payments' and 'All Files'" msgstr "" -#: gourl.php:994 +#: gourl.php:1071 msgid "Popup Message" msgstr "" -#: gourl.php:995 +#: gourl.php:1072 msgid "" "Pay-Per-Download: A pop-up message that a visitor will see when trying to " "download a paid file without payment
Default text: It is a Paid " "Download ! Please pay below It" msgstr "" -#: gourl.php:998 +#: gourl.php:1075 msgid "Additional Fields" msgstr "" -#: gourl.php:999 +#: gourl.php:1076 msgid "" "Pay-Per-Download: If box is checked, display on 'All Payments' statistics " "page two additional columns 'File Downloaded By User?' and 'File Downloaded " "Time'. Use it if you sell files online (Pay-Per-Download)" msgstr "" -#: gourl.php:1002 +#: gourl.php:1079 msgid "Reverse Bitcoin Chart" msgstr "" -#: gourl.php:1003 +#: gourl.php:1080 #, php-format msgid "Bitcoin Chart: Reverse the X axis of time" msgstr "" -#: gourl.php:1116 +#: gourl.php:1193 msgid "Invalid File ID, Please reload page" msgstr "" -#: gourl.php:1121 +#: gourl.php:1198 msgid "Your File - cannot be empty" msgstr "" -#: gourl.php:1127 +#: gourl.php:1204 msgid "Featured Image - select image" msgstr "" -#: gourl.php:1130 +#: gourl.php:1207 msgid "Title - cannot be empty" msgstr "" -#: gourl.php:1131 +#: gourl.php:1208 msgid "Title - Max size 100 symbols" msgstr "" -#: gourl.php:1135 gourl.php:1933 gourl.php:2719 gourl.php:3732 +#: gourl.php:1212 gourl.php:2010 gourl.php:2796 gourl.php:3809 msgid "Price - cannot be empty" msgstr "" -#: gourl.php:1136 gourl.php:1934 gourl.php:2720 gourl.php:3733 +#: gourl.php:1213 gourl.php:2011 gourl.php:2797 gourl.php:3810 msgid "" "Price - use price in USD or in Cryptocoins. You cannot place values in two " "boxes together" msgstr "" -#: gourl.php:1137 gourl.php:1935 gourl.php:2721 gourl.php:3734 +#: gourl.php:1214 gourl.php:2012 gourl.php:2798 gourl.php:3811 #, php-format msgid "Price - %s USD - invalid value. Min value: 0.01 USD" msgstr "" -#: gourl.php:1138 gourl.php:1936 gourl.php:2722 gourl.php:3735 +#: gourl.php:1215 gourl.php:2013 gourl.php:2799 gourl.php:3812 #, php-format msgid "" "Price - %s %s - invalid value. Min value: 0.0001 %s. Allow 4 digits max " "after floating point" msgstr "" -#: gourl.php:1140 gourl.php:3737 +#: gourl.php:1217 gourl.php:3814 #, php-format msgid "Price label '%s' - invalid value" msgstr "" -#: gourl.php:1142 gourl.php:3739 +#: gourl.php:1219 gourl.php:3816 msgid "Purchase Limit - invalid value" msgstr "" -#: gourl.php:1144 gourl.php:3741 +#: gourl.php:1221 gourl.php:3818 msgid "Field 'Expiry Period' - cannot be empty" msgstr "" -#: gourl.php:1145 gourl.php:1938 gourl.php:3742 +#: gourl.php:1222 gourl.php:2015 gourl.php:3819 msgid "Field 'Expiry Period' - invalid value" msgstr "" -#: gourl.php:1147 +#: gourl.php:1224 msgid "Store Visitor IDs - invalid value" msgstr "" -#: gourl.php:1149 gourl.php:1940 gourl.php:2726 gourl.php:3744 +#: gourl.php:1226 gourl.php:2017 gourl.php:2803 gourl.php:3821 msgid "PaymentBox Language - invalid value" msgstr "" -#: gourl.php:1151 gourl.php:1942 gourl.php:2728 gourl.php:3746 +#: gourl.php:1228 gourl.php:2019 gourl.php:2805 gourl.php:3823 msgid "Field 'PaymentBox Coin' - cannot be empty" msgstr "" -#: gourl.php:1152 gourl.php:1943 gourl.php:2729 gourl.php:3747 +#: gourl.php:1229 gourl.php:2020 gourl.php:2806 gourl.php:3824 msgid "Field 'PaymentBox Coin' - invalid value" msgstr "" -#: gourl.php:1153 gourl.php:3748 +#: gourl.php:1230 gourl.php:3825 #, php-format msgid "" "Field 'PaymentBox Coin' - payments in %s not available. Please re-save record" msgstr "" -#: gourl.php:1157 gourl.php:1945 gourl.php:2731 gourl.php:3749 +#: gourl.php:1234 gourl.php:2022 gourl.php:2808 gourl.php:3826 #, php-format msgid "" "Field 'PaymentBox Coin' - please select '%s' because you have entered price " "in %s" msgstr "" -#: gourl.php:1162 +#: gourl.php:1239 msgid "Invalid Image Width. Allowed 1..2,000px" msgstr "" -#: gourl.php:1255 gourl.php:3876 +#: gourl.php:1332 gourl.php:3953 msgid "Record has been saved successfully" msgstr "" -#: gourl.php:1262 +#: gourl.php:1339 msgid "Edit File" msgstr "" -#: gourl.php:1262 gourl.php:1286 +#: gourl.php:1339 gourl.php:1363 msgid "New File" msgstr "" -#: gourl.php:1270 gourl.php:2005 gourl.php:2812 gourl.php:3891 +#: gourl.php:1347 gourl.php:2082 gourl.php:2889 gourl.php:3968 #, php-format msgid "Preview Shortcode     %s" msgstr "" -#: gourl.php:1271 gourl.php:2006 gourl.php:2796 gourl.php:2813 gourl.php:3892 +#: gourl.php:1348 gourl.php:2083 gourl.php:2873 gourl.php:2890 gourl.php:3969 msgid "Close Preview" msgstr "" -#: gourl.php:1276 gourl.php:1311 gourl.php:2014 gourl.php:2821 gourl.php:3934 -#: gourl.php:3971 +#: gourl.php:1353 gourl.php:1388 gourl.php:2091 gourl.php:2898 gourl.php:4011 +#: gourl.php:4048 msgid "Shortcode" msgstr "" -#: gourl.php:1285 gourl.php:3943 +#: gourl.php:1362 gourl.php:4020 #, php-format msgid "Sold %d copies" msgstr "" -#: gourl.php:1288 gourl.php:1560 +#: gourl.php:1365 gourl.php:1637 msgid "All Paid Files" msgstr "" -#: gourl.php:1298 gourl.php:3596 gourl.php:3956 +#: gourl.php:1375 gourl.php:3673 gourl.php:4033 msgid "Save Record" msgstr "" -#: gourl.php:1299 gourl.php:3957 +#: gourl.php:1376 gourl.php:4034 msgid "Show Preview" msgstr "" -#: gourl.php:1308 +#: gourl.php:1385 msgid "File ID" msgstr "" -#: gourl.php:1312 gourl.php:3972 +#: gourl.php:1389 gourl.php:4049 #, php-format msgid "" "Just add this shortcode to any your page or " "post (in html view) and cryptocoin payment box will be display" msgstr "" -#: gourl.php:1316 gourl.php:6617 gourl.php:6851 +#: gourl.php:1393 gourl.php:6695 gourl.php:6929 msgid "Title" msgstr "" -#: gourl.php:1319 +#: gourl.php:1396 msgid "Title / Friendly name for the file. Visitors will see this title" msgstr "" -#: gourl.php:1324 gourl.php:3984 +#: gourl.php:1401 gourl.php:4061 msgid "Active ?" msgstr "" -#: gourl.php:1325 +#: gourl.php:1402 msgid "If box is not checked, visitors cannot pay you for this file" msgstr "" -#: gourl.php:1329 +#: gourl.php:1406 msgid "Your File" msgstr "" -#: gourl.php:1331 +#: gourl.php:1408 msgid "Select pre-uploaded file" msgstr "" -#: gourl.php:1349 +#: gourl.php:1426 msgid "Download" msgstr "" -#: gourl.php:1349 gourl.php:1836 +#: gourl.php:1426 gourl.php:1913 msgid "size" msgstr "" -#: gourl.php:1350 +#: gourl.php:1427 #, php-format msgid "" "If the file has already been uploaded to the server, you can select that " @@ -1206,7 +1226,7 @@ msgid "" "upload new file below -" msgstr "" -#: gourl.php:1351 +#: gourl.php:1428 msgid "" "Please use simple file names on English. Click on the Choose File " "button. Locate the file that you want to use, left click on it and click on " @@ -1214,15 +1234,15 @@ msgid "" "the File field" msgstr "" -#: gourl.php:1356 gourl.php:1837 gourl.php:2087 gourl.php:3989 +#: gourl.php:1433 gourl.php:1914 gourl.php:2164 gourl.php:4066 msgid "Price" msgstr "" -#: gourl.php:1358 gourl.php:2089 gourl.php:2899 gourl.php:3991 +#: gourl.php:1435 gourl.php:2166 gourl.php:2976 gourl.php:4068 msgid "or" msgstr "" -#: gourl.php:1363 gourl.php:2094 gourl.php:2904 gourl.php:3996 +#: gourl.php:1440 gourl.php:2171 gourl.php:2981 gourl.php:4073 #, php-format msgid "" "Please specify price in USD or in Cryptocoins. You cannot place prices in " @@ -1236,36 +1256,36 @@ msgid "" "feature (auto trade your cryptocoins to USD)." msgstr "" -#: gourl.php:1366 +#: gourl.php:1443 msgid "Show File Name/Price" msgstr "" -#: gourl.php:1367 +#: gourl.php:1444 msgid "" "If box is checked, visitors will see approximate file price in USD and " "uploaded file name/size" msgstr "" -#: gourl.php:1370 gourl.php:4000 gourl.php:6632 gourl.php:6862 +#: gourl.php:1447 gourl.php:4077 gourl.php:6710 gourl.php:6940 msgid "Purchase Limit" msgstr "" -#: gourl.php:1371 gourl.php:1463 gourl.php:4001 gourl.php:4103 gourl.php:6583 -#: gourl.php:6826 +#: gourl.php:1448 gourl.php:1540 gourl.php:4078 gourl.php:4180 gourl.php:6661 +#: gourl.php:6904 msgid "copies" msgstr "" -#: gourl.php:1371 +#: gourl.php:1448 msgid "" "The maximum number of times a file may be purchased/downloaded. Leave blank " "or set to 0 for unlimited number of purchases/downloads" msgstr "" -#: gourl.php:1374 gourl.php:2097 gourl.php:4004 +#: gourl.php:1451 gourl.php:2174 gourl.php:4081 msgid "Expiry Period" msgstr "" -#: gourl.php:1381 +#: gourl.php:1458 msgid "" "Period after which the payment becomes obsolete and new Cryptocoin Payment " "Box will be shown for this file (you can use it to take new payments from " @@ -1274,11 +1294,11 @@ msgid "" "'Cookie/Session' not safety for long expiry period" msgstr "" -#: gourl.php:1385 gourl.php:6633 +#: gourl.php:1462 gourl.php:6711 msgid "Store Visitor IDs" msgstr "" -#: gourl.php:1392 +#: gourl.php:1469 msgid "" "For Unregistered Your Website Visitors - Save auto-generated unique visitor " "ID in cookies, sessions or use the IP address to decide unique visitors " @@ -1291,112 +1311,112 @@ msgid "" "users' than 'Cookie/Session/Ipaddress'" msgstr "" -#: gourl.php:1397 gourl.php:2120 gourl.php:2932 gourl.php:4015 +#: gourl.php:1474 gourl.php:2197 gourl.php:3009 gourl.php:4092 msgid "PaymentBox Language" msgstr "" -#: gourl.php:1404 gourl.php:2127 gourl.php:2939 gourl.php:4022 +#: gourl.php:1481 gourl.php:2204 gourl.php:3016 gourl.php:4099 msgid "Default Payment Box Localisation" msgstr "" -#: gourl.php:1409 gourl.php:2131 gourl.php:2943 gourl.php:4027 +#: gourl.php:1486 gourl.php:2208 gourl.php:3020 gourl.php:4104 msgid "PaymentBox Coin" msgstr "" -#: gourl.php:1416 gourl.php:2138 gourl.php:2950 gourl.php:4034 +#: gourl.php:1493 gourl.php:2215 gourl.php:3027 gourl.php:4111 msgid "Activated Payments :" msgstr "" -#: gourl.php:1416 gourl.php:2138 gourl.php:2950 gourl.php:4034 +#: gourl.php:1493 gourl.php:2215 gourl.php:3027 gourl.php:4111 msgid "- Please Setup -" msgstr "" -#: gourl.php:1417 gourl.php:2139 gourl.php:2951 gourl.php:4035 +#: gourl.php:1494 gourl.php:2216 gourl.php:3028 gourl.php:4112 msgid "Default Coin in Payment Box" msgstr "" -#: gourl.php:1422 gourl.php:2143 gourl.php:2954 gourl.php:4040 +#: gourl.php:1499 gourl.php:2220 gourl.php:3031 gourl.php:4117 msgid "Use Default Coin only:" msgstr "" -#: gourl.php:1423 +#: gourl.php:1500 msgid "" "If box is checked, payment box will accept payments in one default coin " "'PaymentBox Coin' for this file (no multiple coins). Please use price in USD " "if you want to accept multiple coins" msgstr "" -#: gourl.php:1427 +#: gourl.php:1504 msgid "Description (Optional)" msgstr "" -#: gourl.php:1430 +#: gourl.php:1507 msgid "Short File Description" msgstr "" -#: gourl.php:1435 gourl.php:6626 +#: gourl.php:1512 gourl.php:6704 msgid "Featured Image" msgstr "" -#: gourl.php:1449 +#: gourl.php:1526 msgid "OR" msgstr "" -#: gourl.php:1451 +#: gourl.php:1528 msgid "Custom Featured Image" msgstr "" -#: gourl.php:1452 +#: gourl.php:1529 msgid "" "This featured image represent your uploaded file above. Max sizes: 800px x " "600px, allowed images: JPG, GIF, PNG." msgstr "" -#: gourl.php:1455 gourl.php:6627 +#: gourl.php:1532 gourl.php:6705 msgid "Image Width" msgstr "" -#: gourl.php:1456 +#: gourl.php:1533 msgid "Your featured image width" msgstr "" -#: gourl.php:1462 gourl.php:1586 gourl.php:4102 gourl.php:4218 gourl.php:6622 -#: gourl.php:6854 +#: gourl.php:1539 gourl.php:1663 gourl.php:4179 gourl.php:4295 gourl.php:6700 +#: gourl.php:6932 msgid "Total Sold" msgstr "" -#: gourl.php:1468 gourl.php:4108 +#: gourl.php:1545 gourl.php:4185 msgid "Latest Received Payment" msgstr "" -#: gourl.php:1475 gourl.php:4115 +#: gourl.php:1552 gourl.php:4192 msgid "Record Updated" msgstr "" -#: gourl.php:1480 gourl.php:4120 +#: gourl.php:1557 gourl.php:4197 msgid "Record Created" msgstr "" -#: gourl.php:1484 gourl.php:2184 gourl.php:3024 gourl.php:4124 +#: gourl.php:1561 gourl.php:2261 gourl.php:3101 gourl.php:4201 msgid "Custom Actions" msgstr "" -#: gourl.php:1485 gourl.php:2185 gourl.php:3025 gourl.php:4125 +#: gourl.php:1562 gourl.php:2262 gourl.php:3102 gourl.php:4202 #, php-format msgid "" "Optional - add in file gourl_ipn.php code below. Read more " "»" msgstr "" -#: gourl.php:1560 gourl.php:5124 gourl.php:5125 +#: gourl.php:1637 gourl.php:5201 gourl.php:5202 msgid "Add New File" msgstr "" -#: gourl.php:1564 gourl.php:2023 gourl.php:2831 gourl.php:4196 +#: gourl.php:1641 gourl.php:2100 gourl.php:2908 gourl.php:4273 msgid "Hide Introduction" msgstr "" -#: gourl.php:1567 +#: gourl.php:1644 #, php-format msgid "" "Easily Sell Files, Videos, Music, Photos, Software (digital downloads) on " @@ -1408,19 +1428,19 @@ msgid "" "href='%s'>login image." msgstr "" -#: gourl.php:1568 +#: gourl.php:1645 #, php-format msgid "" "Create New Paid File Downloads and place new generated shortcode on your public page/post. Done!" msgstr "" -#: gourl.php:1569 +#: gourl.php:1646 #, php-format msgid "Read more" msgstr "" -#: gourl.php:1570 +#: gourl.php:1647 #, php-format msgid "" "Alternatively, you can use free Easy Digital Downloads " @@ -1428,118 +1448,118 @@ msgid "" "EDD Bitcoin/Altcoin Gateway addon" msgstr "" -#: gourl.php:1576 gourl.php:2019 gourl.php:2827 gourl.php:4208 +#: gourl.php:1653 gourl.php:2096 gourl.php:2904 gourl.php:4285 msgid "Show Introduction" msgstr "" -#: gourl.php:1583 gourl.php:3533 gourl.php:4215 gourl.php:4596 +#: gourl.php:1660 gourl.php:3610 gourl.php:4292 gourl.php:4673 msgid "Found" msgstr "" -#: gourl.php:1583 +#: gourl.php:1660 msgid "Total Files" msgstr "" -#: gourl.php:1583 gourl.php:1584 gourl.php:1585 gourl.php:1586 +#: gourl.php:1660 gourl.php:1661 gourl.php:1662 gourl.php:1663 msgid "files" msgstr "" -#: gourl.php:1584 gourl.php:4216 +#: gourl.php:1661 gourl.php:4293 msgid "Active" msgstr "" -#: gourl.php:1585 gourl.php:4217 +#: gourl.php:1662 gourl.php:4294 msgid "Inactive" msgstr "" -#: gourl.php:1587 gourl.php:3537 gourl.php:4219 gourl.php:4601 +#: gourl.php:1664 gourl.php:3614 gourl.php:4296 gourl.php:4678 msgid "Reset Search Filters" msgstr "" -#: gourl.php:1616 gourl.php:4249 +#: gourl.php:1693 gourl.php:4326 #, php-format msgid "Invalid format. Use %s" msgstr "" -#: gourl.php:1631 +#: gourl.php:1708 #, php-format msgid "Invalid file id '%s' -" msgstr "" -#: gourl.php:1677 gourl.php:1678 +#: gourl.php:1754 gourl.php:1755 msgid "Please register or login to download this file" msgstr "" -#: gourl.php:1682 +#: gourl.php:1759 msgid "File does not exist on the server" msgstr "" -#: gourl.php:1683 +#: gourl.php:1760 msgid "Error! File does not exist on the server !" msgstr "" -#: gourl.php:1700 gourl.php:2270 gourl.php:2460 gourl.php:3250 gourl.php:4326 +#: gourl.php:1777 gourl.php:2347 gourl.php:2537 gourl.php:3327 gourl.php:4403 #, php-format msgid "Invalid %s Public Key %s -" msgstr "" -#: gourl.php:1701 gourl.php:2271 gourl.php:2461 gourl.php:3251 gourl.php:4327 +#: gourl.php:1778 gourl.php:2348 gourl.php:2538 gourl.php:3328 gourl.php:4404 #, php-format msgid "Invalid %s Private Key -" msgstr "" -#: gourl.php:1713 gourl.php:2283 gourl.php:2473 gourl.php:3263 gourl.php:4339 +#: gourl.php:1790 gourl.php:2360 gourl.php:2550 gourl.php:3340 gourl.php:4416 msgid "No Available Payments -" msgstr "" -#: gourl.php:1783 gourl.php:4394 +#: gourl.php:1860 gourl.php:4471 msgid "Sold Out" msgstr "" -#: gourl.php:1789 +#: gourl.php:1866 msgid "Cryptcoin Payments Disabled for this File" msgstr "" -#: gourl.php:1836 +#: gourl.php:1913 msgid "File" msgstr "" -#: gourl.php:1844 gourl.php:6672 +#: gourl.php:1921 gourl.php:6750 msgid "Download File" msgstr "" -#: gourl.php:1851 gourl.php:2569 gourl.php:3380 gourl.php:4477 gourl.php:5558 +#: gourl.php:1928 gourl.php:2646 gourl.php:3457 gourl.php:4554 gourl.php:5635 msgid "Language" msgstr "" -#: gourl.php:1939 gourl.php:2725 +#: gourl.php:2016 gourl.php:2802 msgid "Lock Page Level - invalid value" msgstr "" -#: gourl.php:1944 gourl.php:2730 +#: gourl.php:2021 gourl.php:2807 #, php-format msgid "" "Field 'PaymentBox Coin' - payments in %s not available. Please click on " "'Save Settings' button" msgstr "" -#: gourl.php:1947 gourl.php:2733 +#: gourl.php:2024 gourl.php:2810 #, php-format msgid "" "Field 'Use Default Coin Only' - check it because you have entered price in " "%s. Please use price in USD if you want to accept multiple coins" msgstr "" -#: gourl.php:1988 +#: gourl.php:2065 msgid "Pay-Per-View Settings have been updated successfully" msgstr "" -#: gourl.php:2030 +#: gourl.php:2107 #, php-format msgid "Pay-Per-View Summary - Example" msgstr "" -#: gourl.php:2032 +#: gourl.php:2109 msgid "" "Your unregistered anonymous website visitors will need to send you a set " "amount of cryptocoins for access to your website's specific pages & videos " @@ -1548,36 +1568,36 @@ msgid "" "a new payment box will appear, payment notifications to your email, etc." msgstr "" -#: gourl.php:2034 +#: gourl.php:2111 #, php-format msgid "" "Pay-Per-View supports custom actions (for example, show ads " "to free users on all website pages, see code)" msgstr "" -#: gourl.php:2035 +#: gourl.php:2112 #, php-format msgid "" "Read how it works and differences between Pay-Per-View and " "Pay-Per-Membership." msgstr "" -#: gourl.php:2037 +#: gourl.php:2114 msgid "Pay-Per-View Pages -" msgstr "" -#: gourl.php:2039 gourl.php:2846 +#: gourl.php:2116 gourl.php:2923 #, php-format msgid "" "You can customize lock-image / preview video for each page or not use " "preview at all.
Default image directory: %s or use full image path %s" msgstr "" -#: gourl.php:2041 gourl.php:2848 +#: gourl.php:2118 gourl.php:2925 msgid "Shortcodes with preview images/videos for premium locked pages:" msgstr "" -#: gourl.php:2044 gourl.php:2851 +#: gourl.php:2121 gourl.php:2928 #, php-format msgid "" "Place one of that tags anywhere in the " @@ -1585,54 +1605,54 @@ msgid "" "code" msgstr "" -#: gourl.php:2046 gourl.php:2853 +#: gourl.php:2123 gourl.php:2930 msgid "Ready to use shortcodes:" msgstr "" -#: gourl.php:2048 +#: gourl.php:2125 msgid "locked page with default preview image" msgstr "" -#: gourl.php:2049 gourl.php:2856 +#: gourl.php:2126 gourl.php:2933 msgid "locked page with default preview video" msgstr "" -#: gourl.php:2050 gourl.php:2857 +#: gourl.php:2127 gourl.php:2934 #, php-format msgid "locked page with any custom preview image stored in directory %s" msgstr "" -#: gourl.php:2051 gourl.php:2858 +#: gourl.php:2128 gourl.php:2935 msgid "locked page with custom image, image width=400px height=200px" msgstr "" -#: gourl.php:2052 gourl.php:2859 +#: gourl.php:2129 gourl.php:2936 msgid "locked page with any custom image" msgstr "" -#: gourl.php:2053 +#: gourl.php:2130 msgid "" "locked page with any custom video preview, etc (iframe). Iframe width=800px, " "height=440px" msgstr "" -#: gourl.php:2071 +#: gourl.php:2148 msgid "Paid Access to Premium Webages for Unregistered Visitors" msgstr "" -#: gourl.php:2078 gourl.php:2888 +#: gourl.php:2155 gourl.php:2965 msgid "Show Preview 1" msgstr "" -#: gourl.php:2079 gourl.php:2889 +#: gourl.php:2156 gourl.php:2966 msgid "Show Preview 2" msgstr "" -#: gourl.php:2080 gourl.php:2890 +#: gourl.php:2157 gourl.php:2967 msgid "Video Preview 3" msgstr "" -#: gourl.php:2104 +#: gourl.php:2181 #, php-format msgid "" "Period after which the payment becomes obsolete and new Cryptocoin Payment " @@ -1643,11 +1663,11 @@ msgid "" "DAYS. If you need more, please use pay-per-membership" msgstr "" -#: gourl.php:2108 gourl.php:2918 +#: gourl.php:2185 gourl.php:2995 msgid "Lock Page Level" msgstr "" -#: gourl.php:2115 +#: gourl.php:2192 #, php-format msgid "" "Select user access level who will see lock premium page/blog and need to " @@ -1658,17 +1678,17 @@ msgid "" "register) and customize login image" msgstr "" -#: gourl.php:2144 gourl.php:2955 gourl.php:4041 +#: gourl.php:2221 gourl.php:3032 gourl.php:4118 msgid "" "If box is checked, payment box will accept payments in one default coin " "'PaymentBox Coin' (no multiple coins)" msgstr "" -#: gourl.php:2147 gourl.php:2958 +#: gourl.php:2224 gourl.php:3035 msgid "PaymentBox Style:" msgstr "" -#: gourl.php:2148 gourl.php:2959 +#: gourl.php:2225 gourl.php:3036 #, php-format msgid "" "Payment Box sizes and border " msgstr "" -#: gourl.php:2151 gourl.php:2988 +#: gourl.php:2228 gourl.php:3065 msgid "Text - Above Payment Box" msgstr "" -#: gourl.php:2154 gourl.php:2991 +#: gourl.php:2231 gourl.php:3068 msgid "" "Your Custom Text and Image above Payment Box on Locked premium pages " "(original pages content will be hidden)" msgstr "" -#: gourl.php:2158 gourl.php:2995 +#: gourl.php:2235 gourl.php:3072 msgid "Text - Below Payment Box" msgstr "" -#: gourl.php:2161 gourl.php:2998 +#: gourl.php:2238 gourl.php:3075 msgid "" "Your Custom Text and Image below Payment Box on Locked premium pages " "(original pages content will be hidden)" msgstr "" -#: gourl.php:2164 gourl.php:3004 +#: gourl.php:2241 gourl.php:3081 msgid "Hide Page Title ?" msgstr "" -#: gourl.php:2165 gourl.php:3005 +#: gourl.php:2242 gourl.php:3082 #, php-format msgid "" "If box is checked, unpaid users will not see current premium page title (screenshot)" msgstr "" -#: gourl.php:2168 gourl.php:3008 +#: gourl.php:2245 gourl.php:3085 msgid "Hide Menu Titles ?" msgstr "" -#: gourl.php:2169 gourl.php:3009 +#: gourl.php:2246 gourl.php:3086 #, php-format msgid "" "If box is checked, unpaid users will not see any link titles on premium " "pages (screenshot)" msgstr "" -#: gourl.php:2172 gourl.php:3012 +#: gourl.php:2249 gourl.php:3089 msgid "Hide Comments Authors ?" msgstr "" -#: gourl.php:2173 gourl.php:3013 +#: gourl.php:2250 gourl.php:3090 #, php-format msgid "" "If box is checked, unpaid users will not see authors of comments on bottom " "of premium pages (screenshot)" msgstr "" -#: gourl.php:2176 gourl.php:3016 +#: gourl.php:2253 gourl.php:3093 msgid "Hide Comments Body ?" msgstr "" -#: gourl.php:2177 gourl.php:3017 +#: gourl.php:2254 gourl.php:3094 #, php-format msgid "" "If box is checked, unpaid users will not see comments body on bottom of " "premium pages (screenshot)" msgstr "" -#: gourl.php:2180 gourl.php:3020 +#: gourl.php:2257 gourl.php:3097 msgid "Disable Comments Reply ?" msgstr "" -#: gourl.php:2181 gourl.php:3021 +#: gourl.php:2258 gourl.php:3098 #, php-format msgid "" "If box is checked, unpaid users cannot reply/add comments on bottom of " "premium pages (screenshot)" msgstr "" -#: gourl.php:2556 gourl.php:3364 +#: gourl.php:2633 gourl.php:3441 msgid "Page Content Locked! Please pay below" msgstr "" -#: gourl.php:2724 +#: gourl.php:2801 msgid "Membership Period - invalid value" msgstr "" -#: gourl.php:2780 +#: gourl.php:2857 msgid "" "Pay-Per-Membership Settings have been updated successfully" msgstr "" -#: gourl.php:2795 +#: gourl.php:2872 msgid "" "Unregistered visitors / non-logged users will see on your premium pages - " "login form with custom text" msgstr "" -#: gourl.php:2838 +#: gourl.php:2915 #, php-format msgid "" "Pay-Per-Membership - Your registered website users will need " @@ -1781,7 +1801,7 @@ msgid "" "website registration enabled." msgstr "" -#: gourl.php:2840 +#: gourl.php:2917 #, php-format msgid "" "Pay-Per-Membership supports custom actions (for " @@ -1792,7 +1812,7 @@ msgid "" "altcoins.   More info" msgstr "" -#: gourl.php:2842 +#: gourl.php:2919 #, php-format msgid "" "Pay-Per-Membership supports ONE paid membership level for website.
For " @@ -1805,49 +1825,49 @@ msgid "" "compatible." msgstr "" -#: gourl.php:2844 +#: gourl.php:2921 msgid "Pay-Per-Membership Premium Pages -" msgstr "" -#: gourl.php:2855 +#: gourl.php:2932 msgid "" "locked premium page with default preview image; visible for unpaid logged-in " "users" msgstr "" -#: gourl.php:2860 +#: gourl.php:2937 msgid "" "locked page with any custom video preview, etc (iframe). Iframe width=750px, " "height=410px" msgstr "" -#: gourl.php:2877 gourl.php:3524 gourl.php:3586 +#: gourl.php:2954 gourl.php:3601 gourl.php:3663 msgid "All Premium Users" msgstr "" -#: gourl.php:2880 +#: gourl.php:2957 msgid "Paid Access to Premium Pages for Registered Users" msgstr "" -#: gourl.php:2887 +#: gourl.php:2964 msgid "Screen for non-logged users" msgstr "" -#: gourl.php:2897 +#: gourl.php:2974 msgid "Membership Price" msgstr "" -#: gourl.php:2907 +#: gourl.php:2984 msgid "Membership Period" msgstr "" -#: gourl.php:2914 +#: gourl.php:2991 msgid "" "Period after which the payment becomes obsolete and new Cryptocoin Payment " "Box will be shown." msgstr "" -#: gourl.php:2925 +#: gourl.php:3002 #, php-format msgid "" "Select user access level who will see lock premium page/blog and need to " @@ -1857,22 +1877,22 @@ msgid "" "» Membership - Anyone can register )" msgstr "" -#: gourl.php:2928 +#: gourl.php:3005 msgid "Add to User Profile" msgstr "" -#: gourl.php:2929 +#: gourl.php:3006 #, php-format msgid "" "If box is checked, users will see own membership status on user profile page " "(profile.php)" msgstr "" -#: gourl.php:2964 +#: gourl.php:3041 msgid "A. Unregistered Users will see Login Form with custom text/images -" msgstr "" -#: gourl.php:2965 +#: gourl.php:3042 msgid "" "You can separate the content your logged-in users see from what your " "unregistered users see; things like a log-in form + custom text A for " @@ -1880,120 +1900,120 @@ msgid "" "unpaid logged-in users." msgstr "" -#: gourl.php:2966 +#: gourl.php:3043 #, php-format msgid "" "IMPORTANT: Please check that Website Registration is enabled (option " "Membership - Anyone can register)" msgstr "" -#: gourl.php:2970 +#: gourl.php:3047 msgid "Text - Above Login Form" msgstr "" -#: gourl.php:2973 +#: gourl.php:3050 msgid "" "Your Custom Text and Image For Unregistered Users (original pages content " "will be hidden). This text will publish Above Login Form" msgstr "" -#: gourl.php:2977 +#: gourl.php:3054 msgid "Text - Below Login Form" msgstr "" -#: gourl.php:2980 +#: gourl.php:3057 msgid "" "Your Custom Text and Image For Unregistered Users (original pages content " "will be hidden). This text will publish Below Login Form" msgstr "" -#: gourl.php:2984 +#: gourl.php:3061 msgid "B. Unpaid logged-in users will see payment box with custom text -" msgstr "" -#: gourl.php:3001 +#: gourl.php:3078 msgid "General Content Restriction" msgstr "" -#: gourl.php:3350 +#: gourl.php:3427 msgid "Thank you." msgstr "" -#: gourl.php:3350 +#: gourl.php:3427 msgid "Your Premium membership is active." msgstr "" -#: gourl.php:3370 +#: gourl.php:3447 #, php-format msgid "" "ADMIN NOTE: Your test payment received successfully.
Please disable your test membership and you will see payment box again" msgstr "" -#: gourl.php:3524 +#: gourl.php:3601 msgid "Manually Add New User" msgstr "" -#: gourl.php:3524 +#: gourl.php:3601 msgid "Options" msgstr "" -#: gourl.php:3533 +#: gourl.php:3610 msgid "Total" msgstr "" -#: gourl.php:3534 +#: gourl.php:3611 msgid "Active Premium Users" msgstr "" -#: gourl.php:3534 gourl.php:3535 gourl.php:3536 +#: gourl.php:3611 gourl.php:3612 gourl.php:3613 msgid "users" msgstr "" -#: gourl.php:3535 +#: gourl.php:3612 msgid "Manually Added" msgstr "" -#: gourl.php:3536 +#: gourl.php:3613 msgid "Manually Disabled" msgstr "" -#: gourl.php:3543 +#: gourl.php:3620 msgid "Table have been updated successfully" msgstr "" -#: gourl.php:3574 +#: gourl.php:3651 msgid "Edit Premium User Membership" msgstr "" -#: gourl.php:3574 +#: gourl.php:3651 msgid "New User Membership" msgstr "" -#: gourl.php:3576 +#: gourl.php:3653 msgid "" "Create Premium Membership manually if a user has sent the wrong amount of " "payment - therefore plugin cannot process payment and cannot create user " "premium membership in automatic mode" msgstr "" -#: gourl.php:3589 +#: gourl.php:3666 msgid "Manually create Premium Membership" msgstr "" -#: gourl.php:3597 +#: gourl.php:3674 msgid "New Membership" msgstr "" -#: gourl.php:3603 gourl.php:7329 +#: gourl.php:3680 gourl.php:7407 msgid "User" msgstr "" -#: gourl.php:3627 +#: gourl.php:3704 msgid "Select User" msgstr "" -#: gourl.php:3642 +#: gourl.php:3719 #, php-format msgid "" "Select User.   Current lock pages level: %s." @@ -2001,188 +2021,188 @@ msgid "" "pages and see original page content." msgstr "" -#: gourl.php:3645 +#: gourl.php:3722 msgid "Premium Start Date" msgstr "" -#: gourl.php:3647 +#: gourl.php:3724 msgid "Premium Membership Start Date. Format: dd/mm/yyyy" msgstr "" -#: gourl.php:3650 +#: gourl.php:3727 msgid "Premium End Date" msgstr "" -#: gourl.php:3652 +#: gourl.php:3729 msgid "Premium Membership End Date. Format: dd/mm/yyyy" msgstr "" -#: gourl.php:3676 +#: gourl.php:3753 msgid "User - cannot be empty" msgstr "" -#: gourl.php:3677 +#: gourl.php:3754 msgid "Start Date - cannot be empty" msgstr "" -#: gourl.php:3679 +#: gourl.php:3756 msgid "End Date - cannot be empty" msgstr "" -#: gourl.php:3680 gourl.php:3681 +#: gourl.php:3757 gourl.php:3758 msgid "End Date - invalid value" msgstr "" -#: gourl.php:3725 +#: gourl.php:3802 msgid "Invalid Product ID, Please reload page" msgstr "" -#: gourl.php:3727 +#: gourl.php:3804 msgid "Product Title - cannot be empty" msgstr "" -#: gourl.php:3728 +#: gourl.php:3805 msgid "Product Title - Max size 100 symbols" msgstr "" -#: gourl.php:3753 +#: gourl.php:3830 msgid "Email to Buyer: From Email - cannot be empty" msgstr "" -#: gourl.php:3754 +#: gourl.php:3831 msgid "Purchase Email Subject - cannot be empty" msgstr "" -#: gourl.php:3755 +#: gourl.php:3832 msgid "Purchase Email Body - cannot be empty" msgstr "" -#: gourl.php:3760 +#: gourl.php:3837 msgid "Sale Notification From - cannot be empty" msgstr "" -#: gourl.php:3761 +#: gourl.php:3838 msgid "Sale Notification Subject - cannot be empty" msgstr "" -#: gourl.php:3762 +#: gourl.php:3839 msgid "Sale Notification - cannot be empty" msgstr "" -#: gourl.php:3763 +#: gourl.php:3840 msgid "Sale Notification To - cannot be empty" msgstr "" -#: gourl.php:3766 +#: gourl.php:3843 #, php-format msgid "Email to Buyer: From Email - %s - invalid email format" msgstr "" -#: gourl.php:3767 +#: gourl.php:3844 #, php-format msgid "Sale Notification From - %s - invalid email format" msgstr "" -#: gourl.php:3770 +#: gourl.php:3847 #, php-format msgid "Sale Notification To - %s - invalid email format" msgstr "" -#: gourl.php:3883 gourl.php:3949 +#: gourl.php:3960 gourl.php:4026 msgid "Edit Product" msgstr "" -#: gourl.php:3883 +#: gourl.php:3960 msgid "New Product" msgstr "" -#: gourl.php:3891 +#: gourl.php:3968 msgid "Emails" msgstr "" -#: gourl.php:3902 gourl.php:4435 +#: gourl.php:3979 gourl.php:4512 msgid "Used template tags for preview:" msgstr "" -#: gourl.php:3908 +#: gourl.php:3985 msgid "Email to Buyer - Purchase Receipt" msgstr "" -#: gourl.php:3908 gourl.php:3921 +#: gourl.php:3985 gourl.php:3998 msgid "Activated" msgstr "" -#: gourl.php:3908 gourl.php:3921 +#: gourl.php:3985 gourl.php:3998 msgid "Not Active" msgstr "" -#: gourl.php:3910 gourl.php:3923 +#: gourl.php:3987 gourl.php:4000 msgid "From:" msgstr "" -#: gourl.php:3911 gourl.php:3924 +#: gourl.php:3988 gourl.php:4001 msgid "To:" msgstr "" -#: gourl.php:3911 +#: gourl.php:3988 msgid "- user registered email -" msgstr "" -#: gourl.php:3912 gourl.php:3925 +#: gourl.php:3989 gourl.php:4002 msgid "Subject:" msgstr "" -#: gourl.php:3913 gourl.php:3926 +#: gourl.php:3990 gourl.php:4003 msgid "Body:" msgstr "" -#: gourl.php:3921 +#: gourl.php:3998 msgid "Email to Seller/Admin - Sale Notification" msgstr "" -#: gourl.php:3944 +#: gourl.php:4021 msgid "New product" msgstr "" -#: gourl.php:3946 gourl.php:4192 +#: gourl.php:4023 gourl.php:4269 msgid "All Paid Products" msgstr "" -#: gourl.php:3949 +#: gourl.php:4026 msgid "Create New Product" msgstr "" -#: gourl.php:3958 +#: gourl.php:4035 msgid "Preview - Paid" msgstr "" -#: gourl.php:3959 +#: gourl.php:4036 msgid "Preview - Emails" msgstr "" -#: gourl.php:3968 +#: gourl.php:4045 msgid "Product ID" msgstr "" -#: gourl.php:3976 +#: gourl.php:4053 msgid "Product Title" msgstr "" -#: gourl.php:3979 +#: gourl.php:4056 msgid "Title for the product. Users will see this title" msgstr "" -#: gourl.php:3985 +#: gourl.php:4062 msgid "If box is not checked, visitors cannot pay you for this product" msgstr "" -#: gourl.php:4001 +#: gourl.php:4078 msgid "" "The maximum number of times a product may be purchased. Leave blank or set " "to 0 for unlimited number of product purchases" msgstr "" -#: gourl.php:4011 +#: gourl.php:4088 #, php-format msgid "" "Period after which the payment becomes obsolete and new Payment Box will be " @@ -2192,21 +2212,21 @@ msgid "" "href='%s'>GoUrl WooCommerce Addon also" msgstr "" -#: gourl.php:4045 +#: gourl.php:4122 msgid "A. Product Description (Unpaid yet)" msgstr "" -#: gourl.php:4048 +#: gourl.php:4125 msgid "" "Product Description. Users will see this product description when no payment " "has been received yet" msgstr "" -#: gourl.php:4051 +#: gourl.php:4128 msgid "B. Product Description (Paid already)" msgstr "" -#: gourl.php:4054 +#: gourl.php:4131 #, php-format msgid "" "Users will see this product description when payment has been successfully " @@ -2214,78 +2234,78 @@ msgid "" "Description - unpaid' field
Available template tags: %s" msgstr "" -#: gourl.php:4058 +#: gourl.php:4135 msgid "Email to Buyer ?" msgstr "" -#: gourl.php:4059 +#: gourl.php:4136 msgid "" "If box is checked, purchase receipt email will be sent to Buyer on user " "registered email" msgstr "" -#: gourl.php:4062 +#: gourl.php:4139 msgid "Purchase Email - From" msgstr "" -#: gourl.php:4064 +#: gourl.php:4141 msgid "" "Email to Buyer: This will act as the 'from' and 'reply-to' address in email" msgstr "" -#: gourl.php:4067 +#: gourl.php:4144 msgid "Purchase Email - Subject" msgstr "" -#: gourl.php:4069 +#: gourl.php:4146 msgid "Email to Buyer: Enter the subject line for the purchase receipt email" msgstr "" -#: gourl.php:4072 +#: gourl.php:4149 msgid "Purchase Email - Body" msgstr "" -#: gourl.php:4073 +#: gourl.php:4150 #, php-format msgid "" "Email to Buyer: Enter email body that is sent to users after completing a " "successful purchase. HTML is not accepted.
Available template tags: %s" msgstr "" -#: gourl.php:4076 +#: gourl.php:4153 msgid "Email to Seller/Admin ?" msgstr "" -#: gourl.php:4077 +#: gourl.php:4154 msgid "" "If box is checked, new sale notification email will be sent to Seller/Admin" msgstr "" -#: gourl.php:4080 +#: gourl.php:4157 msgid "Sale Notification - From" msgstr "" -#: gourl.php:4082 +#: gourl.php:4159 msgid "" "Email to Seller: This will act as the 'from' and 'reply-to' email address" msgstr "" -#: gourl.php:4085 +#: gourl.php:4162 msgid "Sale Notification - Subject" msgstr "" -#: gourl.php:4087 +#: gourl.php:4164 #, php-format msgid "" "Email to Seller: Enter the subject line for the sale notification " "email
Available template tags: %s" msgstr "" -#: gourl.php:4090 +#: gourl.php:4167 msgid "Sale Notification - Body" msgstr "" -#: gourl.php:4091 +#: gourl.php:4168 #, php-format msgid "" "Email to Seller: Enter the sale notification email that is sent to seller/" @@ -2293,27 +2313,27 @@ msgid "" "tags: %s" msgstr "" -#: gourl.php:4094 +#: gourl.php:4171 msgid "Sale Notification - To" msgstr "" -#: gourl.php:4095 +#: gourl.php:4172 msgid "" "Email to Seller: Enter the email address(es) that should receive a " "notification anytime a sale is made, one per line" msgstr "" -#: gourl.php:4192 gourl.php:5105 gourl.php:5106 +#: gourl.php:4269 gourl.php:5182 gourl.php:5183 msgid "Add New Product" msgstr "" -#: gourl.php:4199 +#: gourl.php:4276 msgid "" "Use 'Pay-Per-product' - sell any of your products online to registered " "users. Email notifications to Buyer/Seller." msgstr "" -#: gourl.php:4200 +#: gourl.php:4277 #, php-format msgid "" "You will need to create a new product record of what you " @@ -2322,7 +2342,7 @@ msgid "" "payment box." msgstr "" -#: gourl.php:4201 +#: gourl.php:4278 #, php-format msgid "" "Please activate website registration (General Settings » Membership - " @@ -2331,12 +2351,12 @@ msgid "" "href='%s'>Login Form" msgstr "" -#: gourl.php:4202 +#: gourl.php:4279 #, php-format msgid "See also - Installation Instruction" msgstr "" -#: gourl.php:4203 +#: gourl.php:4280 #, php-format msgid "" "Alternatively, you can use free WooCommerce plugin " @@ -2344,42 +2364,42 @@ msgid "" "href='%s'>Woocommerce Bitcoin/Altcoin Gateway addon" msgstr "" -#: gourl.php:4215 +#: gourl.php:4292 msgid "Total products" msgstr "" -#: gourl.php:4215 gourl.php:4216 gourl.php:4217 gourl.php:4218 +#: gourl.php:4292 gourl.php:4293 gourl.php:4294 gourl.php:4295 msgid "products" msgstr "" -#: gourl.php:4263 +#: gourl.php:4340 #, php-format msgid "Invalid product id '%s' -" msgstr "" -#: gourl.php:4308 gourl.php:5391 +#: gourl.php:4385 gourl.php:5468 msgid "" "You need first to login or register on the website to make Bitcoin/Altcoin " "Payments" msgstr "" -#: gourl.php:4400 +#: gourl.php:4477 msgid "Cryptcoin Payment Box Disabled" msgstr "" -#: gourl.php:4405 +#: gourl.php:4482 msgid "Cryptcoin Payment Box Preview" msgstr "" -#: gourl.php:4554 gourl.php:6095 gourl.php:6115 +#: gourl.php:4631 gourl.php:6173 gourl.php:6193 msgid "GMT" msgstr "" -#: gourl.php:4565 +#: gourl.php:4642 msgid "All Received Payments" msgstr "" -#: gourl.php:4570 +#: gourl.php:4647 #, php-format msgid "" "Notes: Please wait bitcoin/altcoin transaction confirmations (column " @@ -2389,63 +2409,63 @@ msgid "" "somebody may from time to time try to do so." msgstr "" -#: gourl.php:4580 +#: gourl.php:4657 #, php-format msgid "" "GoUrl.io Live Status : Payment id %s transaction - CONFIRMED" msgstr "" -#: gourl.php:4581 +#: gourl.php:4658 #, php-format msgid "" "GoUrl.io Live Status : Payment id %s transaction - NOT confirmed " "yet" msgstr "" -#: gourl.php:4597 +#: gourl.php:4674 msgid "Recognised" msgstr "" -#: gourl.php:4598 gourl.php:7437 +#: gourl.php:4675 gourl.php:7515 msgid "Unrecognised" msgstr "" -#: gourl.php:4599 +#: gourl.php:4676 msgid "Total Sum" msgstr "" -#: gourl.php:4783 +#: gourl.php:4860 msgid "Login" msgstr "" -#: gourl.php:4787 +#: gourl.php:4864 msgid "username" msgstr "" -#: gourl.php:4791 +#: gourl.php:4868 msgid "password" msgstr "" -#: gourl.php:4794 +#: gourl.php:4871 msgid "Log in" msgstr "" -#: gourl.php:4795 +#: gourl.php:4872 msgid "Lost your password?" msgstr "" -#: gourl.php:4796 +#: gourl.php:4873 msgid "Free" msgstr "" -#: gourl.php:5027 +#: gourl.php:5104 #, php-format msgid "" "If you like GoUrl Bitcoin/Altcoins Gateway please leave us " "a %s rating on %s. A huge thank you from GoUrl in advance!" msgstr "" -#: gourl.php:5038 +#: gourl.php:5115 #, php-format msgid "" "%s Plugin is almost ready to use! All you need to do is to " @@ -2453,11 +2473,11 @@ msgid "" "a>" msgstr "" -#: gourl.php:5038 gourl.php:5050 gourl.php:5220 +#: gourl.php:5115 gourl.php:5127 gourl.php:5297 msgid "Official GoUrl Bitcoin Payment Gateway for Wordpress" msgstr "" -#: gourl.php:5050 +#: gourl.php:5127 #, php-format msgid "" "Please deactivate %s Plugin,
manually set folder %s permission to " @@ -2466,550 +2486,550 @@ msgid "" "permissions to 0777:
- %s
- %s
- %s" msgstr "" -#: gourl.php:5066 gourl.php:5067 +#: gourl.php:5143 gourl.php:5144 msgid "GoUrl Bitcoin" msgstr "" -#: gourl.php:5077 gourl.php:5078 +#: gourl.php:5154 gourl.php:5155 msgid "• Summary" msgstr "" -#: gourl.php:5086 gourl.php:5087 +#: gourl.php:5163 gourl.php:5164 msgid "• All Payments" msgstr "" -#: gourl.php:5095 gourl.php:5096 +#: gourl.php:5172 gourl.php:5173 msgid "• Pay-Per-Product" msgstr "" -#: gourl.php:5115 gourl.php:5116 +#: gourl.php:5192 gourl.php:5193 msgid "• Pay-Per-Download" msgstr "" -#: gourl.php:5134 gourl.php:5135 +#: gourl.php:5211 gourl.php:5212 msgid "• Pay-Per-View" msgstr "" -#: gourl.php:5144 gourl.php:5145 +#: gourl.php:5221 gourl.php:5222 msgid "• Pay-Per-Membership" msgstr "" -#: gourl.php:5154 gourl.php:5155 +#: gourl.php:5231 gourl.php:5232 msgid "Premium Users" msgstr "" -#: gourl.php:5163 gourl.php:5164 +#: gourl.php:5240 gourl.php:5241 msgid "________________" msgstr "" -#: gourl.php:5181 gourl.php:5182 +#: gourl.php:5258 gourl.php:5259 msgid "Add-ons" msgstr "" -#: gourl.php:5190 gourl.php:5191 +#: gourl.php:5267 gourl.php:5268 msgid "Contacts" msgstr "" -#: gourl.php:5216 +#: gourl.php:5293 msgid "GoUrl Pay-Per-Download (Paid File Downloads)" msgstr "" -#: gourl.php:5217 +#: gourl.php:5294 msgid "GoUrl Pay-Per-View (Anonymous Access to Premium Pages/Video)" msgstr "" -#: gourl.php:5218 +#: gourl.php:5295 msgid "GoUrl Premium Pay-Per-Membership" msgstr "" -#: gourl.php:5219 +#: gourl.php:5296 msgid "GoUrl Pay-Per-Product (selling online)" msgstr "" -#: gourl.php:5222 +#: gourl.php:5299 msgid "CRYPTO-CURRENCY PAYMENT GATEWAY" msgstr "" -#: gourl.php:5242 +#: gourl.php:5319 #, php-format msgid "" "Cannot upload file '%s' on server. Alternatively, you can upload your file " "to '%s' using the FTP File Manager" msgstr "" -#: gourl.php:5243 +#: gourl.php:5320 #, php-format msgid "Invalid image file '%s', supported *.gif, *.jpg, *.png files only" msgstr "" -#: gourl.php:5260 +#: gourl.php:5337 #, php-format msgid "" "Cannot move file '%s' to directory '%s' on server. Please check directory " "permissions" msgstr "" -#: gourl.php:5263 +#: gourl.php:5340 #, php-format msgid "Your Featured Image %s has been uploaded successfully" msgstr "" -#: gourl.php:5270 +#: gourl.php:5347 #, php-format msgid "Your File %s has been uploaded successfully" msgstr "" -#: gourl.php:5270 +#: gourl.php:5347 #, php-format msgid "New File Name is %s" msgstr "" -#: gourl.php:5358 +#: gourl.php:5435 msgid "Error. Please place in variable $YourPluginName - your plugin name" msgstr "" -#: gourl.php:5359 +#: gourl.php:5436 #, php-format msgid "" "Error. Invalid plugin name - %s. Size: 5-17 symbols. Allowed symbols: a.." "Z0..9_-" msgstr "" -#: gourl.php:5360 +#: gourl.php:5437 msgid "" "Error. Please change plugin name. Plugin name can not begin with: 'file..', " "'product..', 'pay..', 'membership..', 'user..'" msgstr "" -#: gourl.php:5361 +#: gourl.php:5438 msgid "" "Error. Please change plugin name. Plugin name can not use in name '..gourl..'" msgstr "" -#: gourl.php:5365 +#: gourl.php:5442 #, php-format msgid "Error. Invalid amount value - %s. Min value for USD: 0.01" msgstr "" -#: gourl.php:5366 +#: gourl.php:5443 #, php-format msgid "Error. Invalid amount value - %s. Min value: 0.0001" msgstr "" -#: gourl.php:5367 +#: gourl.php:5444 #, php-format msgid "Error. Invalid amountCurrency - %s. Allowed: USD, %s" msgstr "" -#: gourl.php:5372 +#: gourl.php:5449 #, php-format msgid "" "Error. Invalid Order ID - %s. Max size: 32 symbols. Allowed symbols: a.." "Z0..9_-" msgstr "" -#: gourl.php:5377 +#: gourl.php:5454 #, php-format msgid "" "Error. Invalid period value - %s. Allowed: NOEXPIRY, 1..90 HOUR, 1..90 DAY, " "1..90 WEEK, 1..90 MONTH; example: 2 DAYS" msgstr "" -#: gourl.php:5381 +#: gourl.php:5458 #, php-format msgid "Error. Invalid language - %s. Allowed: %s" msgstr "" -#: gourl.php:5384 +#: gourl.php:5461 #, php-format msgid "Error. Invalid Coin - %s. Allowed: %s" msgstr "" -#: gourl.php:5387 +#: gourl.php:5464 msgid "Error. Invalid affiliate_key, you can leave it empty" msgstr "" -#: gourl.php:5390 +#: gourl.php:5467 #, php-format msgid "Error. Invalid User ID - %s. Allowed numeric values or 'guest' value" msgstr "" -#: gourl.php:5391 +#: gourl.php:5468 msgid "Error." msgstr "" -#: gourl.php:5393 +#: gourl.php:5470 msgid "" "Error. Please try a different payment method. GoUrl Bitcoin Plugin not " "configured - need setup payment box keys on GoUrl Bitcoin Gateway Options " "page" msgstr "" -#: gourl.php:5423 +#: gourl.php:5500 #, php-format msgid "Invalid %s Public Key - %s" msgstr "" -#: gourl.php:5424 +#: gourl.php:5501 #, php-format msgid "Invalid %s Private Key" msgstr "" -#: gourl.php:5436 +#: gourl.php:5513 #, php-format msgid "" "Error. Please enter Payment Private/Public Keys on GoUrl Options page for %s." msgstr "" -#: gourl.php:5567 +#: gourl.php:5644 #, php-format msgid "" "Error! Cannot get exchange rates for %s. Please try a different " "cryptocurrency." msgstr "" -#: gourl.php:5930 +#: gourl.php:6008 #, php-format msgid "" "Error. Please enable MBSTRING extension in " "PHP. Read here »" msgstr "" -#: gourl.php:5998 +#: gourl.php:6076 msgid "TB" msgstr "" -#: gourl.php:6003 +#: gourl.php:6081 msgid "GB" msgstr "" -#: gourl.php:6008 +#: gourl.php:6086 msgid "MB" msgstr "" -#: gourl.php:6013 +#: gourl.php:6091 msgid "kb" msgstr "" -#: gourl.php:6017 +#: gourl.php:6095 msgid "Bytes" msgstr "" -#: gourl.php:6094 +#: gourl.php:6172 msgid "Bitcoin/altcoin Payments?" msgstr "" -#: gourl.php:6095 gourl.php:6115 gourl.php:6153 +#: gourl.php:6173 gourl.php:6193 gourl.php:6231 msgid "YES" msgstr "" -#: gourl.php:6095 +#: gourl.php:6173 msgid "Latest payment" msgstr "" -#: gourl.php:6096 gourl.php:6116 gourl.php:6154 +#: gourl.php:6174 gourl.php:6194 gourl.php:6232 msgid "NO" msgstr "" -#: gourl.php:6114 gourl.php:6152 +#: gourl.php:6192 gourl.php:6230 msgid "Premium Membership" msgstr "" -#: gourl.php:6115 gourl.php:6153 +#: gourl.php:6193 gourl.php:6231 msgid "Period" msgstr "" -#: gourl.php:6116 +#: gourl.php:6194 msgid "Manually Add Premium Membership" msgstr "" -#: gourl.php:6359 +#: gourl.php:6437 msgid "Please Login" msgstr "" -#: gourl.php:6380 +#: gourl.php:6458 #, php-format msgid "" "

Feed not available, please visit our Home Page!

" msgstr "" -#: gourl.php:6574 gourl.php:6817 gourl.php:7083 +#: gourl.php:6652 gourl.php:6895 gourl.php:7161 msgid "Show this coin transactions only" msgstr "" -#: gourl.php:6583 gourl.php:6826 +#: gourl.php:6661 gourl.php:6904 msgid "unlimited" msgstr "" -#: gourl.php:6591 +#: gourl.php:6669 msgid "Registered Users" msgstr "" -#: gourl.php:6614 gourl.php:6849 gourl.php:7328 +#: gourl.php:6692 gourl.php:6927 gourl.php:7406 msgid "ID" msgstr "" -#: gourl.php:6615 gourl.php:6850 +#: gourl.php:6693 gourl.php:6928 msgid "Acti-ve?" msgstr "" -#: gourl.php:6616 +#: gourl.php:6694 msgid "File Name" msgstr "" -#: gourl.php:6618 +#: gourl.php:6696 msgid "File Size" msgstr "" -#: gourl.php:6619 +#: gourl.php:6697 msgid "Price USD" msgstr "" -#: gourl.php:6620 gourl.php:6853 +#: gourl.php:6698 gourl.php:6931 msgid "Price in Coins" msgstr "" -#: gourl.php:6621 +#: gourl.php:6699 msgid "Show FileName/Price?" msgstr "" -#: gourl.php:6623 gourl.php:6855 +#: gourl.php:6701 gourl.php:6933 msgid "Latest Received Payment, GMT" msgstr "" -#: gourl.php:6624 gourl.php:6856 +#: gourl.php:6702 gourl.php:6934 msgid "Record Updated, GMT" msgstr "" -#: gourl.php:6625 gourl.php:6857 gourl.php:7334 +#: gourl.php:6703 gourl.php:6935 gourl.php:7412 msgid "Record Created, GMT" msgstr "" -#: gourl.php:6628 gourl.php:6858 +#: gourl.php:6706 gourl.php:6936 msgid "Payment Expiry Period" msgstr "" -#: gourl.php:6629 gourl.php:6859 +#: gourl.php:6707 gourl.php:6937 msgid "Default Payment Box Coin" msgstr "" -#: gourl.php:6630 gourl.php:6860 +#: gourl.php:6708 gourl.php:6938 msgid "Default Coin only?" msgstr "" -#: gourl.php:6631 gourl.php:6861 +#: gourl.php:6709 gourl.php:6939 msgid "Default Box Language" msgstr "" -#: gourl.php:6682 gourl.php:6899 +#: gourl.php:6760 gourl.php:6977 msgid "Edit" msgstr "" -#: gourl.php:6683 gourl.php:6900 +#: gourl.php:6761 gourl.php:6978 msgid "Preview" msgstr "" -#: gourl.php:6852 +#: gourl.php:6930 msgid "Price in USD" msgstr "" -#: gourl.php:6863 +#: gourl.php:6941 msgid "Email to Buyer?" msgstr "" -#: gourl.php:6864 +#: gourl.php:6942 msgid "Email to Seller?" msgstr "" -#: gourl.php:7017 +#: gourl.php:7095 msgid "User already downloaded this file from your website" msgstr "" -#: gourl.php:7017 +#: gourl.php:7095 msgid "User not downloaded this file yet" msgstr "" -#: gourl.php:7025 +#: gourl.php:7103 msgid "View Statistics" msgstr "" -#: gourl.php:7038 +#: gourl.php:7116 msgid "woocommerce" msgstr "" -#: gourl.php:7038 gourl.php:7039 gourl.php:7040 gourl.php:7044 gourl.php:7046 -#: gourl.php:7047 gourl.php:7049 +#: gourl.php:7116 gourl.php:7117 gourl.php:7118 gourl.php:7122 gourl.php:7124 +#: gourl.php:7125 gourl.php:7127 msgid "order" msgstr "" -#: gourl.php:7039 +#: gourl.php:7117 msgid "wp ecommerce" msgstr "" -#: gourl.php:7040 +#: gourl.php:7118 msgid "jigoshop" msgstr "" -#: gourl.php:7044 +#: gourl.php:7122 msgid "appthemes" msgstr "" -#: gourl.php:7044 +#: gourl.php:7122 msgid "escrow" msgstr "" -#: gourl.php:7046 +#: gourl.php:7124 msgid "marketpress" msgstr "" -#: gourl.php:7047 +#: gourl.php:7125 msgid "pmpro" msgstr "" -#: gourl.php:7048 +#: gourl.php:7126 msgid "give" msgstr "" -#: gourl.php:7048 +#: gourl.php:7126 msgid "donation" msgstr "" -#: gourl.php:7049 +#: gourl.php:7127 msgid "edd" msgstr "" -#: gourl.php:7060 gourl.php:7295 +#: gourl.php:7138 gourl.php:7373 msgid "Guest" msgstr "" -#: gourl.php:7062 gourl.php:7297 +#: gourl.php:7140 gourl.php:7375 msgid "wrong paid amount" msgstr "" -#: gourl.php:7091 +#: gourl.php:7169 msgid "Show Only Visitors from this Country" msgstr "" -#: gourl.php:7097 +#: gourl.php:7175 msgid "Transaction Details" msgstr "" -#: gourl.php:7102 +#: gourl.php:7180 msgid "Wallet Details" msgstr "" -#: gourl.php:7130 gourl.php:7330 +#: gourl.php:7208 gourl.php:7408 msgid "Payment ID" msgstr "" -#: gourl.php:7131 +#: gourl.php:7209 msgid "Payment Box ID" msgstr "" -#: gourl.php:7132 +#: gourl.php:7210 msgid "Coin" msgstr "" -#: gourl.php:7133 +#: gourl.php:7211 msgid "Order ID" msgstr "" -#: gourl.php:7134 +#: gourl.php:7212 msgid "Paid Amount" msgstr "" -#: gourl.php:7135 +#: gourl.php:7213 msgid "Approximate in USD" msgstr "" -#: gourl.php:7136 +#: gourl.php:7214 msgid "Unrecogn. Payment?" msgstr "" -#: gourl.php:7137 +#: gourl.php:7215 msgid "User ID" msgstr "" -#: gourl.php:7138 +#: gourl.php:7216 msgid "Transaction Time, GMT" msgstr "" -#: gourl.php:7139 +#: gourl.php:7217 msgid "User Location" msgstr "" -#: gourl.php:7140 +#: gourl.php:7218 msgid "Confirmed Payment?" msgstr "" -#: gourl.php:7141 +#: gourl.php:7219 msgid "User Downl. File?" msgstr "" -#: gourl.php:7142 +#: gourl.php:7220 msgid "File Downloaded Time, GMT" msgstr "" -#: gourl.php:7143 +#: gourl.php:7221 msgid "Transaction ID" msgstr "" -#: gourl.php:7144 +#: gourl.php:7222 msgid "Your GoUrl Wallet Address" msgstr "" -#: gourl.php:7193 +#: gourl.php:7271 msgid "Re-check Payment Status" msgstr "" -#: gourl.php:7193 +#: gourl.php:7271 msgid "Check" msgstr "" -#: gourl.php:7306 +#: gourl.php:7384 msgid "manually" msgstr "" -#: gourl.php:7331 +#: gourl.php:7409 msgid "Premium Membership Start, GMT" msgstr "" -#: gourl.php:7332 +#: gourl.php:7410 msgid "Premium Membership End, GMT" msgstr "" -#: gourl.php:7333 +#: gourl.php:7411 msgid "Premium Memb. Disabled?" msgstr "" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Are you sure you want to DISABLE Premium Membership?" msgstr "" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Are you sure you want to ENABLE Premium Membership?" msgstr "" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Disable" msgstr "" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Enable" msgstr "" -#: gourl.php:7365 +#: gourl.php:7443 msgid "Are you sure you want to DELETE this record?" msgstr "" -#: gourl.php:7365 +#: gourl.php:7443 msgid "Delete" msgstr "" -#: gourl.php:7366 +#: gourl.php:7444 msgid "Profile" msgstr "" -#: gourl.php:7436 +#: gourl.php:7514 msgid "All Payments" msgstr "" diff --git a/languages/gourl-ru_RU.mo b/languages/gourl-ru_RU.mo index ece70bfb57eadabad0b65f474242a9629d435db6..1c3f449657c58f3f426c22146f45e3d39e2c9d5f 100644 GIT binary patch delta 13754 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

rq^wxuU=X zE_7H-RCq#^zRt+#_^5~xaq(juR7pcQY}(53XZ^c!FS0iWj2<|~F=B9Zf@5TOOkz|5 zR}m4O$Pp58XIRdKd(7A;mns)7=h|hT zHJ#jE*KB!^9BDfpwU;iMDc3=Z0~~)};HW; M{(COpu;%&v4}>P~ZvX%Q delta 12923 zcmZYF2Yim#|NrrGSuu-<*d!rlkWhQ8EoSV!g4nB4t2fb7qp3|>dsOWbrDoJ9YPM+6 z)@&73HCnVaey{g^j_+R||Lfu8c|PYl*E;LEl6L$b0XJ_1_$~#enrqmar!XcjE(|m# zUrO@fDm7+ClrgX2Ow5W)om)`#4`K$qirMgY%z<7RV{&0G492pk{f$uP>w;N~@tJ{S zRPk*L#06Lv*Wq-$kCnB*tTFMp17~5>>&DdaxB*;BoUXhvV{t8Rqr6B3W4aPws%T7Z ztX|2OdDtHNv;Q7;PT@1AQx)!(f}PbkkP5r28}pnN7+!y%GyU`#{G`!q7g1xV1g^3hJ}fjVn#fSnei;DX@AB5e1hfBG_ze+9@SM1@HLEe; zdkp=r!BVZ29RsZ~HSu5!!Z%S*HWgKGF$Uu{48s!`iuc_9z}EHwien(pHnyp{U?$4PU@Dw~I$b)3&fMkic=xp6D%f~Qa|a2}Zq<_4an&u*hyB)O9v0|!xq z>m=&Ne?xW26J&my+?|b?jU})yCS!R_-NoM$K2wzpGsMJUX8au0REIDJ{(&PfpsO(- z<5=vCIlI~E=0jcRDC)^CINMKdl|!2Hw*D?yp0JM7i-LTyn{`+z8T2l z)W%&n7oTGdoWopGU!6tGf*+BAZtkJFrfy$5c4AP2tOpjs@u&y-6m^3qUHKEFF-=IE zy)hs9n6l;snQ2&{pY7Xqn2Y!`48X539e(Tl5krY@VE+`1m;S7143ZH8?KJyhh&|6< zWU8A3_$~$ywPR%=rY7Dol=kO%lS~1}oBgQ4_!VZsYnX@+F%>2Zvrj%5HEZT#R$Pg? z;ccktbs7ufGpve*hTGZE9UBoRU`sqPoc7n9gfPN1*a~A1R!5yU1_LqH#cyF+;;E<` zpN%tc9>!ylHyJaYF-uT``s_%%zJ#!I2XP`Y<4uFNc(33x9~oND1dTF=e`Y*CxHkJj4)cyRW-=bZg4{s!amJh@9>K`VfQ@)itpjaPvuq&h zL44!LsKO-Flg@JSD%1g+QPbxLYC2tYKE;B>ImX*TR|QKE_rzQ{3rpg9%#Rnb0sf8Z zn%Wcm^?fFej4rgmxe03#e}y_x+5}cF3`5;8Ar)z!-|ujc;_GCIL`sHXV^b)vs84Q7AGj*+~WjW`TbV0p}rl~DDYq0TcHHFn-c z-N+173n#hqWYi6PgITz~c}ONNrecn$i9=C$SQT}lR;VX$i-oWo>O$|LPCN&7V@qAU z6?ObR?1bl$;bY28GA2EKhS47D4f=F}wC~xKE(7X>H8Fw;(Wq%MYKmP4j$>NlvzQux zLXC~<*oG55#Sr3{>Be;D_z@UR{N4NZz5f&|5|>J}*Xff;`|E})<%aVQ32$~m^Bf>B)(j&resi%-m<{ndw; zDNxh=g&K^im6a#Rff^IV=Gi8$gawJ4piVdx)glv7V`VyS=D69|8S5@U%2#~I%Zk|h z$bK6({@A`PZ}`akNri`43~w&9O&Yk!PNx$19#7r@|6u?1CH9HVEVVaw4cAcq05jpj zWp?FUiy8yFP%Uu=OXCg9gTc#fm-xz%$wxsiRK*0;iRPl#{uQXDcpYlc?Zz-Xh8hER zQG@JHEQ>8x*bBdl?THs*I(&>e-dky(JPU@<<0c=O9_*-&>Vjpc8(5Epa3^YdT}Iu| z3p|ejtN2jGEBxq%lRmNE1;1fG;+CsfQ*aNC!#1DVu0HF$jX5>{)qdfS3yWe6)SdQ4 zEg12rrksa4aiiOR7f`=< z?6ge4RK&|s<*QL$u@^O6Pot*uc`S=JP+gRJFW-}z|5eGfq#$#$UD0|thhc8Y6Hqs} z2=&Bku?X(KAiRodkwQ8XuyWv9t4696&tuE9)h!r+SBNm(0Sd#0ya^d;xReUl_*qP39xE zpbQRUutZ}P%9D@U6P(5X;)|FDuVGreg?hpVuKW?ECVqzMl9XTDdTB8QaaL5*2VqSt zkG}R~;>pNwuo{*)W*3e)=L}RAZAV=={c+pm*-$4gfVyxPYJX8@lq;|7;+m-X4N(si zeVq2!owlMN9kzEBd!kM_z*QWE8Hh(?Mx2D|irILJGp<4{)gPSVCU7H0;5VpQ^c*!C zN}sl~?G4my>vo#%Ru7>d!Msio9aC0pgjHp3mScw;Je5o!-07&**jf?>8NlL-{ipamyP*^ zCTe<(?|I7qy20-Vczf>8 z)TG5RBeuhG7>kGSV?2!A133VTW%Eo2tcpc&KI*t+48`N9F1d>g6Y~Q1;msh=|Eaeo zyJwd0V29DC`Q9goeUeq!nD}d~jlnrR|1YKOF^c#Mmd4b%tmUvEaV%;&O~DXchGlU- zYW6&Gaae9UM%tjp&dl7N≀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 diff --git a/languages/gourl-ru_RU.po b/languages/gourl-ru_RU.po index 9cad610..fdd7837 100644 --- a/languages/gourl-ru_RU.po +++ b/languages/gourl-ru_RU.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: GoUrl Bitcoin Payment Gateway & Paid Downloads & " "Membership\n" -"POT-Creation-Date: 2017-10-09 12:58+0300\n" -"PO-Revision-Date: 2017-10-09 12:58+0300\n" +"POT-Creation-Date: 2017-10-12 12:36+0300\n" +"PO-Revision-Date: 2017-10-12 12:36+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: ru_RU\n" @@ -21,109 +21,109 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" -#: gourl.php:291 gourl.php:427 gourl.php:7438 +#: gourl.php:293 gourl.php:429 gourl.php:7516 msgid "Summary" msgstr "Краткий обзор" -#: gourl.php:291 +#: gourl.php:293 msgid "version" msgstr "версия" -#: gourl.php:309 +#: gourl.php:311 msgid "Latest Payment to Pay-Per-Product" msgstr "Последние платежи Pay-Per-Product" -#: gourl.php:311 gourl.php:372 gourl.php:416 gourl.php:4600 +#: gourl.php:313 gourl.php:374 gourl.php:418 gourl.php:4677 msgid "Latest Payment" msgstr "Последний платеж" -#: gourl.php:325 +#: gourl.php:327 msgid "Latest Payment to Pay-Per-Download" msgstr "Последние платежи Pay-Per-Download" -#: gourl.php:342 +#: gourl.php:344 msgid "Latest Payment to Pay-Per-Membership" msgstr "Последние платежи Pay-Per-Membership" -#: gourl.php:356 +#: gourl.php:358 msgid "Latest Payment to Pay-Per-View" msgstr "Последние платежи Pay-Per-View" -#: gourl.php:388 +#: gourl.php:390 msgid "Latest Payment to Other Plugins" msgstr "Последний платеж другому плагину" -#: gourl.php:402 +#: gourl.php:404 msgid "Unrecognised Latest Payment" msgstr "Нераспознанный последний платёж" -#: gourl.php:413 gourl.php:416 gourl.php:1357 gourl.php:1837 gourl.php:2088 -#: gourl.php:2898 gourl.php:3990 gourl.php:4599 gourl.php:6549 gourl.php:6797 -#: gourl.php:7069 +#: gourl.php:415 gourl.php:418 gourl.php:1434 gourl.php:1914 gourl.php:2165 +#: gourl.php:2975 gourl.php:4067 gourl.php:4676 gourl.php:6627 gourl.php:6875 +#: gourl.php:7147 msgid "USD" msgstr "USD" -#: gourl.php:436 +#: gourl.php:438 #, php-format msgid "%s paid products" msgstr "%s платных продукта" -#: gourl.php:437 gourl.php:440 gourl.php:443 gourl.php:446 gourl.php:464 -#: gourl.php:469 gourl.php:472 gourl.php:4596 gourl.php:4597 gourl.php:4598 +#: gourl.php:439 gourl.php:442 gourl.php:445 gourl.php:448 gourl.php:466 +#: gourl.php:471 gourl.php:474 gourl.php:4673 gourl.php:4674 gourl.php:4675 msgid "payments" msgstr "платежей" -#: gourl.php:439 +#: gourl.php:441 #, php-format msgid "%s paid files" msgstr "%s платных файлов" -#: gourl.php:442 +#: gourl.php:444 #, php-format msgid "%s premium users" msgstr "%s премиум пользователей" -#: gourl.php:468 +#: gourl.php:470 msgid "Other Plugins with GoUrl" msgstr "Другие плагины с GoUrl" -#: gourl.php:471 +#: gourl.php:473 msgid "Unrecognised Payments" msgstr "Нераспознанные платежи" -#: gourl.php:474 gourl.php:4596 +#: gourl.php:476 gourl.php:4673 msgid "Total Received" msgstr "Всего получено" -#: gourl.php:474 +#: gourl.php:476 #, php-format msgid "%s payments" msgstr "%s платежей" -#: gourl.php:475 +#: gourl.php:477 msgid "Recent Payment" msgstr "Последний платёж" -#: gourl.php:493 +#: gourl.php:495 msgid "GoUrl Live Currency Rates" msgstr "GoUrl Курсы Валют" -#: gourl.php:504 +#: gourl.php:506 msgid "What Makes Us Unique" msgstr "Что делает нас уникальными" -#: gourl.php:508 +#: gourl.php:510 msgid "Example" msgstr "Пример" -#: gourl.php:510 +#: gourl.php:512 #, php-format msgid "100%% Free Open Source on Github.com" msgstr "" "100%% бесплатный плагин с открытым исходным кодом на Github.com" -#: gourl.php:511 +#: gourl.php:513 #, php-format msgid "" "No Monthly Fee, Transaction Fee from 0%%. Set your own prices in USD, рублях, евро ... (100 валют)" -#: gourl.php:512 +#: gourl.php:514 msgid "" "No ID Required, No Bank Account Needed. Global, Anonymous, Secure, No " "Chargebacks, Zero Risk" @@ -140,7 +140,7 @@ msgstr "" "Не требуется ID, не нужен банковский счёт. Глобально, анонимно, безопасно, " "нет возвратов, нет риска" -#: gourl.php:513 +#: gourl.php:515 #, php-format msgid "" "Get payments straight to your bitcoin/altcoin wallets and convert to USD/EUR/RUB позже. Всё в автоматическом " "режиме" -#: gourl.php:514 +#: gourl.php:516 #, php-format msgid "" "Pay-Per-Download - simple solution for your " @@ -160,7 +160,7 @@ msgstr "" "для ваших незарегистрированных посетителей: зарабатывайте на " "скачивании файлов" -#: gourl.php:515 +#: gourl.php:517 #, php-format msgid "" "Pay-Per-View/Page - for your unregistered visitors: " @@ -170,7 +170,7 @@ msgstr "" "незарегистрированных посетителей: предложите платный доступ к вашему " "премиум контенту/видео" -#: gourl.php:516 +#: gourl.php:518 #, php-format msgid "" "Pay-Per-Membership - for your registered users: " @@ -180,7 +180,7 @@ msgstr "" "зарегистрированных пользователей: предложите платный доступ к вашему " "премиум-контенту, настраиваемые действия" -#: gourl.php:517 +#: gourl.php:519 #, php-format msgid "" "Pay-Per-Product - advanced solution for your registered " @@ -191,7 +191,7 @@ msgstr "" "ваших зарегистрированных пользователей: продавайте любые товары на " "сайте, отправка подтверждений покупателю по электронной почте, и т.д." -#: gourl.php:518 +#: gourl.php:520 msgid "" "Working with third-party plugins - good support for " "third party plugins (WoCommerce, Jigoshop, bbPress, AppThemes, etc)" @@ -199,7 +199,7 @@ msgstr "" "Поддержка других плагинов - хорошая поддержка сторонних " "плагинов (WoCommerce, Jigoshop, bbPress, AppThemes, и т.д.)" -#: gourl.php:519 +#: gourl.php:521 msgid "" "Support payments in Bitcoin, Bitcoin Cash, Litecoin, Dash, Dogecoin, " "Speedcoin, Reddcoin, Potcoin, Feathercoin, Vertcoin, Peercoin, MonetaryUnit" @@ -207,7 +207,7 @@ msgstr "" "Поддержка платежей в Биткоинах, Bitcoin Cash, Litecoin, Dash, Dogecoin, " "Speedcoin, Reddcoin, Potcoin, Feathercoin, Vertcoin, Peercoin, MonetaryUnit" -#: gourl.php:520 +#: gourl.php:522 msgid "" "Auto Synchronization - between payments data stored on your GoUrl.io " "account and your Website. If GoUrl attempts to deliver a payment " @@ -221,7 +221,7 @@ msgstr "" "сохраняется в очереди и доставляется на ваш веб-сайт, когда он станет " "доступен (повторно связь проверяется с вашим веб-сайтом каждый час)" -#: gourl.php:521 +#: gourl.php:523 #, php-format msgid "" "Free Plugin Support and Free Add-ons " @@ -230,43 +230,43 @@ msgstr "" "Бесплатная поддержка плагина и бесплатные " "дополнения для вас" -#: gourl.php:529 +#: gourl.php:531 msgid "Free Bitcoin Gateway Add-ons" msgstr "Бесплатные дополнения для биткоин шлюза" -#: gourl.php:530 +#: gourl.php:532 msgid "The following Add-ons extend the functionality of GoUrl -" msgstr "Следующие дополнения расширяют функциональные возможности GoUrl -" -#: gourl.php:531 +#: gourl.php:533 msgid "All Add-ons on Wordpress.prg" msgstr "Все дополнения на Wordpress.prg" -#: gourl.php:532 +#: gourl.php:534 msgid "View on 'Add Plugins' Page" msgstr "Просмотр на 'Плагин' странице" -#: gourl.php:536 +#: gourl.php:538 msgid "Bitcoin/Altcoin Gateway" msgstr "Bitcoin/Altcoin шлюз" -#: gourl.php:536 +#: gourl.php:538 msgid "Description" msgstr "Описание" -#: gourl.php:536 +#: gourl.php:538 msgid "Homepage" msgstr "Страница" -#: gourl.php:536 +#: gourl.php:538 msgid "Wordpress.org" msgstr "WordPress.org" -#: gourl.php:536 +#: gourl.php:538 msgid "Installation pages" msgstr "Установка" -#: gourl.php:537 +#: gourl.php:539 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for wordpress E-Commerce - " @@ -275,36 +275,36 @@ msgstr "" "Предоставляет GoUrl Биткоин/Альткоин платежный шлюз для wordpress " "электронной коммерции - WooCommerce 2.1 +" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:551 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:553 msgid "Plugin Homepage" msgstr "Домашняя страница" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 msgid "Screenshots" msgstr "Скриншоты" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:552 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:554 msgid "Wordpress Page" msgstr "WordPress страница" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:553 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:555 msgid "Open Source" msgstr "Открытый источник" -#: gourl.php:537 gourl.php:538 gourl.php:539 gourl.php:540 gourl.php:541 -#: gourl.php:542 gourl.php:543 gourl.php:544 gourl.php:545 gourl.php:554 +#: gourl.php:539 gourl.php:540 gourl.php:541 gourl.php:542 gourl.php:543 +#: gourl.php:544 gourl.php:545 gourl.php:546 gourl.php:547 gourl.php:556 msgid "Install Now" msgstr "Установить" -#: gourl.php:537 +#: gourl.php:539 msgid "WooCommerce" msgstr "WooCommerce" -#: gourl.php:538 +#: gourl.php:540 #, php-format msgid "" "Bitcoin/Altcoin & Paypal Donations in Wordpress. Provides a GoUrl Bitcoin/" @@ -317,11 +317,11 @@ msgstr "" "простой в использовании плагин для принятия пожертвований в биткоинах, " "альткоинах, paypal, authorize.net, stripe, paymill прямо на вашем сайте." -#: gourl.php:538 +#: gourl.php:540 msgid "Give" msgstr "Give" -#: gourl.php:539 +#: gourl.php:541 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for Easy Digital Downloads 2.4+ - продажа цифровых файлов / " "загрузок через WordPress." -#: gourl.php:539 +#: gourl.php:541 msgid "EDD" msgstr "EDD" -#: gourl.php:540 +#: gourl.php:542 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for advanced wordpress " @@ -347,11 +347,11 @@ msgstr "" "плтаное членство - Paid Memberships Pro 1.8.4+" -#: gourl.php:540 +#: gourl.php:542 msgid "PaidMembPro" msgstr "PaidMembPro" -#: gourl.php:541 +#: gourl.php:543 #, php-format msgid "" "This addon will add Premium Membership and Bitcoin payment gateway to Jigoshop 1.12 +" -#: gourl.php:543 +#: gourl.php:545 msgid "Jigoshop" msgstr "Jigoshop" -#: gourl.php:544 +#: gourl.php:546 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for WP eCommerce 3.8.10+" -#: gourl.php:544 +#: gourl.php:546 msgid "WP eCommerce" msgstr "WP eCommerce" -#: gourl.php:545 +#: gourl.php:547 #, php-format msgid "" "Provides a GoUrl Bitcoin/Altcoin Payment Gateway for MarketPress 2.9+" -#: gourl.php:545 +#: gourl.php:547 msgid "MarketPress" msgstr "MarketPress" -#: gourl.php:545 +#: gourl.php:547 msgid "Important Notes" msgstr "Важные замечания" -#: gourl.php:546 +#: gourl.php:548 msgid "Supports Bitcoin/Altcoin Payments in Any Other Wordpress Plugins" msgstr "Поддержка биткоин/альткоин платежей в любых других плагинах wordpress" -#: gourl.php:547 +#: gourl.php:549 #, php-format msgid "" "Other wordpress plugin developers can easily integrate Bitcoin payments to " @@ -463,11 +463,11 @@ msgstr "" "биткоин / лайткоин / dogecoin / и т.д. платежи будут автоматически " "использоваться в их плагинах. Это просто!" -#: gourl.php:549 +#: gourl.php:551 msgid "Webmaster Spelling Notifications Plugin" msgstr "Уведомление об ошибках на сайте для веб-мастеров (плагин)" -#: gourl.php:549 +#: gourl.php:551 #, php-format msgid "" "Plugin allows site visitors to send reports to the webmaster/owner about any " @@ -478,11 +478,11 @@ msgstr "" "любых орфографических или грамматических ошибках. Проверка орфографии на веб-" "сайте. Live Демо" -#: gourl.php:563 +#: gourl.php:565 msgid "GoUrl Instruction" msgstr "GoUrl Инструкция" -#: gourl.php:566 +#: gourl.php:568 #, php-format msgid "" "Free Register or войдите на GoUrl.io - глобальный биткоин " "платежный шлюз" -#: gourl.php:567 +#: gourl.php:569 #, php-format msgid "" "Create Payment Box Records for all coin " @@ -501,7 +501,7 @@ msgstr "" "Создайте Payment Box записи для всех типов " "монет, которые вы будете принимать на вашем сайте" -#: gourl.php:568 +#: gourl.php:570 #, php-format msgid "" "You will need to place Callback URL on Gourl.io, please " @@ -510,7 +510,7 @@ msgstr "" "Вам нужно будет добавить Callback URL на Gourl.io, " "пожалуйста используйте: %s" -#: gourl.php:569 +#: gourl.php:571 #, php-format msgid "" "You will get Free GoUrl Public/Private keys from new " @@ -521,33 +521,33 @@ msgstr "" "созданного payment box, сохраните их на cтранице с настройками" -#: gourl.php:572 +#: gourl.php:574 msgid "THAT'S IT! YOUR WEBSITE IS READY TO ACCEPT BITCOINS ONLINE!" msgstr "ЭТО ВСЁ! ВАШ САЙТ ГОТОВ К ПРИЕМУ БИТКОИНОВ ОНЛАЙН!" -#: gourl.php:574 +#: gourl.php:576 #, php-format msgid "" -"Testing environment: You can use 110 " +"Testing environment: You can use 500 " "free Speedcoins or Dogecoins for testing" msgstr "" -"Отладка: Вы можете использовать 110 " +"Отладка: Вы можете использовать 500 " "бесплатных Speedcoins или Dogecoins для " "тестирования" -#: gourl.php:582 +#: gourl.php:584 msgid "Differences between Pay-Per-View and Pay-Per-Membership" msgstr "Различия между Pay-Per-View и Pay-Per-Membership" -#: gourl.php:585 +#: gourl.php:587 msgid "Click to see full size image" msgstr "Нажмите, чтобы увидеть полный размер изображения" -#: gourl.php:585 +#: gourl.php:587 msgid "Add GoUrl Shortcodes to pages. Example" msgstr "Добавьте GoUrl Shortcodes на страницы. Пример" -#: gourl.php:590 +#: gourl.php:592 #, php-format msgid "" "Pay-Per-View - shortcode [%s] - you can use it for " @@ -566,7 +566,7 @@ msgstr "" "пользователь удаляет файлы cookie браузера, он потеряет свое членство и " "новое поле оплаты будет отображаться." -#: gourl.php:591 +#: gourl.php:593 #, php-format msgid "" "Pay-Per-Membership - shortcode [%s] - similar to pay-" @@ -582,7 +582,7 @@ msgstr "" "выбирать от 1 часа до 1 года по вашему выбору. Вам нужно иметь на веб-сайте " "опцию регистрации включенной." -#: gourl.php:592 +#: gourl.php:594 msgid "" "You can use custom actions with Pay-Per-Membership on your website " "(premium and free webpages).
For example, hide ads for premium users, php " @@ -592,14 +592,14 @@ msgstr "" "вашем сайте (для премиум и бесплатных веб-страниц).
Например скрыть " "рекламные объявления для премиум пользователей, php код ниже -" -#: gourl.php:595 +#: gourl.php:597 msgid "" "You can use custom actions with Pay-Per-View on your website too -" msgstr "" "Вы можете использовать настраиваемые действия с Pay-Per-View на вашем " "сайте также -" -#: gourl.php:598 +#: gourl.php:600 #, php-format msgid "" "Pay-Per-Membership integrated with bbPress Forum/" @@ -612,7 +612,7 @@ msgstr "" "a> ). Вы можете пометить некоторые темы на вашем bbPress как премиум и может " "легко монетизировать их с биткоинами/альткоинами." -#: gourl.php:599 +#: gourl.php:601 #, php-format msgid "" "Both solutions - Pay-Per-Membership and Pay-Per-View hide content on " @@ -626,7 +626,7 @@ msgstr "" "Membership также предоставляет режим премиум членства в bbPress." -#: gourl.php:600 +#: gourl.php:602 msgid "" "If a visitor goes to a premium page and have not logged in -
Pay-Per-View " "will show a payment box and accept payments from the unregistered visitor." @@ -640,7 +640,7 @@ msgstr "" "пользователь должен войти/зарегистрироваться на вашем сайте сначала и после " "платежное окно будет ему (зарегистрированному пользователю)." -#: gourl.php:604 +#: gourl.php:606 #, php-format msgid "" "For example, you might offer paid unlimited access to your 50 website " @@ -672,7 +672,7 @@ msgstr "" "объявления для бесплатных пользователей на других бесплатных страницах " "вашего сайта и т.д." -#: gourl.php:606 +#: gourl.php:608 #, php-format msgid "" "Notes:
- Do not use [%s] and [%s] together on the same page.
- " @@ -683,11 +683,11 @@ msgstr "" "странице.
- Редакторы сайта / Администраторы будут иметь все время " "полный доступ к премиум страницам и видеть оригинальное содержимое страниц" -#: gourl.php:613 +#: gourl.php:615 msgid "Adding Custom Actions after Payment has been received" msgstr "Добавление пользовательских действий после получения оплаты" -#: gourl.php:614 +#: gourl.php:616 msgid "" "Using for Pay-Per-Product, Pay-Per-Download, Pay-Per-View, Pay-Per-" "Membership only" @@ -695,7 +695,7 @@ msgstr "" "Используется в Pay-Per-Product, Pay-Per-Download, Pay-Per-View, Pay-Per-" "Membership только" -#: gourl.php:615 +#: gourl.php:617 #, php-format msgid "" "Optional - You can use additional actions after a payment has been received " @@ -710,7 +710,7 @@ msgstr "" "редактируйте php файл gourl_ipn.php в каталоге %s и " "добавьте секцию с вашим order_ID в функцию %s." -#: gourl.php:616 +#: gourl.php:618 msgid "" "This function will appear every time when a new payment from any user is " "received successfully. Function gets user_ID - user who made payment, " @@ -723,11 +723,11 @@ msgstr "" "страницы редактирования записи Pay-Per-Product, Pay-Per-Download и т.д.) и " "платежные детали в виде массива." -#: gourl.php:618 gourl.php:631 +#: gourl.php:620 gourl.php:633 msgid "Example of PHP code" msgstr "Пример PHP кода" -#: gourl.php:619 +#: gourl.php:621 #, php-format msgid "" "P.S. If you use additional plugins/add-ons with gourl " @@ -742,11 +742,11 @@ msgstr "" "получаемые этой функцией, такие же, как значения получаемые функцией " "gourl_successful_payment(), см скриншот выше." -#: gourl.php:626 +#: gourl.php:628 msgid "Bitcoin Payments with Any Other Wordpress Plugins" msgstr "Биткоин платежи с любыми другими wordpress плагинами" -#: gourl.php:627 +#: gourl.php:629 #, php-format msgid "" "Other wordpress plugin developers can easily integrate Bitcoin payments " @@ -781,7 +781,7 @@ msgstr "" "платежа, пользователь увидит подтверждение на веб-странице с любым wordpress " "плагином, что оплата получена (т.е. очень быстро)." -#: gourl.php:628 +#: gourl.php:630 #, php-format msgid "" "Beneficial for You and other users. Simply use this GoUrl Bitcoin/" @@ -805,7 +805,7 @@ msgstr "" "альткоин платежи, которые связаны с ними, используя данные из этой общей " "таблицы 'Все платежи'." -#: gourl.php:630 +#: gourl.php:632 msgid "" "Example of php code with GoUrl Bitcoin Payment Gateway for other wordpress " "plugins -" @@ -813,7 +813,7 @@ msgstr "" "Пример php кода с GoUrl биткоин платежным шлюзом для других wordpress " "плагинов -" -#: gourl.php:633 +#: gourl.php:635 #, php-format msgid "" "And add custom actions after payment has been received. Инструкция по интеграции »" -#: gourl.php:640 +#: gourl.php:642 msgid "GoUrl Contacts" msgstr "GoUrl Контакты" -#: gourl.php:655 +#: gourl.php:657 #, php-format msgid "Please contact us with any questions - %s" msgstr "Вы можете задавать нам любые вопросы - %s" -#: gourl.php:657 +#: gourl.php:659 #, php-format msgid "" "A great way to get involved in open source is to contribute to the existing " @@ -849,35 +849,35 @@ msgstr "" "кодом для этого бесплатного плагина с открытым кодом здесь" -#: gourl.php:661 +#: gourl.php:663 msgid "Buttons For Your Website -" msgstr "Кнопки для вашего сайта -" -#: gourl.php:672 +#: gourl.php:674 msgid "Our Project Donation Addresses -" msgstr "Нашего проекта адреса для пожертвований -" -#: gourl.php:726 +#: gourl.php:728 msgid "It is a Paid Download ! Please pay below" msgstr "Это платная загрузка ! Пожалуйста оплатите ниже" -#: gourl.php:793 +#: gourl.php:824 msgid "Box Invalid Public Key" msgstr "Box неверный Public Key" -#: gourl.php:796 +#: gourl.php:827 msgid "Box Invalid Private Key" msgstr "Box неверный Private Key" -#: gourl.php:798 +#: gourl.php:829 msgid "Box Private Key - cannot be empty" msgstr "Box Private Key - не может быть пустым" -#: gourl.php:799 +#: gourl.php:830 msgid "Box Public Key - cannot be empty" msgstr "Box Public Key - не может быть пустым" -#: gourl.php:806 +#: gourl.php:837 #, php-format msgid "" "You must choose at least one payment method. Please enter your GoUrl Public/" @@ -886,34 +886,34 @@ msgstr "" "Вы должны выбрать, хотя бы один способ оплаты. Пожалуйста, введите ваши " "GoUrl Public/Private ключи. Инструкция здесь »" -#: gourl.php:808 +#: gourl.php:839 msgid "Invalid Payment Box Width. Allowed 480..700px" msgstr "Неверная ширина Payment Box. Допускается 480..700px" -#: gourl.php:809 +#: gourl.php:840 msgid "Invalid Payment Box Height. Allowed 200..400px" msgstr "Неверная высота Payment Box. Допускается 200..400px" -#: gourl.php:811 +#: gourl.php:842 msgid "Invalid Records Per Page value. Allowed 5..200" msgstr "Неверное значение Records Per Page. Допускается 5..200" -#: gourl.php:813 +#: gourl.php:844 msgid "" "Invalid Popup Message text size. Allowed 15 - 400 characters text length" msgstr "" "Недопустимый размер текста для всплывающего сообщения. Допускается текст в " "15 - 400 символов" -#: gourl.php:815 +#: gourl.php:846 msgid "Invalid Payment Box Style" msgstr "Неверный стиль платежного окна (Payment Box)" -#: gourl.php:816 +#: gourl.php:847 msgid "Invalid Payment Messages Style" msgstr "Неверный стиль сообщений (Payment Messages)" -#: gourl.php:837 gourl.php:5931 +#: gourl.php:868 gourl.php:6009 #, php-format msgid "" "Error. Please enable CURL extension in PHP. " @@ -922,7 +922,7 @@ msgstr "" "Ошибка. Пожалуйста, включите CURL расширение в PHP. Читайте здесь »" -#: gourl.php:838 gourl.php:5932 +#: gourl.php:869 gourl.php:6010 #, php-format msgid "" "Error. Please enable MySQLi extension in " @@ -931,25 +931,32 @@ msgstr "" "Ошибка. Пожалуйста, включите MySQLi расширение в PHP. Читайте здесь »" -#: gourl.php:839 gourl.php:5933 +#: gourl.php:870 gourl.php:6011 #, php-format msgid "Error. You need PHP 5.4.0 (or greater). Current php version: %s" msgstr "Ошибка. Вам нужен PHP 5.4.0 (или выше). Текущая версия php: %s" -#: gourl.php:870 gourl.php:1254 gourl.php:1987 gourl.php:2779 gourl.php:3569 -#: gourl.php:3875 +#: gourl.php:873 +#, php-format +msgid "Error. Cannot write file %s - please make directory %s writable." +msgstr "" +"Ошибка. Нельзя создать файл %s - пожалуйста сделайте директорию %s " +"записываемой." + +#: gourl.php:945 gourl.php:1331 gourl.php:2064 gourl.php:2856 gourl.php:3646 +#: gourl.php:3952 msgid "Please fix errors below:" msgstr "Пожалуйста, исправьте ошибки ниже:" -#: gourl.php:871 +#: gourl.php:946 msgid "Settings have been updated successfully" msgstr "Настройки были обновлены успешно" -#: gourl.php:877 gourl.php:1995 gourl.php:2787 gourl.php:5172 gourl.php:5173 +#: gourl.php:952 gourl.php:2072 gourl.php:2864 gourl.php:5249 gourl.php:5250 msgid "Settings" msgstr "Настройки" -#: gourl.php:883 +#: gourl.php:958 #, php-format msgid "" "Simple register on GoUrl.io and get your " @@ -960,11 +967,11 @@ msgstr "" "получите бесплатные Public/Private Payment Box ключи. Читать " "дальше »" -#: gourl.php:892 +#: gourl.php:967 msgid "General Settings" msgstr "Основные настройки" -#: gourl.php:897 +#: gourl.php:972 #, php-format msgid "" "If you use multiple websites online, please create separate Языки и переводы.  Это позволит легко настроить " "тексты всех сообщений, видимых вашими пользователями." -#: gourl.php:902 gourl.php:1298 gourl.php:3596 gourl.php:3956 +#: gourl.php:974 +#, php-format +msgid "" +"Additional Security - You can make file %s - readonly. GoUrl Public/Private keys on page " +"below will be not editable anymore (readonly mode)." +msgstr "" +"Дополнительная безопасность - вы можете сделать файл %s - " +"только для чтения. GoUrl Public/Private " +"ключи на странице ниже нельзя будет редактировать (режим readonly)." + +#: gourl.php:978 gourl.php:1375 gourl.php:3673 gourl.php:4033 msgid "Please wait..." msgstr "Подождите..." -#: gourl.php:902 gourl.php:2077 gourl.php:2886 +#: gourl.php:978 gourl.php:2154 gourl.php:2963 msgid "Save Settings" msgstr "Сохранить настройки" -#: gourl.php:903 gourl.php:1300 gourl.php:2081 gourl.php:2891 gourl.php:3960 +#: gourl.php:979 gourl.php:1377 gourl.php:2158 gourl.php:2968 gourl.php:4037 msgid "Instruction" msgstr "Инструкция" -#: gourl.php:904 gourl.php:1287 gourl.php:2068 gourl.php:2876 gourl.php:3585 -#: gourl.php:3945 +#: gourl.php:980 gourl.php:1364 gourl.php:2145 gourl.php:2953 gourl.php:3662 +#: gourl.php:4022 msgid "Reload Page" msgstr "Обновить" -#: gourl.php:909 +#: gourl.php:985 msgid "Your Callback Url" msgstr "Ваш Callback Url" -#: gourl.php:910 +#: gourl.php:986 #, php-format msgid "" "IMPORTANT - Please place this url in field Callback URL for " @@ -1021,26 +1039,26 @@ msgstr "" "URL для всех ваших Payment Box на gourl.io. Смотрите " "скриншот" -#: gourl.php:919 +#: gourl.php:995 msgid "Payments" msgstr "Платежи" -#: gourl.php:921 +#: gourl.php:997 #, php-format msgid "Box (%s) Public Key" msgstr "Box (%s) Публичный ключ" -#: gourl.php:922 +#: gourl.php:998 #, php-format msgid "Box (%s) Private Key" msgstr "Box (%s) Приватный ключ" -#: gourl.php:923 +#: gourl.php:999 #, php-format msgid "%s (%s) payments are active!" msgstr "%s (%s) активированы платежи!" -#: gourl.php:924 +#: gourl.php:1000 #, php-format msgid "" "That is not a %s wallet private key!   GoUrl %s Box Private/" @@ -1059,19 +1077,28 @@ msgstr "" "здесь полученные бесплатные GoUrl %s Box Public/Private Keys. Оставьте поле " "пустым, если вы не принимаете платежи в %s" -#: gourl.php:928 +#: gourl.php:1001 +#, php-format +msgid "" +"You cannot modify this values because security hash file %s " +"is readonly!" +msgstr "" +"Эти значения нельзя изменить, поскольку безопасности хэш файл " +"%s доступен только для чтения!" + +#: gourl.php:1005 msgid "Payment Box" msgstr "Payment Box" -#: gourl.php:931 +#: gourl.php:1008 msgid "Payment Box Width" msgstr "Payment Box ширина" -#: gourl.php:932 gourl.php:936 gourl.php:1456 gourl.php:6587 +#: gourl.php:1009 gourl.php:1013 gourl.php:1533 gourl.php:6665 msgid "px" msgstr "px" -#: gourl.php:932 +#: gourl.php:1009 #, php-format msgid "" "Cryptocoin Payment Box Width, default 540px. See screenshot " @@ -1080,35 +1107,35 @@ msgstr "" "Cryptocoin Payment Box ширина, по умолчанию 540px. Смотрите " "скриншот »" -#: gourl.php:935 +#: gourl.php:1012 msgid "Payment Box Height" msgstr "Payment Box высота" -#: gourl.php:936 +#: gourl.php:1013 msgid "Cryptocoin Payment Box Height, default 230px" msgstr "Cryptocoin Payment Box высота, по умолчанию 230px" -#: gourl.php:939 +#: gourl.php:1016 msgid "Payment Box Style" msgstr "Payment Box Стиль" -#: gourl.php:941 +#: gourl.php:1018 msgid "Box with Default Shadow" msgstr "Box с тенью по умолчанию" -#: gourl.php:942 +#: gourl.php:1019 msgid "Box with light Border" msgstr "Box with light Border" -#: gourl.php:943 +#: gourl.php:1020 msgid "Box without Border" msgstr "Box without Border" -#: gourl.php:945 gourl.php:955 +#: gourl.php:1022 gourl.php:1032 msgid "Custom Style" msgstr "Произвольный стиль" -#: gourl.php:946 +#: gourl.php:1023 #, php-format msgid "" "Payment Box Visual CSS Style. See screenshot »
Пример: border-radius:15px;border:1px solid #eee;padding:3px 6px;" "margin:10px" -#: gourl.php:949 +#: gourl.php:1026 msgid "Payment Messages Style" msgstr "Payment Messages стиль" -#: gourl.php:951 +#: gourl.php:1028 msgid "Messages with Default Shadow" msgstr "Сообщения с тенью по умолчанию" -#: gourl.php:952 +#: gourl.php:1029 msgid "Messages with light Border" msgstr "Messages with light Border" -#: gourl.php:953 +#: gourl.php:1030 msgid "Messages without Border" msgstr "Messages without Border" -#: gourl.php:956 +#: gourl.php:1033 #, php-format msgid "" "Payment Notifications CSS Style (when user click on payment button which is " @@ -1148,23 +1175,23 @@ msgstr "" "»

Пример: display:inline-block;max-width:580px;padding:15px 20px;box-" "shadow:0 0 3px #aaa;margin:7px;line-height:25px;" -#: gourl.php:959 +#: gourl.php:1036 msgid "Images for Payment Box" msgstr "Изображения для Payment Box" -#: gourl.php:962 +#: gourl.php:1039 msgid "1. Pay-Per-Product" msgstr "1. Pay-Per-Product" -#: gourl.php:964 +#: gourl.php:1041 msgid "Display Website Login Form" msgstr "Показывать Форму входа на сайт" -#: gourl.php:965 +#: gourl.php:1042 msgid "Display Payment Login Image" msgstr "Показывать изображение Payment Login" -#: gourl.php:966 +#: gourl.php:1043 #, php-format msgid "" "Unregistered visitors will see that on your webpages with Pay-" @@ -1173,15 +1200,15 @@ msgstr "" "Незарегистрированные посетители будут видеть это, на ваших веб-страниц с Pay-Per-Product продуктами" -#: gourl.php:974 +#: gourl.php:1051 msgid "Default " msgstr "По умолчанию" -#: gourl.php:976 +#: gourl.php:1053 msgid "Custom Image" msgstr "Произвольное изображение" -#: gourl.php:979 +#: gourl.php:1056 msgid "" "This image will be displayed if your site requires registration for " "unregistered buyer before paying for a product/service." @@ -1189,7 +1216,7 @@ msgstr "" "Это изображение будет отображаться, если ваш сайт требует регистрации для " "незарегистрированных покупателей перед оплатой продукта/услуги." -#: gourl.php:980 +#: gourl.php:1057 msgid "" "This image will be displayed if only registered users can buy/download your " "paid files." @@ -1197,32 +1224,32 @@ msgstr "" "Это изображение будет отображаться, если только зарегистрированные " "пользователи могут купить/скачать платные файлы." -#: gourl.php:982 +#: gourl.php:1059 msgid "Allowed images: JPG, GIF, PNG." msgstr "Допускаются изображения: JPG, GIF, PNG." -#: gourl.php:987 +#: gourl.php:1064 msgid "Other" msgstr "Прочее" -#: gourl.php:990 +#: gourl.php:1067 msgid "Records Per Page" msgstr "Кол-во записей на странице" -#: gourl.php:991 gourl.php:3533 +#: gourl.php:1068 gourl.php:3610 msgid "records" msgstr "записей" -#: gourl.php:991 +#: gourl.php:1068 msgid "Set number of records per page in tables 'All Payments' and 'All Files'" msgstr "" "Задать количество записей на странице в таблицах «Все платежи» и «Все файлы»" -#: gourl.php:994 +#: gourl.php:1071 msgid "Popup Message" msgstr "Всплывающее Сообщение" -#: gourl.php:995 +#: gourl.php:1072 msgid "" "Pay-Per-Download: A pop-up message that a visitor will see when trying to " "download a paid file without payment
Default text: It is a Paid " @@ -1232,11 +1259,11 @@ msgstr "" "посетитель будет видеть при попытке скачать платный файл без произведения " "оплаты
Текст по умолчанию: Это платная загрузка! Пожалуйста оплатите ниже" -#: gourl.php:998 +#: gourl.php:1075 msgid "Additional Fields" msgstr "Дополнительные поля" -#: gourl.php:999 +#: gourl.php:1076 msgid "" "Pay-Per-Download: If box is checked, display on 'All Payments' statistics " "page two additional columns 'File Downloaded By User?' and 'File Downloaded " @@ -1247,40 +1274,40 @@ msgstr "" "файла» в таблице «Все платежи». Используйте это, если вы продаете файлы " "онлайн" -#: gourl.php:1002 +#: gourl.php:1079 msgid "Reverse Bitcoin Chart" msgstr "Обратный Bitcoin график" -#: gourl.php:1003 +#: gourl.php:1080 #, php-format msgid "Bitcoin Chart: Reverse the X axis of time" msgstr "Bitcoin график: обратное направление оси X (времени)" -#: gourl.php:1116 +#: gourl.php:1193 msgid "Invalid File ID, Please reload page" msgstr "Недопустимый File ID, пожалуйста перезагрузите страницу" -#: gourl.php:1121 +#: gourl.php:1198 msgid "Your File - cannot be empty" msgstr "Ваш файл - не может быть пустым" -#: gourl.php:1127 +#: gourl.php:1204 msgid "Featured Image - select image" msgstr "Изображение - выберите фото" -#: gourl.php:1130 +#: gourl.php:1207 msgid "Title - cannot be empty" msgstr "Название - поле не может быть пустым" -#: gourl.php:1131 +#: gourl.php:1208 msgid "Title - Max size 100 symbols" msgstr "Название - Макс. размер 100 символов" -#: gourl.php:1135 gourl.php:1933 gourl.php:2719 gourl.php:3732 +#: gourl.php:1212 gourl.php:2010 gourl.php:2796 gourl.php:3809 msgid "Price - cannot be empty" msgstr "Цена - поле не может быть пустым" -#: gourl.php:1136 gourl.php:1934 gourl.php:2720 gourl.php:3733 +#: gourl.php:1213 gourl.php:2011 gourl.php:2797 gourl.php:3810 msgid "" "Price - use price in USD or in Cryptocoins. You cannot place values in two " "boxes together" @@ -1288,12 +1315,12 @@ msgstr "" "Цена - используйте цену в USD или в криптовалюте. Вы не можете использовать " "две цены вместе" -#: gourl.php:1137 gourl.php:1935 gourl.php:2721 gourl.php:3734 +#: gourl.php:1214 gourl.php:2012 gourl.php:2798 gourl.php:3811 #, php-format msgid "Price - %s USD - invalid value. Min value: 0.01 USD" msgstr "Цена - %s USD - недопустимое значение. Минимальное значение: 0.01 USD" -#: gourl.php:1138 gourl.php:1936 gourl.php:2722 gourl.php:3735 +#: gourl.php:1215 gourl.php:2013 gourl.php:2799 gourl.php:3812 #, php-format msgid "" "Price - %s %s - invalid value. Min value: 0.0001 %s. Allow 4 digits max " @@ -1302,40 +1329,40 @@ msgstr "" "Цена - %s %s - недопустимое значение. Мин. значение: 0.0001 %s. Разрешены 4 " "цифры после плавающей точки" -#: gourl.php:1140 gourl.php:3737 +#: gourl.php:1217 gourl.php:3814 #, php-format msgid "Price label '%s' - invalid value" msgstr "Метка цена '%s' - недопустимое значение" -#: gourl.php:1142 gourl.php:3739 +#: gourl.php:1219 gourl.php:3816 msgid "Purchase Limit - invalid value" msgstr "Предел покупок - недопустимое значение" -#: gourl.php:1144 gourl.php:3741 +#: gourl.php:1221 gourl.php:3818 msgid "Field 'Expiry Period' - cannot be empty" msgstr "Поле «Срок действия» - не может быть пустым" -#: gourl.php:1145 gourl.php:1938 gourl.php:3742 +#: gourl.php:1222 gourl.php:2015 gourl.php:3819 msgid "Field 'Expiry Period' - invalid value" msgstr "Поле «Срок действия» - недопустимое значение" -#: gourl.php:1147 +#: gourl.php:1224 msgid "Store Visitor IDs - invalid value" msgstr "Хранить Посетителя ID - недопустимое значение" -#: gourl.php:1149 gourl.php:1940 gourl.php:2726 gourl.php:3744 +#: gourl.php:1226 gourl.php:2017 gourl.php:2803 gourl.php:3821 msgid "PaymentBox Language - invalid value" msgstr "PaymentBox язык - недопустимое значение" -#: gourl.php:1151 gourl.php:1942 gourl.php:2728 gourl.php:3746 +#: gourl.php:1228 gourl.php:2019 gourl.php:2805 gourl.php:3823 msgid "Field 'PaymentBox Coin' - cannot be empty" msgstr "Поле «PaymentBox монета» - не может быть пустым" -#: gourl.php:1152 gourl.php:1943 gourl.php:2729 gourl.php:3747 +#: gourl.php:1229 gourl.php:2020 gourl.php:2806 gourl.php:3824 msgid "Field 'PaymentBox Coin' - invalid value" msgstr "Поле «PaymentBox монета» - недопустимое значение" -#: gourl.php:1153 gourl.php:3748 +#: gourl.php:1230 gourl.php:3825 #, php-format msgid "" "Field 'PaymentBox Coin' - payments in %s not available. Please re-save record" @@ -1343,7 +1370,7 @@ msgstr "" "Поле «PaymentBox монета» - платежи в %s не доступны. Пожалуйста, повторно " "сохраните запись" -#: gourl.php:1157 gourl.php:1945 gourl.php:2731 gourl.php:3749 +#: gourl.php:1234 gourl.php:2022 gourl.php:2808 gourl.php:3826 #, php-format msgid "" "Field 'PaymentBox Coin' - please select '%s' because you have entered price " @@ -1352,58 +1379,58 @@ msgstr "" "Поле «PaymentBox монета» - Пожалуйста выберите «%s», потому что вы ввели " "цену в %s" -#: gourl.php:1162 +#: gourl.php:1239 msgid "Invalid Image Width. Allowed 1..2,000px" msgstr "Недопустимая ширина изображения. Допускается 1..2, 000px" -#: gourl.php:1255 gourl.php:3876 +#: gourl.php:1332 gourl.php:3953 msgid "Record has been saved successfully" msgstr "Запись успешно сохранена" -#: gourl.php:1262 +#: gourl.php:1339 msgid "Edit File" msgstr "Редактировать файл" -#: gourl.php:1262 gourl.php:1286 +#: gourl.php:1339 gourl.php:1363 msgid "New File" msgstr "Новый файл" -#: gourl.php:1270 gourl.php:2005 gourl.php:2812 gourl.php:3891 +#: gourl.php:1347 gourl.php:2082 gourl.php:2889 gourl.php:3968 #, php-format msgid "Preview Shortcode     %s" msgstr "Предпросмотр шорткод     %s" -#: gourl.php:1271 gourl.php:2006 gourl.php:2796 gourl.php:2813 gourl.php:3892 +#: gourl.php:1348 gourl.php:2083 gourl.php:2873 gourl.php:2890 gourl.php:3969 msgid "Close Preview" msgstr "Закрыть предпросмотр" -#: gourl.php:1276 gourl.php:1311 gourl.php:2014 gourl.php:2821 gourl.php:3934 -#: gourl.php:3971 +#: gourl.php:1353 gourl.php:1388 gourl.php:2091 gourl.php:2898 gourl.php:4011 +#: gourl.php:4048 msgid "Shortcode" msgstr "Шорткод" -#: gourl.php:1285 gourl.php:3943 +#: gourl.php:1362 gourl.php:4020 #, php-format msgid "Sold %d copies" msgstr "Продано %d копий" -#: gourl.php:1288 gourl.php:1560 +#: gourl.php:1365 gourl.php:1637 msgid "All Paid Files" msgstr "Все платные файлы" -#: gourl.php:1298 gourl.php:3596 gourl.php:3956 +#: gourl.php:1375 gourl.php:3673 gourl.php:4033 msgid "Save Record" msgstr "Сохранить запись" -#: gourl.php:1299 gourl.php:3957 +#: gourl.php:1376 gourl.php:4034 msgid "Show Preview" msgstr "Предпросмотр" -#: gourl.php:1308 +#: gourl.php:1385 msgid "File ID" msgstr "ID файла" -#: gourl.php:1312 gourl.php:3972 +#: gourl.php:1389 gourl.php:4049 #, php-format msgid "" "Just add this shortcode to any your page or " @@ -1413,41 +1440,41 @@ msgstr "" "страницу или пост (в html режиме) и окно крипто оплаты (payment box) будет " "отображаться" -#: gourl.php:1316 gourl.php:6617 gourl.php:6851 +#: gourl.php:1393 gourl.php:6695 gourl.php:6929 msgid "Title" msgstr "Заголовок" -#: gourl.php:1319 +#: gourl.php:1396 msgid "Title / Friendly name for the file. Visitors will see this title" msgstr "" "Название / дружественное имя файла. Посетители будут видеть это название" -#: gourl.php:1324 gourl.php:3984 +#: gourl.php:1401 gourl.php:4061 msgid "Active ?" msgstr "Активен ?" -#: gourl.php:1325 +#: gourl.php:1402 msgid "If box is not checked, visitors cannot pay you for this file" msgstr "" "Если флажок не установлен, посетители не могут платить вам за этот файл" -#: gourl.php:1329 +#: gourl.php:1406 msgid "Your File" msgstr "Ваш файл" -#: gourl.php:1331 +#: gourl.php:1408 msgid "Select pre-uploaded file" msgstr "Выберите заранее загруженный файл" -#: gourl.php:1349 +#: gourl.php:1426 msgid "Download" msgstr "Скачать" -#: gourl.php:1349 gourl.php:1836 +#: gourl.php:1426 gourl.php:1913 msgid "size" msgstr "размер" -#: gourl.php:1350 +#: gourl.php:1427 #, php-format msgid "" "If the file has already been uploaded to the server, you can select that " @@ -1458,7 +1485,7 @@ msgstr "" "списка (папка с файлами %s)
ИЛИ
загрузите новый файл " "ниже -" -#: gourl.php:1351 +#: gourl.php:1428 msgid "" "Please use simple file names on English. Click on the Choose File " "button. Locate the file that you want to use, left click on it and click on " @@ -1469,15 +1496,15 @@ msgstr "" "на кнопку Выбрать файл. Найдите файл, который вы хотите загрузить, щелкните " "левой кнопкой мыши на нем и нажмите на кнопку Открыть. Файл появится в поле" -#: gourl.php:1356 gourl.php:1837 gourl.php:2087 gourl.php:3989 +#: gourl.php:1433 gourl.php:1914 gourl.php:2164 gourl.php:4066 msgid "Price" msgstr "Цена" -#: gourl.php:1358 gourl.php:2089 gourl.php:2899 gourl.php:3991 +#: gourl.php:1435 gourl.php:2166 gourl.php:2976 gourl.php:4068 msgid "or" msgstr "или" -#: gourl.php:1363 gourl.php:2094 gourl.php:2904 gourl.php:3996 +#: gourl.php:1440 gourl.php:2171 gourl.php:2981 gourl.php:4073 #, php-format msgid "" "Please specify price in USD or in Cryptocoins. You cannot place prices in " @@ -1501,11 +1528,11 @@ msgstr "" "использовать Poloniex 'autosell' опцию " "(авто конвертация вашей криптовалюты в USD)." -#: gourl.php:1366 +#: gourl.php:1443 msgid "Show File Name/Price" msgstr "Отображать имя файла/цену" -#: gourl.php:1367 +#: gourl.php:1444 msgid "" "If box is checked, visitors will see approximate file price in USD and " "uploaded file name/size" @@ -1513,16 +1540,16 @@ msgstr "" "Если флажок установлен, посетители увидят приблизительную цену файла в usd и " "загруженное имя файла/размер" -#: gourl.php:1370 gourl.php:4000 gourl.php:6632 gourl.php:6862 +#: gourl.php:1447 gourl.php:4077 gourl.php:6710 gourl.php:6940 msgid "Purchase Limit" msgstr "Покупок лимит" -#: gourl.php:1371 gourl.php:1463 gourl.php:4001 gourl.php:4103 gourl.php:6583 -#: gourl.php:6826 +#: gourl.php:1448 gourl.php:1540 gourl.php:4078 gourl.php:4180 gourl.php:6661 +#: gourl.php:6904 msgid "copies" msgstr "копий" -#: gourl.php:1371 +#: gourl.php:1448 msgid "" "The maximum number of times a file may be purchased/downloaded. Leave blank " "or set to 0 for unlimited number of purchases/downloads" @@ -1530,11 +1557,11 @@ msgstr "" "Сколько максимум раз данный файл может быть куплен/загружен. Оставьте поле " "пустым или установите 0 для неограниченного количества покупок/загрузок" -#: gourl.php:1374 gourl.php:2097 gourl.php:4004 +#: gourl.php:1451 gourl.php:2174 gourl.php:4081 msgid "Expiry Period" msgstr "Срок действия" -#: gourl.php:1381 +#: gourl.php:1458 msgid "" "Period after which the payment becomes obsolete and new Cryptocoin Payment " "Box will be shown for this file (you can use it to take new payments from " @@ -1549,11 +1576,11 @@ msgstr "" "Хранить Посетителя ID: «Registered Users»; т.к. «Cookie/Session» не " "безопасно для длительного срока" -#: gourl.php:1385 gourl.php:6633 +#: gourl.php:1462 gourl.php:6711 msgid "Store Visitor IDs" msgstr "Хранить Посетителя ID" -#: gourl.php:1392 +#: gourl.php:1469 msgid "" "For Unregistered Your Website Visitors - Save auto-generated unique visitor " "ID in cookies, sessions or use the IP address to decide unique visitors " @@ -1577,35 +1604,35 @@ msgstr "" "идентификации пользователя). Гораздо лучше использовать 'Registered users' " "чем 'Cookie/Session/Ipaddress'" -#: gourl.php:1397 gourl.php:2120 gourl.php:2932 gourl.php:4015 +#: gourl.php:1474 gourl.php:2197 gourl.php:3009 gourl.php:4092 msgid "PaymentBox Language" msgstr "PaymentBox язык" -#: gourl.php:1404 gourl.php:2127 gourl.php:2939 gourl.php:4022 +#: gourl.php:1481 gourl.php:2204 gourl.php:3016 gourl.php:4099 msgid "Default Payment Box Localisation" msgstr "По умолчанию Payment Box локализация" -#: gourl.php:1409 gourl.php:2131 gourl.php:2943 gourl.php:4027 +#: gourl.php:1486 gourl.php:2208 gourl.php:3020 gourl.php:4104 msgid "PaymentBox Coin" msgstr "PaymentBox монета" -#: gourl.php:1416 gourl.php:2138 gourl.php:2950 gourl.php:4034 +#: gourl.php:1493 gourl.php:2215 gourl.php:3027 gourl.php:4111 msgid "Activated Payments :" msgstr "Активированные платежи :" -#: gourl.php:1416 gourl.php:2138 gourl.php:2950 gourl.php:4034 +#: gourl.php:1493 gourl.php:2215 gourl.php:3027 gourl.php:4111 msgid "- Please Setup -" msgstr "- Пожалуйста настройте -" -#: gourl.php:1417 gourl.php:2139 gourl.php:2951 gourl.php:4035 +#: gourl.php:1494 gourl.php:2216 gourl.php:3028 gourl.php:4112 msgid "Default Coin in Payment Box" msgstr "По умолчанию монета в Payment Box" -#: gourl.php:1422 gourl.php:2143 gourl.php:2954 gourl.php:4040 +#: gourl.php:1499 gourl.php:2220 gourl.php:3031 gourl.php:4117 msgid "Use Default Coin only:" msgstr "Использ. по умолчанию монету только:" -#: gourl.php:1423 +#: gourl.php:1500 msgid "" "If box is checked, payment box will accept payments in one default coin " "'PaymentBox Coin' for this file (no multiple coins). Please use price in USD " @@ -1616,27 +1643,27 @@ msgstr "" "несколько криптовалют). Пожалуйста, используйте Цену в USD, если вы хотите " "принимать несколько криптовалют" -#: gourl.php:1427 +#: gourl.php:1504 msgid "Description (Optional)" msgstr "Описание (необязательно)" -#: gourl.php:1430 +#: gourl.php:1507 msgid "Short File Description" msgstr "Краткое описание файла" -#: gourl.php:1435 gourl.php:6626 +#: gourl.php:1512 gourl.php:6704 msgid "Featured Image" msgstr "Изображение" -#: gourl.php:1449 +#: gourl.php:1526 msgid "OR" msgstr "ИЛИ" -#: gourl.php:1451 +#: gourl.php:1528 msgid "Custom Featured Image" msgstr "Произвольное изображение" -#: gourl.php:1452 +#: gourl.php:1529 msgid "" "This featured image represent your uploaded file above. Max sizes: 800px x " "600px, allowed images: JPG, GIF, PNG." @@ -1644,36 +1671,36 @@ msgstr "" "Это изображение представляет ваш загруженный файл выше. Макс размеры: 800px " "x 600px, Допускаются изображения: JPG, GIF, PNG." -#: gourl.php:1455 gourl.php:6627 +#: gourl.php:1532 gourl.php:6705 msgid "Image Width" msgstr "Ширина изображения" -#: gourl.php:1456 +#: gourl.php:1533 msgid "Your featured image width" msgstr "Ширина вашего изображения" -#: gourl.php:1462 gourl.php:1586 gourl.php:4102 gourl.php:4218 gourl.php:6622 -#: gourl.php:6854 +#: gourl.php:1539 gourl.php:1663 gourl.php:4179 gourl.php:4295 gourl.php:6700 +#: gourl.php:6932 msgid "Total Sold" msgstr "Всего продано" -#: gourl.php:1468 gourl.php:4108 +#: gourl.php:1545 gourl.php:4185 msgid "Latest Received Payment" msgstr "Последний полученный платеж" -#: gourl.php:1475 gourl.php:4115 +#: gourl.php:1552 gourl.php:4192 msgid "Record Updated" msgstr "Запись обновлена" -#: gourl.php:1480 gourl.php:4120 +#: gourl.php:1557 gourl.php:4197 msgid "Record Created" msgstr "Запись создана" -#: gourl.php:1484 gourl.php:2184 gourl.php:3024 gourl.php:4124 +#: gourl.php:1561 gourl.php:2261 gourl.php:3101 gourl.php:4201 msgid "Custom Actions" msgstr "Пользовательские действия" -#: gourl.php:1485 gourl.php:2185 gourl.php:3025 gourl.php:4125 +#: gourl.php:1562 gourl.php:2262 gourl.php:3102 gourl.php:4202 #, php-format msgid "" "Optional - add in file gourl_ipn.php code below. Read more " @@ -1682,15 +1709,15 @@ msgstr "" "Необязательно - добавить в файл gourl_ipn.php код ниже. Читать " "дальше »" -#: gourl.php:1560 gourl.php:5124 gourl.php:5125 +#: gourl.php:1637 gourl.php:5201 gourl.php:5202 msgid "Add New File" msgstr "Добавить файл" -#: gourl.php:1564 gourl.php:2023 gourl.php:2831 gourl.php:4196 +#: gourl.php:1641 gourl.php:2100 gourl.php:2908 gourl.php:4273 msgid "Hide Introduction" msgstr "Скрыть введение" -#: gourl.php:1567 +#: gourl.php:1644 #, php-format msgid "" "Easily Sell Files, Videos, Music, Photos, Software (digital downloads) on " @@ -1710,7 +1737,7 @@ msgstr "" "Любой может зарегистрироваться) и настройте изображение входа на сайт." -#: gourl.php:1568 +#: gourl.php:1645 #, php-format msgid "" "Create New Paid File Downloads and place new generated Новую платную загрузку файла и поместите новый " "сгенерированный шорткод на вашу страницу/пост. Всё!" -#: gourl.php:1569 +#: gourl.php:1646 #, php-format msgid "Read more" msgstr "Читать полностью" -#: gourl.php:1570 +#: gourl.php:1647 #, php-format msgid "" "Alternatively, you can use free Easy Digital Downloads " @@ -1735,95 +1762,95 @@ msgstr "" "Digital Downloads (цифровые продажи с кредитными картами/paypal) с нашим " "дополнением - EDD Биткоин/Альткоин шлюз" -#: gourl.php:1576 gourl.php:2019 gourl.php:2827 gourl.php:4208 +#: gourl.php:1653 gourl.php:2096 gourl.php:2904 gourl.php:4285 msgid "Show Introduction" msgstr "Показать введение" -#: gourl.php:1583 gourl.php:3533 gourl.php:4215 gourl.php:4596 +#: gourl.php:1660 gourl.php:3610 gourl.php:4292 gourl.php:4673 msgid "Found" msgstr "Найдено" -#: gourl.php:1583 +#: gourl.php:1660 msgid "Total Files" msgstr "Всего файлов" -#: gourl.php:1583 gourl.php:1584 gourl.php:1585 gourl.php:1586 +#: gourl.php:1660 gourl.php:1661 gourl.php:1662 gourl.php:1663 msgid "files" msgstr "файлов" -#: gourl.php:1584 gourl.php:4216 +#: gourl.php:1661 gourl.php:4293 msgid "Active" msgstr "Активно" -#: gourl.php:1585 gourl.php:4217 +#: gourl.php:1662 gourl.php:4294 msgid "Inactive" msgstr "Неактивно" -#: gourl.php:1587 gourl.php:3537 gourl.php:4219 gourl.php:4601 +#: gourl.php:1664 gourl.php:3614 gourl.php:4296 gourl.php:4678 msgid "Reset Search Filters" msgstr "Сбросить фильтры поиска" -#: gourl.php:1616 gourl.php:4249 +#: gourl.php:1693 gourl.php:4326 #, php-format msgid "Invalid format. Use %s" msgstr "Недопустимый формат. Используйте %s" -#: gourl.php:1631 +#: gourl.php:1708 #, php-format msgid "Invalid file id '%s' -" msgstr "Недопустимый файл id '%s' -" -#: gourl.php:1677 gourl.php:1678 +#: gourl.php:1754 gourl.php:1755 msgid "Please register or login to download this file" msgstr "Пожалуйста, зарегистрируйтесь или войдите, чтобы скачать этот файл" -#: gourl.php:1682 +#: gourl.php:1759 msgid "File does not exist on the server" msgstr "Файл не существует на сервере" -#: gourl.php:1683 +#: gourl.php:1760 msgid "Error! File does not exist on the server !" msgstr "Ошибка! Файл не существует на сервере!" -#: gourl.php:1700 gourl.php:2270 gourl.php:2460 gourl.php:3250 gourl.php:4326 +#: gourl.php:1777 gourl.php:2347 gourl.php:2537 gourl.php:3327 gourl.php:4403 #, php-format msgid "Invalid %s Public Key %s -" msgstr "Неверный %s Public Key %s -" -#: gourl.php:1701 gourl.php:2271 gourl.php:2461 gourl.php:3251 gourl.php:4327 +#: gourl.php:1778 gourl.php:2348 gourl.php:2538 gourl.php:3328 gourl.php:4404 #, php-format msgid "Invalid %s Private Key -" msgstr "Неверный %s Private Key -" -#: gourl.php:1713 gourl.php:2283 gourl.php:2473 gourl.php:3263 gourl.php:4339 +#: gourl.php:1790 gourl.php:2360 gourl.php:2550 gourl.php:3340 gourl.php:4416 msgid "No Available Payments -" msgstr "Нет доступных платежей -" -#: gourl.php:1783 gourl.php:4394 +#: gourl.php:1860 gourl.php:4471 msgid "Sold Out" msgstr "Продано" -#: gourl.php:1789 +#: gourl.php:1866 msgid "Cryptcoin Payments Disabled for this File" msgstr "Крипто платежи отключены для этого файла" -#: gourl.php:1836 +#: gourl.php:1913 msgid "File" msgstr "Файл" -#: gourl.php:1844 gourl.php:6672 +#: gourl.php:1921 gourl.php:6750 msgid "Download File" msgstr "Скачать файл" -#: gourl.php:1851 gourl.php:2569 gourl.php:3380 gourl.php:4477 gourl.php:5558 +#: gourl.php:1928 gourl.php:2646 gourl.php:3457 gourl.php:4554 gourl.php:5635 msgid "Language" msgstr "Язык" -#: gourl.php:1939 gourl.php:2725 +#: gourl.php:2016 gourl.php:2802 msgid "Lock Page Level - invalid value" msgstr "Уровень блокировки страниц - недопустимое значение" -#: gourl.php:1944 gourl.php:2730 +#: gourl.php:2021 gourl.php:2807 #, php-format msgid "" "Field 'PaymentBox Coin' - payments in %s not available. Please click on " @@ -1832,7 +1859,7 @@ msgstr "" "Поле «PaymentBox монета» - платежи в %s не доступны. Пожалуйста, нажмите на " "кнопку «Сохранить настройки»" -#: gourl.php:1947 gourl.php:2733 +#: gourl.php:2024 gourl.php:2810 #, php-format msgid "" "Field 'Use Default Coin Only' - check it because you have entered price in " @@ -1842,16 +1869,16 @@ msgstr "" "в %s. Пожалуйста, используйте цену в USD, если вы хотите принимать несколько " "криптовалют" -#: gourl.php:1988 +#: gourl.php:2065 msgid "Pay-Per-View Settings have been updated successfully" msgstr "Pay-Per-View настройки были обновлены успешно" -#: gourl.php:2030 +#: gourl.php:2107 #, php-format msgid "Pay-Per-View Summary - Example" msgstr "Pay-Per-View введение - Пример" -#: gourl.php:2032 +#: gourl.php:2109 msgid "" "Your unregistered anonymous website visitors will need to send you a set " "amount of cryptocoins for access to your website's specific pages & videos " @@ -1866,7 +1893,7 @@ msgstr "" "странице вашим посетителям, когда срок платежа истечет, новое окно оплаты " "появится, уведомления о получении оплаты на ваш email, и т.д." -#: gourl.php:2034 +#: gourl.php:2111 #, php-format msgid "" "Pay-Per-View supports custom actions (for example, show ads " @@ -1876,7 +1903,7 @@ msgstr "" "(например, показ объявлений для бесплатных пользователей на всех страницах " "сайта, см. код)" -#: gourl.php:2035 +#: gourl.php:2112 #, php-format msgid "" "Read how it works and differences between Pay-Per-View and " @@ -1885,11 +1912,11 @@ msgstr "" "Читайте как это работает и различия между Pay-Per-View и " "Pay-Per-Membership." -#: gourl.php:2037 +#: gourl.php:2114 msgid "Pay-Per-View Pages -" msgstr "Pay-Per-View страницы -" -#: gourl.php:2039 gourl.php:2846 +#: gourl.php:2116 gourl.php:2923 #, php-format msgid "" "You can customize lock-image / preview video for each page or not use " @@ -1899,13 +1926,13 @@ msgstr "" "страницы или не использовать их вообще.
Каталог изображений по умолчанию: " "%s или используйте путь к изображению %s" -#: gourl.php:2041 gourl.php:2848 +#: gourl.php:2118 gourl.php:2925 msgid "Shortcodes with preview images/videos for premium locked pages:" msgstr "" "Шорткоды с предпросмотром изображений/видео для премиум заблокированных " "страниц:" -#: gourl.php:2044 gourl.php:2851 +#: gourl.php:2121 gourl.php:2928 #, php-format msgid "" "Place one of that tags anywhere in the " @@ -1916,36 +1943,36 @@ msgstr "" "в текст на вашу премиум страницу или используйте собственный " "код" -#: gourl.php:2046 gourl.php:2853 +#: gourl.php:2123 gourl.php:2930 msgid "Ready to use shortcodes:" msgstr "Готовые к использованию шорткоды:" -#: gourl.php:2048 +#: gourl.php:2125 msgid "locked page with default preview image" msgstr "заблокированная страница с изображением предпросмотра по умолчанию" -#: gourl.php:2049 gourl.php:2856 +#: gourl.php:2126 gourl.php:2933 msgid "locked page with default preview video" msgstr "заблокированная страница с видео предпросмотром по умолчанию" -#: gourl.php:2050 gourl.php:2857 +#: gourl.php:2127 gourl.php:2934 #, php-format msgid "locked page with any custom preview image stored in directory %s" msgstr "" "заблокированная страница с любым пользовательским изображением, хранящимся в " "каталоге %s" -#: gourl.php:2051 gourl.php:2858 +#: gourl.php:2128 gourl.php:2935 msgid "locked page with custom image, image width=400px height=200px" msgstr "" "заблокированная страница с пользовательским изображением, ширина " "изображения=400px высота=200px" -#: gourl.php:2052 gourl.php:2859 +#: gourl.php:2129 gourl.php:2936 msgid "locked page with any custom image" msgstr "заблокированная страница с любым пользовательским изображением" -#: gourl.php:2053 +#: gourl.php:2130 msgid "" "locked page with any custom video preview, etc (iframe). Iframe width=800px, " "height=440px" @@ -1953,24 +1980,24 @@ msgstr "" "заблокированная страница с любым пользовательским видео предпросмотром " "(iframe), Iframe ширина=400px высота=200px" -#: gourl.php:2071 +#: gourl.php:2148 msgid "Paid Access to Premium Webages for Unregistered Visitors" msgstr "" "Платный доступ к премиум страницам для незарегистрированных посетителей" -#: gourl.php:2078 gourl.php:2888 +#: gourl.php:2155 gourl.php:2965 msgid "Show Preview 1" msgstr "Предпросмотр 1" -#: gourl.php:2079 gourl.php:2889 +#: gourl.php:2156 gourl.php:2966 msgid "Show Preview 2" msgstr "Предпросмотр 2" -#: gourl.php:2080 gourl.php:2890 +#: gourl.php:2157 gourl.php:2967 msgid "Video Preview 3" msgstr "Предпросмотр видео 3" -#: gourl.php:2104 +#: gourl.php:2181 #, php-format msgid "" "Period after which the payment becomes obsolete and new Cryptocoin Payment " @@ -1989,11 +2016,11 @@ msgstr "" "Если вам нужно больше, пожалуйста, используйте pay-per-" "membership" -#: gourl.php:2108 gourl.php:2918 +#: gourl.php:2185 gourl.php:2995 msgid "Lock Page Level" msgstr "Уровень блокировки страницы" -#: gourl.php:2115 +#: gourl.php:2192 #, php-format msgid "" "Select user access level who will see lock premium page/blog and need to " @@ -2011,7 +2038,7 @@ msgstr "" "Любой может зарегистрироваться) и настройка изображение входа на сайт" -#: gourl.php:2144 gourl.php:2955 gourl.php:4041 +#: gourl.php:2221 gourl.php:3032 gourl.php:4118 msgid "" "If box is checked, payment box will accept payments in one default coin " "'PaymentBox Coin' (no multiple coins)" @@ -2019,11 +2046,11 @@ msgstr "" "Если флажок установлен, оплата будет приниматься в одной криптовалюте " "'PaymentBox монета' (не несколько монет)" -#: gourl.php:2147 gourl.php:2958 +#: gourl.php:2224 gourl.php:3035 msgid "PaymentBox Style:" msgstr "PaymentBox стиль:" -#: gourl.php:2148 gourl.php:2959 +#: gourl.php:2225 gourl.php:3036 #, php-format msgid "" "Payment Box sizes and border с тенями вы можете изменить здесь " "»" -#: gourl.php:2151 gourl.php:2988 +#: gourl.php:2228 gourl.php:3065 msgid "Text - Above Payment Box" msgstr "Текст - выше Payment Box" -#: gourl.php:2154 gourl.php:2991 +#: gourl.php:2231 gourl.php:3068 msgid "" "Your Custom Text and Image above Payment Box on Locked premium pages " "(original pages content will be hidden)" @@ -2046,11 +2073,11 @@ msgstr "" "Ваш пользовательский текст и изображения над окном оплаты (Payment Box) на " "заблокированных страницах (оригинальное содержимое страниц будет скрыто)" -#: gourl.php:2158 gourl.php:2995 +#: gourl.php:2235 gourl.php:3072 msgid "Text - Below Payment Box" msgstr "Текст - ниже Payment Box" -#: gourl.php:2161 gourl.php:2998 +#: gourl.php:2238 gourl.php:3075 msgid "" "Your Custom Text and Image below Payment Box on Locked premium pages " "(original pages content will be hidden)" @@ -2058,11 +2085,11 @@ msgstr "" "Ваш пользовательский текст и изображения под окном оплаты (Payment Box) на " "заблокированных страницах (оригинальное содержимое страниц будет скрыто)" -#: gourl.php:2164 gourl.php:3004 +#: gourl.php:2241 gourl.php:3081 msgid "Hide Page Title ?" msgstr "Скрыть заголовок страницы ?" -#: gourl.php:2165 gourl.php:3005 +#: gourl.php:2242 gourl.php:3082 #, php-format msgid "" "If box is checked, unpaid users will not see current premium page title (скриншот)" -#: gourl.php:2168 gourl.php:3008 +#: gourl.php:2245 gourl.php:3085 msgid "Hide Menu Titles ?" msgstr "Скрыть названия в меню ?" -#: gourl.php:2169 gourl.php:3009 +#: gourl.php:2246 gourl.php:3086 #, php-format msgid "" "If box is checked, unpaid users will not see any link titles on premium " @@ -2084,11 +2111,11 @@ msgstr "" "Если флажок установлен, бесплатные пользователи не будут видеть названий в " "ссылках на премиум страницах (скриншот)" -#: gourl.php:2172 gourl.php:3012 +#: gourl.php:2249 gourl.php:3089 msgid "Hide Comments Authors ?" msgstr "Скрыть авторов комментариев ?" -#: gourl.php:2173 gourl.php:3013 +#: gourl.php:2250 gourl.php:3090 #, php-format msgid "" "If box is checked, unpaid users will not see authors of comments on bottom " @@ -2097,11 +2124,11 @@ msgstr "" "Если флажок установлен, бесплатные пользователи не будут видеть авторов " "комментариев в нижней части премиум страниц (скриншот)" -#: gourl.php:2176 gourl.php:3016 +#: gourl.php:2253 gourl.php:3093 msgid "Hide Comments Body ?" msgstr "Скрыть текст в комментариях ?" -#: gourl.php:2177 gourl.php:3017 +#: gourl.php:2254 gourl.php:3094 #, php-format msgid "" "If box is checked, unpaid users will not see comments body on bottom of " @@ -2110,11 +2137,11 @@ msgstr "" "Если флажок установлен, бесплатные пользователи не будут видеть текста в " "комментариях в нижней части премиум страниц (скриншот)" -#: gourl.php:2180 gourl.php:3020 +#: gourl.php:2257 gourl.php:3097 msgid "Disable Comments Reply ?" msgstr "Отключить ответы в комментариях ?" -#: gourl.php:2181 gourl.php:3021 +#: gourl.php:2258 gourl.php:3098 #, php-format msgid "" "If box is checked, unpaid users cannot reply/add comments on bottom of " @@ -2123,20 +2150,20 @@ msgstr "" "Если флажок установлен, бесплатные пользователи не смогут ответить/добавить " "комментарии в нижней части премиум страниц (скриншот)" -#: gourl.php:2556 gourl.php:3364 +#: gourl.php:2633 gourl.php:3441 msgid "Page Content Locked! Please pay below" msgstr "Содержимое страницы заблокировано! Пожалуйста оплатите ниже" -#: gourl.php:2724 +#: gourl.php:2801 msgid "Membership Period - invalid value" msgstr "Период Членство - недопустимое значение" -#: gourl.php:2780 +#: gourl.php:2857 msgid "" "Pay-Per-Membership Settings have been updated successfully" msgstr "Pay-Per-Membership настройки были обновлены успешно" -#: gourl.php:2795 +#: gourl.php:2872 msgid "" "Unregistered visitors / non-logged users will see on your premium pages - " "login form with custom text" @@ -2145,7 +2172,7 @@ msgstr "" "будут видеть на ваших премиум страницах форму входа на сайт с произвольным " "текстом" -#: gourl.php:2838 +#: gourl.php:2915 #, php-format msgid "" "Pay-Per-Membership - Your registered website users will need " @@ -2163,7 +2190,7 @@ msgstr "" "плагин использует зарегистрированные userID а не cookies. Вам нужно иметь " "регистрацию на сайте включённой." -#: gourl.php:2840 +#: gourl.php:2917 #, php-format msgid "" "Pay-Per-Membership supports custom actions (for " @@ -2181,7 +2208,7 @@ msgstr "" "вашем bbPress как премиум и легко монетизировать их с биткоинами/" "альткоинами.   Более подробно" -#: gourl.php:2842 +#: gourl.php:2919 #, php-format msgid "" "Pay-Per-Membership supports ONE paid membership level for website.
For " @@ -2202,11 +2229,11 @@ msgstr "" "шорткоды (текущая страница). Пожалуйста, используйте одну из этих систем (не " "вместе) на вашем сайте, т.к. эти различные membership системы не совместимы." -#: gourl.php:2844 +#: gourl.php:2921 msgid "Pay-Per-Membership Premium Pages -" msgstr "Pay-Per-Membership премиум страницы -" -#: gourl.php:2855 +#: gourl.php:2932 msgid "" "locked premium page with default preview image; visible for unpaid logged-in " "users" @@ -2214,7 +2241,7 @@ msgstr "" "заблокированная премиум страница с изображением по умолчанию; показывается " "бесплатным пользователям, вошедшим на сайт" -#: gourl.php:2860 +#: gourl.php:2937 msgid "" "locked page with any custom video preview, etc (iframe). Iframe width=750px, " "height=410px" @@ -2222,35 +2249,35 @@ msgstr "" "заблокированная страница с любым видео предпросмотром и т.д. (iframe). " "Iframe ширина=750px, высота=410px" -#: gourl.php:2877 gourl.php:3524 gourl.php:3586 +#: gourl.php:2954 gourl.php:3601 gourl.php:3663 msgid "All Premium Users" msgstr "Все платные/премиум пользователи" -#: gourl.php:2880 +#: gourl.php:2957 msgid "Paid Access to Premium Pages for Registered Users" msgstr "" "Платный доступ к премиум страницам для зарегистрированных пользователей" -#: gourl.php:2887 +#: gourl.php:2964 msgid "Screen for non-logged users" msgstr "Экран для non-logged пользователей" -#: gourl.php:2897 +#: gourl.php:2974 msgid "Membership Price" msgstr "Membership Цена" -#: gourl.php:2907 +#: gourl.php:2984 msgid "Membership Period" msgstr "Membership период" -#: gourl.php:2914 +#: gourl.php:2991 msgid "" "Period after which the payment becomes obsolete and new Cryptocoin Payment " "Box will be shown." msgstr "" "Период, после которого оплата устаревает и новое окно оплаты будет показано." -#: gourl.php:2925 +#: gourl.php:3002 #, php-format msgid "" "Select user access level who will see lock premium page/blog and need to " @@ -2266,11 +2293,11 @@ msgstr "" "регистрации - активируйте регистрацию на сайте (Общие настройки » Членство - " "Любой может зарегистрироваться)" -#: gourl.php:2928 +#: gourl.php:3005 msgid "Add to User Profile" msgstr "Добавить в профиль пользователя" -#: gourl.php:2929 +#: gourl.php:3006 #, php-format msgid "" "If box is checked, users will see own membership status on user profile page " @@ -2279,13 +2306,13 @@ msgstr "" "Если флажок установлен, пользователи будут видеть собственный membership " "статус на странице профиля пользователя (profile.php)" -#: gourl.php:2964 +#: gourl.php:3041 msgid "A. Unregistered Users will see Login Form with custom text/images -" msgstr "" "А. Незарегистрированные посетители будут видеть форму входа на сайт с " "произвольным текстом/изображением -" -#: gourl.php:2965 +#: gourl.php:3042 msgid "" "You can separate the content your logged-in users see from what your " "unregistered users see; things like a log-in form + custom text A for " @@ -2298,7 +2325,7 @@ msgstr "" "box) + другой произвольный текст B для бесплатных пользователей вошедших на " "сайт." -#: gourl.php:2966 +#: gourl.php:3043 #, php-format msgid "" "IMPORTANT: Please check that Website Registration is enabled (option " @@ -2307,11 +2334,11 @@ msgstr "" "Важно: Проверьте, что регистрация включена на сайта (Членство - Любой может зарегистрироваться)" -#: gourl.php:2970 +#: gourl.php:3047 msgid "Text - Above Login Form" msgstr "Текст - выше формы входа" -#: gourl.php:2973 +#: gourl.php:3050 msgid "" "Your Custom Text and Image For Unregistered Users (original pages content " "will be hidden). This text will publish Above Login Form" @@ -2320,11 +2347,11 @@ msgstr "" "пользователей (оригинальное содержание страниц будет скрыто). Этот текст " "будет публиковаться выше формы входа на сайт" -#: gourl.php:2977 +#: gourl.php:3054 msgid "Text - Below Login Form" msgstr "Текст - ниже формы входа" -#: gourl.php:2980 +#: gourl.php:3057 msgid "" "Your Custom Text and Image For Unregistered Users (original pages content " "will be hidden). This text will publish Below Login Form" @@ -2333,25 +2360,25 @@ msgstr "" "пользователей (оригинальное содержание страниц будет скрыто). Этот текст " "будет публиковаться под формой входа на сайт" -#: gourl.php:2984 +#: gourl.php:3061 msgid "B. Unpaid logged-in users will see payment box with custom text -" msgstr "" "B. Бесплатные пользователи, вошедшие на сайт, будут видеть окно оплаты с " "произвольным текстом -" -#: gourl.php:3001 +#: gourl.php:3078 msgid "General Content Restriction" msgstr "Общие настройки ограничения" -#: gourl.php:3350 +#: gourl.php:3427 msgid "Thank you." msgstr "Спасибо!" -#: gourl.php:3350 +#: gourl.php:3427 msgid "Your Premium membership is active." msgstr "Ваше премиум членство активировано." -#: gourl.php:3370 +#: gourl.php:3447 #, php-format msgid "" "ADMIN NOTE: Your test payment received successfully.
Please Пожалуйста отключите ваш тест членство и вы увидите " "окно оплаты снова" -#: gourl.php:3524 +#: gourl.php:3601 msgid "Manually Add New User" msgstr "Вручную добавить нового пользователя" -#: gourl.php:3524 +#: gourl.php:3601 msgid "Options" msgstr "Параметры" -#: gourl.php:3533 +#: gourl.php:3610 msgid "Total" msgstr "Всего" -#: gourl.php:3534 +#: gourl.php:3611 msgid "Active Premium Users" msgstr "Активных премиум пользователей" -#: gourl.php:3534 gourl.php:3535 gourl.php:3536 +#: gourl.php:3611 gourl.php:3612 gourl.php:3613 msgid "users" msgstr "пользователей" -#: gourl.php:3535 +#: gourl.php:3612 msgid "Manually Added" msgstr "Добавленных вручную" -#: gourl.php:3536 +#: gourl.php:3613 msgid "Manually Disabled" msgstr "Заблокированных вручную" -#: gourl.php:3543 +#: gourl.php:3620 msgid "Table have been updated successfully" msgstr "Таблица была обновлена успешно" -#: gourl.php:3574 +#: gourl.php:3651 msgid "Edit Premium User Membership" msgstr "Редактировать пользователя премиум членство" -#: gourl.php:3574 +#: gourl.php:3651 msgid "New User Membership" msgstr "Новое членство для пользователя" -#: gourl.php:3576 +#: gourl.php:3653 msgid "" "Create Premium Membership manually if a user has sent the wrong amount of " "payment - therefore plugin cannot process payment and cannot create user " @@ -2411,23 +2438,23 @@ msgstr "" "неправильный платеж - следовательно плагин не может обработать платеж и не " "может создать премиум членство для пользователя в автоматическом режиме" -#: gourl.php:3589 +#: gourl.php:3666 msgid "Manually create Premium Membership" msgstr "Вручную создать Премиум членство" -#: gourl.php:3597 +#: gourl.php:3674 msgid "New Membership" msgstr "Новое членство" -#: gourl.php:3603 gourl.php:7329 +#: gourl.php:3680 gourl.php:7407 msgid "User" msgstr "Пользователь" -#: gourl.php:3627 +#: gourl.php:3704 msgid "Select User" msgstr "Выбрать пользователя" -#: gourl.php:3642 +#: gourl.php:3719 #, php-format msgid "" "Select User.   Current lock pages level: %s." @@ -2438,182 +2465,182 @@ msgstr "" "%s.
Редакторы сайта / администраторы будут иметь все время полный " "доступ к премиум страницам и видеть оригинальное содержание страниц." -#: gourl.php:3645 +#: gourl.php:3722 msgid "Premium Start Date" msgstr "Дата начала членства" -#: gourl.php:3647 +#: gourl.php:3724 msgid "Premium Membership Start Date. Format: dd/mm/yyyy" msgstr "Дата начала премиум членства. Формат: дд/мм/гггг" -#: gourl.php:3650 +#: gourl.php:3727 msgid "Premium End Date" msgstr "Дата окончания членства" -#: gourl.php:3652 +#: gourl.php:3729 msgid "Premium Membership End Date. Format: dd/mm/yyyy" msgstr "Дата окончания премиум членства. Формат: дд/мм/гггг" -#: gourl.php:3676 +#: gourl.php:3753 msgid "User - cannot be empty" msgstr "Пользователь - не может быть пустым" -#: gourl.php:3677 +#: gourl.php:3754 msgid "Start Date - cannot be empty" msgstr "Дата начала членства - не может быть пустым" -#: gourl.php:3679 +#: gourl.php:3756 msgid "End Date - cannot be empty" msgstr "Дата окончания членства - не может быть пустым" -#: gourl.php:3680 gourl.php:3681 +#: gourl.php:3757 gourl.php:3758 msgid "End Date - invalid value" msgstr "Дата окончания членства - недопустимое значение" -#: gourl.php:3725 +#: gourl.php:3802 msgid "Invalid Product ID, Please reload page" msgstr "Недопустимый Product ID, пожалуйста перезагрузите страницу" -#: gourl.php:3727 +#: gourl.php:3804 msgid "Product Title - cannot be empty" msgstr "Название продукта - не может быть пустым" -#: gourl.php:3728 +#: gourl.php:3805 msgid "Product Title - Max size 100 symbols" msgstr "Название продукта - макс. размер 100 символов" -#: gourl.php:3753 +#: gourl.php:3830 msgid "Email to Buyer: From Email - cannot be empty" msgstr "Email покупателю: с Email - не может быть пустым" -#: gourl.php:3754 +#: gourl.php:3831 msgid "Purchase Email Subject - cannot be empty" msgstr "Purchase Email тема - не может быть пустым" -#: gourl.php:3755 +#: gourl.php:3832 msgid "Purchase Email Body - cannot be empty" msgstr "Purchase Email текст - не может быть пустым" -#: gourl.php:3760 +#: gourl.php:3837 msgid "Sale Notification From - cannot be empty" msgstr "Sale Notification From - не может быть пустым" -#: gourl.php:3761 +#: gourl.php:3838 msgid "Sale Notification Subject - cannot be empty" msgstr "Sale Notification тема - не может быть пустым" -#: gourl.php:3762 +#: gourl.php:3839 msgid "Sale Notification - cannot be empty" msgstr "Sale Notification - не может быть пустым" -#: gourl.php:3763 +#: gourl.php:3840 msgid "Sale Notification To - cannot be empty" msgstr "Sale Notification To - не может быть пустым" -#: gourl.php:3766 +#: gourl.php:3843 #, php-format msgid "Email to Buyer: From Email - %s - invalid email format" msgstr "Email покупателю: с Email - %s - неверный формат" -#: gourl.php:3767 +#: gourl.php:3844 #, php-format msgid "Sale Notification From - %s - invalid email format" msgstr "Sale Notification From - %s - неверный email формат" -#: gourl.php:3770 +#: gourl.php:3847 #, php-format msgid "Sale Notification To - %s - invalid email format" msgstr "Sale Notification To - %s - неверный email формат" -#: gourl.php:3883 gourl.php:3949 +#: gourl.php:3960 gourl.php:4026 msgid "Edit Product" msgstr "Редактировать продукт" -#: gourl.php:3883 +#: gourl.php:3960 msgid "New Product" msgstr "Новый продукт" -#: gourl.php:3891 +#: gourl.php:3968 msgid "Emails" msgstr "Emails" -#: gourl.php:3902 gourl.php:4435 +#: gourl.php:3979 gourl.php:4512 msgid "Used template tags for preview:" msgstr "Используемые шорткоды в предварительном просмотре:" -#: gourl.php:3908 +#: gourl.php:3985 msgid "Email to Buyer - Purchase Receipt" msgstr "Email для покупателя - Подтверждение покупки" -#: gourl.php:3908 gourl.php:3921 +#: gourl.php:3985 gourl.php:3998 msgid "Activated" msgstr "Активирован" -#: gourl.php:3908 gourl.php:3921 +#: gourl.php:3985 gourl.php:3998 msgid "Not Active" msgstr "Неактивный" -#: gourl.php:3910 gourl.php:3923 +#: gourl.php:3987 gourl.php:4000 msgid "From:" msgstr "От:" -#: gourl.php:3911 gourl.php:3924 +#: gourl.php:3988 gourl.php:4001 msgid "To:" msgstr "Куда:" -#: gourl.php:3911 +#: gourl.php:3988 msgid "- user registered email -" msgstr "- пользователя зарегистрированный email -" -#: gourl.php:3912 gourl.php:3925 +#: gourl.php:3989 gourl.php:4002 msgid "Subject:" msgstr "Тема:" -#: gourl.php:3913 gourl.php:3926 +#: gourl.php:3990 gourl.php:4003 msgid "Body:" msgstr "Текст письма:" -#: gourl.php:3921 +#: gourl.php:3998 msgid "Email to Seller/Admin - Sale Notification" msgstr "Email для продавца/админа - Подтверждение продажи" -#: gourl.php:3944 +#: gourl.php:4021 msgid "New product" msgstr "Новый продукт" -#: gourl.php:3946 gourl.php:4192 +#: gourl.php:4023 gourl.php:4269 msgid "All Paid Products" msgstr "Все платные продукты" -#: gourl.php:3949 +#: gourl.php:4026 msgid "Create New Product" msgstr "Создать продукт" -#: gourl.php:3958 +#: gourl.php:4035 msgid "Preview - Paid" msgstr "Предпросмотр - оплачен" -#: gourl.php:3959 +#: gourl.php:4036 msgid "Preview - Emails" msgstr "Предпросмотр - emails" -#: gourl.php:3968 +#: gourl.php:4045 msgid "Product ID" msgstr "Продукт ID" -#: gourl.php:3976 +#: gourl.php:4053 msgid "Product Title" msgstr "Название продукта" -#: gourl.php:3979 +#: gourl.php:4056 msgid "Title for the product. Users will see this title" msgstr "Название продукта. Пользователи будут видеть это название" -#: gourl.php:3985 +#: gourl.php:4062 msgid "If box is not checked, visitors cannot pay you for this product" msgstr "Если флажок не установлен, посетители не смогут оплатить этот продукт" -#: gourl.php:4001 +#: gourl.php:4078 msgid "" "The maximum number of times a product may be purchased. Leave blank or set " "to 0 for unlimited number of product purchases" @@ -2621,7 +2648,7 @@ msgstr "" "Максимальное количество раз продукт может быть приобретен. Оставьте пустым " "или равным 0 для неограниченного количества продаж" -#: gourl.php:4011 +#: gourl.php:4088 #, php-format msgid "" "Period after which the payment becomes obsolete and new Payment Box will be " @@ -2636,11 +2663,11 @@ msgstr "" "повторных покупок с корзиной (shopping cart), вы также можете использовать " "WooCommerce с GoUrl WooCommerce аддон" -#: gourl.php:4045 +#: gourl.php:4122 msgid "A. Product Description (Unpaid yet)" msgstr "A. Описание продукта (неоплачен ещё)" -#: gourl.php:4048 +#: gourl.php:4125 msgid "" "Product Description. Users will see this product description when no payment " "has been received yet" @@ -2648,11 +2675,11 @@ msgstr "" "Описание продукта. Пользователи будут видеть это описание продукта, когда " "оплата не была получена ещё" -#: gourl.php:4051 +#: gourl.php:4128 msgid "B. Product Description (Paid already)" msgstr "A. Описание продукта (оплачен уже)" -#: gourl.php:4054 +#: gourl.php:4131 #, php-format msgid "" "Users will see this product description when payment has been successfully " @@ -2663,11 +2690,11 @@ msgstr "" "успешно. Если оставить поле пустым, оно будет отображать содержимое из поля " "«A. Описание продукта - неоплачен»
Доступные теги в описании: %s" -#: gourl.php:4058 +#: gourl.php:4135 msgid "Email to Buyer ?" msgstr "Email для покупателя ?" -#: gourl.php:4059 +#: gourl.php:4136 msgid "" "If box is checked, purchase receipt email will be sent to Buyer on user " "registered email" @@ -2675,31 +2702,31 @@ msgstr "" "Если флажок установлен, подтверждение покупки email (purchase receipt) будет " "отправлен покупателю на его зарегистрированный email" -#: gourl.php:4062 +#: gourl.php:4139 msgid "Purchase Email - From" msgstr "Purchase Email - от кого" -#: gourl.php:4064 +#: gourl.php:4141 msgid "" "Email to Buyer: This will act as the 'from' and 'reply-to' address in email" msgstr "" "Email для покупателя: это будет использоваться как «От кого» и «ответить» " "адрес в электронной почте" -#: gourl.php:4067 +#: gourl.php:4144 msgid "Purchase Email - Subject" msgstr "Purchase Email - тема" -#: gourl.php:4069 +#: gourl.php:4146 msgid "Email to Buyer: Enter the subject line for the purchase receipt email" msgstr "" "Email для покупателя: введите тему для email кот. будет послан покупателю" -#: gourl.php:4072 +#: gourl.php:4149 msgid "Purchase Email - Body" msgstr "Purchase Email - текст" -#: gourl.php:4073 +#: gourl.php:4150 #, php-format msgid "" "Email to Buyer: Enter email body that is sent to users after completing a " @@ -2709,33 +2736,33 @@ msgstr "" "пользователям, после совершения успешной покупки. HTML не разрешается." "
Доступные теги: %s" -#: gourl.php:4076 +#: gourl.php:4153 msgid "Email to Seller/Admin ?" msgstr "Email для продавца/админа" -#: gourl.php:4077 +#: gourl.php:4154 msgid "" "If box is checked, new sale notification email will be sent to Seller/Admin" msgstr "" "Если флажок установлен, email уведомление о новой продаже будет " "направляться продавцу/админу" -#: gourl.php:4080 +#: gourl.php:4157 msgid "Sale Notification - From" msgstr "Sale Notification - от кого" -#: gourl.php:4082 +#: gourl.php:4159 msgid "" "Email to Seller: This will act as the 'from' and 'reply-to' email address" msgstr "" "Email для продавца: это будет использоваться как «От кого» и «ответить» " "адрес в электронной почте" -#: gourl.php:4085 +#: gourl.php:4162 msgid "Sale Notification - Subject" msgstr "Sale Notification - тема" -#: gourl.php:4087 +#: gourl.php:4164 #, php-format msgid "" "Email to Seller: Enter the subject line for the sale notification " @@ -2744,11 +2771,11 @@ msgstr "" "Email для продавца: введите тему для email с уведомлением о " "продажи
Доступные теги: %s" -#: gourl.php:4090 +#: gourl.php:4167 msgid "Sale Notification - Body" msgstr "Sale Notification - текст" -#: gourl.php:4091 +#: gourl.php:4168 #, php-format msgid "" "Email to Seller: Enter the sale notification email that is sent to seller/" @@ -2758,11 +2785,11 @@ msgstr "" "Email для продавца: введите текст письма, кот. получит продавец/админ после " "того, как пользователь оплатил продукт.
Доступные теги: %s" -#: gourl.php:4094 +#: gourl.php:4171 msgid "Sale Notification - To" msgstr "Sale Notification - кому" -#: gourl.php:4095 +#: gourl.php:4172 msgid "" "Email to Seller: Enter the email address(es) that should receive a " "notification anytime a sale is made, one per line" @@ -2770,11 +2797,11 @@ msgstr "" "Email для продавца: введите адрес/а электронной почты (по одному в строке), " "на которые будут отправляться уведомления о продаже" -#: gourl.php:4192 gourl.php:5105 gourl.php:5106 +#: gourl.php:4269 gourl.php:5182 gourl.php:5183 msgid "Add New Product" msgstr "Добавить продукт" -#: gourl.php:4199 +#: gourl.php:4276 msgid "" "Use 'Pay-Per-product' - sell any of your products online to registered " "users. Email notifications to Buyer/Seller." @@ -2783,7 +2810,7 @@ msgstr "" "продуктов онлайн зарегистрированным пользователям. Уведомления по email для " "покупателей и продавцов." -#: gourl.php:4200 +#: gourl.php:4277 #, php-format msgid "" "You will need to create a new product record of what you " @@ -2795,7 +2822,7 @@ msgstr "" "получите wordpress шорткод, поместите его на любую страницу " "вашего сайта и пользователь увидит окно оплаты продукта." -#: gourl.php:4201 +#: gourl.php:4278 #, php-format msgid "" "Please activate website registration (General Settings » Membership - " @@ -2808,12 +2835,12 @@ msgstr "" "посетителей - можно выбрать login изображение или " "показывать Форму входа на сайт напрямую" -#: gourl.php:4202 +#: gourl.php:4279 #, php-format msgid "See also - Installation Instruction" msgstr "Смотрите также - инструкция по настройке" -#: gourl.php:4203 +#: gourl.php:4280 #, php-format msgid "" "Alternatively, you can use free WooCommerce plugin " @@ -2825,20 +2852,20 @@ msgstr "" "оплата') с нашим дополнением - Woocommerce Биткоин/Альткоин " "шлюз" -#: gourl.php:4215 +#: gourl.php:4292 msgid "Total products" msgstr "Всего продуктов" -#: gourl.php:4215 gourl.php:4216 gourl.php:4217 gourl.php:4218 +#: gourl.php:4292 gourl.php:4293 gourl.php:4294 gourl.php:4295 msgid "products" msgstr "продукты" -#: gourl.php:4263 +#: gourl.php:4340 #, php-format msgid "Invalid product id '%s' -" msgstr "Недопустимый id продукта «%s» -" -#: gourl.php:4308 gourl.php:5391 +#: gourl.php:4385 gourl.php:5468 msgid "" "You need first to login or register on the website to make Bitcoin/Altcoin " "Payments" @@ -2846,23 +2873,23 @@ msgstr "" "Вам нужно сначала войти или зарегистрироваться на сайте чтобы сделать платеж " "а биткоинах/альткоинах" -#: gourl.php:4400 +#: gourl.php:4477 msgid "Cryptcoin Payment Box Disabled" msgstr "Платежи в криптовалюте отключены" -#: gourl.php:4405 +#: gourl.php:4482 msgid "Cryptcoin Payment Box Preview" msgstr "Payment Box предпросмотр" -#: gourl.php:4554 gourl.php:6095 gourl.php:6115 +#: gourl.php:4631 gourl.php:6173 gourl.php:6193 msgid "GMT" msgstr "GMT" -#: gourl.php:4565 +#: gourl.php:4642 msgid "All Received Payments" msgstr "Все полученные платежи" -#: gourl.php:4570 +#: gourl.php:4647 #, php-format msgid "" "Notes: Please wait bitcoin/altcoin transaction confirmations (column " @@ -2877,14 +2904,14 @@ msgstr "" "необходим для предотвращения двойной траты тех " "же денег , потому что кто-то может время от времени пытаться сделать это." -#: gourl.php:4580 +#: gourl.php:4657 #, php-format msgid "" "GoUrl.io Live Status : Payment id %s transaction - CONFIRMED" msgstr "" "GoUrl.io Live Статус: ID платежа %s транзакция - ПОДТВЕРЖДЕНА" -#: gourl.php:4581 +#: gourl.php:4658 #, php-format msgid "" "GoUrl.io Live Status : Payment id %s transaction - NOT confirmed " @@ -2893,43 +2920,43 @@ msgstr "" "GoUrl.io Live Статус: ID платежа %s транзакция - не подтверждена " "еще" -#: gourl.php:4597 +#: gourl.php:4674 msgid "Recognised" msgstr "Распознанные" -#: gourl.php:4598 gourl.php:7437 +#: gourl.php:4675 gourl.php:7515 msgid "Unrecognised" msgstr "Нераспознанные" -#: gourl.php:4599 +#: gourl.php:4676 msgid "Total Sum" msgstr "Общая сумма" -#: gourl.php:4783 +#: gourl.php:4860 msgid "Login" msgstr "Вход на сайт" -#: gourl.php:4787 +#: gourl.php:4864 msgid "username" msgstr "логин" -#: gourl.php:4791 +#: gourl.php:4868 msgid "password" msgstr "пароль" -#: gourl.php:4794 +#: gourl.php:4871 msgid "Log in" msgstr "Войти" -#: gourl.php:4795 +#: gourl.php:4872 msgid "Lost your password?" msgstr "Забыли пароль?" -#: gourl.php:4796 +#: gourl.php:4873 msgid "Free" msgstr "Бесплатно" -#: gourl.php:5027 +#: gourl.php:5104 #, php-format msgid "" "If you like GoUrl Bitcoin/Altcoins Gateway please leave us " @@ -2938,7 +2965,7 @@ msgstr "" "Если вам нравится GoUrl Биткоин/Альткоин шлюз, пожалуйста " "поставьте нам рейтинг %s на %s. Огромное спасибо вам от GoUrl заранее!" -#: gourl.php:5038 +#: gourl.php:5115 #, php-format msgid "" "%s Plugin is almost ready to use! All you need to do is to " @@ -2949,11 +2976,11 @@ msgstr "" "сделать это обновить " "настройки плагина" -#: gourl.php:5038 gourl.php:5050 gourl.php:5220 +#: gourl.php:5115 gourl.php:5127 gourl.php:5297 msgid "Official GoUrl Bitcoin Payment Gateway for Wordpress" msgstr "Официальный GoUrl Биткоин платёжный шлюз для Wordpress" -#: gourl.php:5050 +#: gourl.php:5127 #, php-format msgid "" "Please deactivate %s Plugin,
manually set folder %s permission to " @@ -2966,71 +2993,71 @@ msgstr "" "strong>

Если вы уже сделали этого раньше, вручную создайте три папки " "ниже и задайте им разрешения 0777:
-%s
-%s
-%s" -#: gourl.php:5066 gourl.php:5067 +#: gourl.php:5143 gourl.php:5144 msgid "GoUrl Bitcoin" msgstr "GoUrl Биткоин" -#: gourl.php:5077 gourl.php:5078 +#: gourl.php:5154 gourl.php:5155 msgid "• Summary" msgstr "• Краткий обзор" -#: gourl.php:5086 gourl.php:5087 +#: gourl.php:5163 gourl.php:5164 msgid "• All Payments" msgstr "• Все платежи" -#: gourl.php:5095 gourl.php:5096 +#: gourl.php:5172 gourl.php:5173 msgid "• Pay-Per-Product" msgstr "• Pay-Per-Product" -#: gourl.php:5115 gourl.php:5116 +#: gourl.php:5192 gourl.php:5193 msgid "• Pay-Per-Download" msgstr "• Pay-Per-Download" -#: gourl.php:5134 gourl.php:5135 +#: gourl.php:5211 gourl.php:5212 msgid "• Pay-Per-View" msgstr "• Pay-Per-View" -#: gourl.php:5144 gourl.php:5145 +#: gourl.php:5221 gourl.php:5222 msgid "• Pay-Per-Membership" msgstr "• Pay-Per-Membership" -#: gourl.php:5154 gourl.php:5155 +#: gourl.php:5231 gourl.php:5232 msgid "Premium Users" msgstr "Премиум польз-ли" -#: gourl.php:5163 gourl.php:5164 +#: gourl.php:5240 gourl.php:5241 msgid "________________" msgstr "________________" -#: gourl.php:5181 gourl.php:5182 +#: gourl.php:5258 gourl.php:5259 msgid "Add-ons" msgstr "Дополнения" -#: gourl.php:5190 gourl.php:5191 +#: gourl.php:5267 gourl.php:5268 msgid "Contacts" msgstr "Контакты" -#: gourl.php:5216 +#: gourl.php:5293 msgid "GoUrl Pay-Per-Download (Paid File Downloads)" msgstr "GoUrl Pay-Per-Download (платные скачивания файлов)" -#: gourl.php:5217 +#: gourl.php:5294 msgid "GoUrl Pay-Per-View (Anonymous Access to Premium Pages/Video)" msgstr "GoUrl Pay-Per-View (Анонимный доступ к премиум страницам/видео)" -#: gourl.php:5218 +#: gourl.php:5295 msgid "GoUrl Premium Pay-Per-Membership" msgstr "GoUrl премиум Pay-Per-Membership" -#: gourl.php:5219 +#: gourl.php:5296 msgid "GoUrl Pay-Per-Product (selling online)" msgstr "GoUrl Pay-Per-Product (продажи онлайн)" -#: gourl.php:5222 +#: gourl.php:5299 msgid "CRYPTO-CURRENCY PAYMENT GATEWAY" msgstr "КРИПТО-ВАЛЮТЫ ПЛАТЕЖНЫЙ ШЛЮЗ" -#: gourl.php:5242 +#: gourl.php:5319 #, php-format msgid "" "Cannot upload file '%s' on server. Alternatively, you can upload your file " @@ -3039,13 +3066,13 @@ msgstr "" "Невозможно загрузить файл «%s» на сервер. Альтернативно, вы можете загрузить " "свой файл «%s» с помощью FTP File Manager" -#: gourl.php:5243 +#: gourl.php:5320 #, php-format msgid "Invalid image file '%s', supported *.gif, *.jpg, *.png files only" msgstr "" "Недопустимое изображение «%s», поддерживаемые форматы *.gif, *.jpg, *.png" -#: gourl.php:5260 +#: gourl.php:5337 #, php-format msgid "" "Cannot move file '%s' to directory '%s' on server. Please check directory " @@ -3054,28 +3081,28 @@ msgstr "" "Не удается переместить файл «%s» в каталог «%s» на сервере. Пожалуйста, " "проверьте права доступа к директориям" -#: gourl.php:5263 +#: gourl.php:5340 #, php-format msgid "Your Featured Image %s has been uploaded successfully" msgstr "Ваше изображение %s было загружено успешно" -#: gourl.php:5270 +#: gourl.php:5347 #, php-format msgid "Your File %s has been uploaded successfully" msgstr "Ваше файл %s был загружен успешно" -#: gourl.php:5270 +#: gourl.php:5347 #, php-format msgid "New File Name is %s" msgstr "Новое имя файла %s" -#: gourl.php:5358 +#: gourl.php:5435 msgid "Error. Please place in variable $YourPluginName - your plugin name" msgstr "" "Ошибка. Пожалуйста, поместите в переменную $YourPluginName - имя вашего " "плагина" -#: gourl.php:5359 +#: gourl.php:5436 #, php-format msgid "" "Error. Invalid plugin name - %s. Size: 5-17 symbols. Allowed symbols: a.." @@ -3084,7 +3111,7 @@ msgstr "" "Ошибка. Неверное имя плагина - %s. Размер: 5-17 символов. Допускается " "символы:... Z0... 9_-" -#: gourl.php:5360 +#: gourl.php:5437 msgid "" "Error. Please change plugin name. Plugin name can not begin with: 'file..', " "'product..', 'pay..', 'membership..', 'user..'" @@ -3092,29 +3119,29 @@ msgstr "" "Ошибка. Пожалуйста, измените название плагина. Имя плагина не может " "начинаться с: 'file..', 'product..', 'pay..', 'membership..', 'user..'" -#: gourl.php:5361 +#: gourl.php:5438 msgid "" "Error. Please change plugin name. Plugin name can not use in name '..gourl..'" msgstr "" "Ошибка. Пожалуйста, измените название плагина. Название плагина можно не " "использовать '...gourl..'" -#: gourl.php:5365 +#: gourl.php:5442 #, php-format msgid "Error. Invalid amount value - %s. Min value for USD: 0.01" msgstr "Ошибка. Недопустимое значение - %s. Мин значение для USD: 0.01" -#: gourl.php:5366 +#: gourl.php:5443 #, php-format msgid "Error. Invalid amount value - %s. Min value: 0.0001" msgstr "Ошибка. Недопустимое значение - %s. Мин значение: 0.0001" -#: gourl.php:5367 +#: gourl.php:5444 #, php-format msgid "Error. Invalid amountCurrency - %s. Allowed: USD, %s" msgstr "Ошибка. Недопустимое amountCurrency - %s. Допускаются: USD, %s" -#: gourl.php:5372 +#: gourl.php:5449 #, php-format msgid "" "Error. Invalid Order ID - %s. Max size: 32 symbols. Allowed symbols: a.." @@ -3123,7 +3150,7 @@ msgstr "" "Ошибка. Недопустимое Order ID - %s. Макс размер: 32 символа. Допускаются " "символы: a..Z0..9_-" -#: gourl.php:5377 +#: gourl.php:5454 #, php-format msgid "" "Error. Invalid period value - %s. Allowed: NOEXPIRY, 1..90 HOUR, 1..90 DAY, " @@ -3132,32 +3159,32 @@ msgstr "" "Ошибка. Недопустимый период - %s. Допускается: NOEXPIRY, 1..90 HOUR, 1..90 " "DAY, 1..90 WEEK, 1..90 MONTH; Пример: 2 DAYS" -#: gourl.php:5381 +#: gourl.php:5458 #, php-format msgid "Error. Invalid language - %s. Allowed: %s" msgstr "Ошибка. Недопустимый язык - %s. Допускаются: %s" -#: gourl.php:5384 +#: gourl.php:5461 #, php-format msgid "Error. Invalid Coin - %s. Allowed: %s" msgstr "Ошибка. Недопустимая монета - %s. Допускаются: %s" -#: gourl.php:5387 +#: gourl.php:5464 msgid "Error. Invalid affiliate_key, you can leave it empty" msgstr "Ошибка. Недопустимый affiliate_key, вы можете оставить его пустым" -#: gourl.php:5390 +#: gourl.php:5467 #, php-format msgid "Error. Invalid User ID - %s. Allowed numeric values or 'guest' value" msgstr "" "Ошибка. Недопустимый User ID - %s. Допускаются числовые значения или 'guest' " "значение" -#: gourl.php:5391 +#: gourl.php:5468 msgid "Error." msgstr "Ошибка." -#: gourl.php:5393 +#: gourl.php:5470 msgid "" "Error. Please try a different payment method. GoUrl Bitcoin Plugin not " "configured - need setup payment box keys on GoUrl Bitcoin Gateway Options " @@ -3167,17 +3194,17 @@ msgstr "" "настроен - нужно ввести ключи для payment box на странице настроек GoUrl " "шлюза" -#: gourl.php:5423 +#: gourl.php:5500 #, php-format msgid "Invalid %s Public Key - %s" msgstr "Неверный %s Public Key - %s" -#: gourl.php:5424 +#: gourl.php:5501 #, php-format msgid "Invalid %s Private Key" msgstr "Неверный %s Private Key" -#: gourl.php:5436 +#: gourl.php:5513 #, php-format msgid "" "Error. Please enter Payment Private/Public Keys on GoUrl Options page for %s." @@ -3185,7 +3212,7 @@ msgstr "" "Ошибка. Пожалуйста, введите Private/Public ключи на GoUrl странице " "параметров для %s." -#: gourl.php:5567 +#: gourl.php:5644 #, php-format msgid "" "Error! Cannot get exchange rates for %s. Please try a different " @@ -3194,7 +3221,7 @@ msgstr "" "Ошибка! Невозможно получить обменный курс для %s. Попробуйте использовать " "другую криптовалюту." -#: gourl.php:5930 +#: gourl.php:6008 #, php-format msgid "" "Error. Please enable MBSTRING extension in " @@ -3203,59 +3230,59 @@ msgstr "" "Ошибка. Пожалуйста, включите MBSTRING " "дополнение в PHP. Читайте здесь »" -#: gourl.php:5998 +#: gourl.php:6076 msgid "TB" msgstr "Tб" -#: gourl.php:6003 +#: gourl.php:6081 msgid "GB" msgstr "Гб" -#: gourl.php:6008 +#: gourl.php:6086 msgid "MB" msgstr "Мб" -#: gourl.php:6013 +#: gourl.php:6091 msgid "kb" msgstr "кб" -#: gourl.php:6017 +#: gourl.php:6095 msgid "Bytes" msgstr "байтов" -#: gourl.php:6094 +#: gourl.php:6172 msgid "Bitcoin/altcoin Payments?" msgstr "Биткоин/альткоин платежи?" -#: gourl.php:6095 gourl.php:6115 gourl.php:6153 +#: gourl.php:6173 gourl.php:6193 gourl.php:6231 msgid "YES" msgstr "ДА" -#: gourl.php:6095 +#: gourl.php:6173 msgid "Latest payment" msgstr "Последний платеж" -#: gourl.php:6096 gourl.php:6116 gourl.php:6154 +#: gourl.php:6174 gourl.php:6194 gourl.php:6232 msgid "NO" msgstr "НЕТ" -#: gourl.php:6114 gourl.php:6152 +#: gourl.php:6192 gourl.php:6230 msgid "Premium Membership" msgstr "Премиум членство" -#: gourl.php:6115 gourl.php:6153 +#: gourl.php:6193 gourl.php:6231 msgid "Period" msgstr "Период" -#: gourl.php:6116 +#: gourl.php:6194 msgid "Manually Add Premium Membership" msgstr "Вручную создать Премиум членство" -#: gourl.php:6359 +#: gourl.php:6437 msgid "Please Login" msgstr "Пожалуйста, войдите" -#: gourl.php:6380 +#: gourl.php:6458 #, php-format msgid "" "

Feed not available, please visit our Home Page!

" @@ -3263,283 +3290,292 @@ msgstr "" "

Feed не доступен, пожалуйста, посетите нашу домашнюю " "страницу!

" -#: gourl.php:6574 gourl.php:6817 gourl.php:7083 +#: gourl.php:6652 gourl.php:6895 gourl.php:7161 msgid "Show this coin transactions only" msgstr "Показать транзакции для этой монеты только" -#: gourl.php:6583 gourl.php:6826 +#: gourl.php:6661 gourl.php:6904 msgid "unlimited" msgstr "неограниченно" -#: gourl.php:6591 +#: gourl.php:6669 msgid "Registered Users" msgstr "Зарегистрированные пользователи" -#: gourl.php:6614 gourl.php:6849 gourl.php:7328 +#: gourl.php:6692 gourl.php:6927 gourl.php:7406 msgid "ID" msgstr "ID" -#: gourl.php:6615 gourl.php:6850 +#: gourl.php:6693 gourl.php:6928 msgid "Acti-ve?" msgstr "Активно?" -#: gourl.php:6616 +#: gourl.php:6694 msgid "File Name" msgstr "Имя файла" -#: gourl.php:6618 +#: gourl.php:6696 msgid "File Size" msgstr "Размер файла" -#: gourl.php:6619 +#: gourl.php:6697 msgid "Price USD" msgstr "Цена USD" -#: gourl.php:6620 gourl.php:6853 +#: gourl.php:6698 gourl.php:6931 msgid "Price in Coins" msgstr "Цена в монетах" -#: gourl.php:6621 +#: gourl.php:6699 msgid "Show FileName/Price?" msgstr "Показ. имя файла/цену?" -#: gourl.php:6623 gourl.php:6855 +#: gourl.php:6701 gourl.php:6933 msgid "Latest Received Payment, GMT" msgstr "Последний полученный платеж, GMT" -#: gourl.php:6624 gourl.php:6856 +#: gourl.php:6702 gourl.php:6934 msgid "Record Updated, GMT" msgstr "Запись обновлена, GMT" -#: gourl.php:6625 gourl.php:6857 gourl.php:7334 +#: gourl.php:6703 gourl.php:6935 gourl.php:7412 msgid "Record Created, GMT" msgstr "Запись создана, GMT" -#: gourl.php:6628 gourl.php:6858 +#: gourl.php:6706 gourl.php:6936 msgid "Payment Expiry Period" msgstr "Срок действия" -#: gourl.php:6629 gourl.php:6859 +#: gourl.php:6707 gourl.php:6937 msgid "Default Payment Box Coin" msgstr "Монета по умолчанию в Payment Box" -#: gourl.php:6630 gourl.php:6860 +#: gourl.php:6708 gourl.php:6938 msgid "Default Coin only?" msgstr "По умолч. монета только?" -#: gourl.php:6631 gourl.php:6861 +#: gourl.php:6709 gourl.php:6939 msgid "Default Box Language" msgstr "Язык по умолчанию" -#: gourl.php:6682 gourl.php:6899 +#: gourl.php:6760 gourl.php:6977 msgid "Edit" msgstr "Редактировать" -#: gourl.php:6683 gourl.php:6900 +#: gourl.php:6761 gourl.php:6978 msgid "Preview" msgstr "Предпросмотр" -#: gourl.php:6852 +#: gourl.php:6930 msgid "Price in USD" msgstr "Цена в USD" -#: gourl.php:6863 +#: gourl.php:6941 msgid "Email to Buyer?" msgstr "Email покупателю?" -#: gourl.php:6864 +#: gourl.php:6942 msgid "Email to Seller?" msgstr "Email продавцу?" -#: gourl.php:7017 +#: gourl.php:7095 msgid "User already downloaded this file from your website" msgstr "Пользователь уже скачал этот файл с вашего сайта" -#: gourl.php:7017 +#: gourl.php:7095 msgid "User not downloaded this file yet" msgstr "Пользователь не скачал этот файл еще" -#: gourl.php:7025 +#: gourl.php:7103 msgid "View Statistics" msgstr "Просмотр статистики" -#: gourl.php:7038 +#: gourl.php:7116 msgid "woocommerce" msgstr "woocommerce" -#: gourl.php:7038 gourl.php:7039 gourl.php:7040 gourl.php:7044 gourl.php:7046 -#: gourl.php:7047 gourl.php:7049 +#: gourl.php:7116 gourl.php:7117 gourl.php:7118 gourl.php:7122 gourl.php:7124 +#: gourl.php:7125 gourl.php:7127 msgid "order" msgstr "заказ" -#: gourl.php:7039 +#: gourl.php:7117 msgid "wp ecommerce" msgstr "wp ecommerce" -#: gourl.php:7040 +#: gourl.php:7118 msgid "jigoshop" msgstr "jigoshop" -#: gourl.php:7044 +#: gourl.php:7122 msgid "appthemes" msgstr "appthemes" -#: gourl.php:7044 +#: gourl.php:7122 msgid "escrow" msgstr "escrow" -#: gourl.php:7046 +#: gourl.php:7124 msgid "marketpress" msgstr "marketpress" -#: gourl.php:7047 +#: gourl.php:7125 msgid "pmpro" msgstr "pmpro" -#: gourl.php:7048 +#: gourl.php:7126 msgid "give" msgstr "give" -#: gourl.php:7048 +#: gourl.php:7126 msgid "donation" msgstr "пожертвование" -#: gourl.php:7049 +#: gourl.php:7127 msgid "edd" msgstr "edd" -#: gourl.php:7060 gourl.php:7295 +#: gourl.php:7138 gourl.php:7373 msgid "Guest" msgstr "Гость" -#: gourl.php:7062 gourl.php:7297 +#: gourl.php:7140 gourl.php:7375 msgid "wrong paid amount" msgstr "неправильно уплаченная сумма" -#: gourl.php:7091 +#: gourl.php:7169 msgid "Show Only Visitors from this Country" msgstr "Показать посетителей из этой страны только" -#: gourl.php:7097 +#: gourl.php:7175 msgid "Transaction Details" msgstr "Детали платежа" -#: gourl.php:7102 +#: gourl.php:7180 msgid "Wallet Details" msgstr "Бумажник детали" -#: gourl.php:7130 gourl.php:7330 +#: gourl.php:7208 gourl.php:7408 msgid "Payment ID" msgstr "Оплата ID" -#: gourl.php:7131 +#: gourl.php:7209 msgid "Payment Box ID" msgstr "Payment Box ID" -#: gourl.php:7132 +#: gourl.php:7210 msgid "Coin" msgstr "Монета" -#: gourl.php:7133 +#: gourl.php:7211 msgid "Order ID" msgstr "Заказ ID" -#: gourl.php:7134 +#: gourl.php:7212 msgid "Paid Amount" msgstr "Оплаченная сумма" -#: gourl.php:7135 +#: gourl.php:7213 msgid "Approximate in USD" msgstr "Приблизительно в USD" -#: gourl.php:7136 +#: gourl.php:7214 msgid "Unrecogn. Payment?" msgstr "Нераспозн. платёж?" -#: gourl.php:7137 +#: gourl.php:7215 msgid "User ID" msgstr "Пользователя ID" -#: gourl.php:7138 +#: gourl.php:7216 msgid "Transaction Time, GMT" msgstr "Время транзакции, GMT" -#: gourl.php:7139 +#: gourl.php:7217 msgid "User Location" msgstr "Местоположение пользователя" -#: gourl.php:7140 +#: gourl.php:7218 msgid "Confirmed Payment?" msgstr "Подтвержд. платёж?" -#: gourl.php:7141 +#: gourl.php:7219 msgid "User Downl. File?" msgstr "Польз. загрузил файл?" -#: gourl.php:7142 +#: gourl.php:7220 msgid "File Downloaded Time, GMT" msgstr "Время загрузки файла, GMT" -#: gourl.php:7143 +#: gourl.php:7221 msgid "Transaction ID" msgstr "Транзакции ID" -#: gourl.php:7144 +#: gourl.php:7222 msgid "Your GoUrl Wallet Address" msgstr "Ваш адрес GoUrl бумажника" -#: gourl.php:7193 +#: gourl.php:7271 msgid "Re-check Payment Status" msgstr "Повторно проверить статус платежа" -#: gourl.php:7193 +#: gourl.php:7271 msgid "Check" msgstr "Проверить" -#: gourl.php:7306 +#: gourl.php:7384 msgid "manually" msgstr "вручную" -#: gourl.php:7331 +#: gourl.php:7409 msgid "Premium Membership Start, GMT" msgstr "Дата начала премиум членства, GMT" -#: gourl.php:7332 +#: gourl.php:7410 msgid "Premium Membership End, GMT" msgstr "Дата окончания премиум членства, GMT" -#: gourl.php:7333 +#: gourl.php:7411 msgid "Premium Memb. Disabled?" msgstr "Премиум членство заблокировано?" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Are you sure you want to DISABLE Premium Membership?" msgstr "Вы уверены, что вы хотите ЗАБЛОКИРОВАТЬ премиум членство?" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Are you sure you want to ENABLE Premium Membership?" msgstr "Вы уверены, что вы хотите РАЗБЛОКИРОВАТЬ премиум членство?" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Disable" msgstr "Отключить" -#: gourl.php:7364 +#: gourl.php:7442 msgid "Enable" msgstr "Включить" -#: gourl.php:7365 +#: gourl.php:7443 msgid "Are you sure you want to DELETE this record?" msgstr "Вы уверены, что хотите УДАЛИТЬ эту запись?" -#: gourl.php:7365 +#: gourl.php:7443 msgid "Delete" msgstr "Удалить" -#: gourl.php:7366 +#: gourl.php:7444 msgid "Profile" msgstr "Профиль" -#: gourl.php:7436 +#: gourl.php:7514 msgid "All Payments" msgstr "Все платежи" + +#~ msgid "" +#~ "Testing environment: You can use 110 " +#~ "free Speedcoins or Dogecoins for " +#~ "testing" +#~ msgstr "" +#~ "Отладка: Вы можете использовать 110 " +#~ "бесплатных Speedcoins или Dogecoins " +#~ "для тестирования" diff --git a/readme.md b/readme.md index e9aa52c..7b88495 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ GoUrl Bitcoin Payment Gateway & Paid Downloads & Membership ----------------------------------------------------------- -Version 1.4.0 +Version 1.4.1 **GoUrl Official Bitcoin/Altcoin Payment Gateway for Wordpress 3.5 or higher version** @@ -16,7 +16,7 @@ Accept Bitcoin, BitcoinCash, Litecoin, Dash, Dogecoin, Speedcoin, Reddcoin, Potc * Screenshots - [https://gourl.io/bitcoin-wordpress-plugin.html#screenshot](https://gourl.io/bitcoin-wordpress-plugin.html#screenshot) * Requires at least: 3.5 * Tested up to: 4.8 -* Stable Tag: 1.4.0 +* Stable Tag: 1.4.1 * License: GNU Version 2 or Any Later Version diff --git a/readme.txt b/readme.txt index 02d2395..afeb916 100644 --- a/readme.txt +++ b/readme.txt @@ -4,10 +4,9 @@ Plugin Name: GoUrl Bitcoin Payment Gateway & Paid Downloads & Membership Plugin URI: https://gourl.io/bitcoin-wordpress-plugin.html Author URI: https://gourl.io Tags: bitcoin, bitcoincash, bitcoin cash, bitcoin payments, bitcoins, affiliate program, cryptocurrency, affiliates, altcoins, bitpay, paid memberships pro, pmpro, paid membership, btc, marketpress, coinbase, e-commerce, content protection, access-control, credit cards, currency, payment, dash, digital downloads, dogecoin, donation, downloads, e-downloads, e-store, easy digital downloads, ecommerce, feathercoin, file download, gateway, gourl, litecoin, membership, paid content, payment gateway, paypal, potcoin, protection, reddcoin, registration, restrict access, restrict content, speedcoin, subscription, usd, vertcoin, virtual currency, jigoshop, woocommerce, authorize, shop, wp e-commerce, appthemes, classipress, vantage, jobroller, clipper, taskerr, hirebee, ideas, quality control, akismet, bbpress, buddypress, discussion, forums, forum, bitcoin donations, bitcoin donation, charity, churches, crowdfunding, donate, donation, donations, fundraiser, fundraising, gifts, giving, non-profit, nonprofit, paypal, stripe, give, wordpress donations, bitcoin, payments, payment gateway, digital downloads, download, downloads, e-commerce, e-downloads, e-store, ecommerce, eshop, selling, wp ecommerce, edd, easy digital downloads, litecoin, dogecoin, dash, speedcoin, vertcoin, reddcoin, feathercoin, potcoin, monetaryunit, peercoin - Requires at least: 3.5 Tested up to: 4.9 -Stable Tag: 1.4.0 +Stable Tag: 1.4.1 License: GNU Version 2 or Any Later Version License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -180,7 +179,7 @@ Yes, we offer [Free Technical Support](https://gourl.io/view/contact/Contact_Us. == Changelog == -= 1.4.0 = += 1.4.1 = Several new enhancements = 1.3.18 = @@ -276,3 +275,4 @@ Add Pay-Per-Product, Pay-Per-Membership = 1.0.0 = This is the first version of GoUrl Bitcoin Payment Gateway & Paid Downloads & Membership Plugin + \ No newline at end of file